code
stringlengths
2k
1.04M
repo_path
stringlengths
5
517
parsed_code
stringlengths
0
1.04M
quality_prob
float64
0.02
0.95
learning_prob
float64
0.02
0.93
* { transition: all 0s ease-out; } body { background: #F8F8F8; transition: background .5s ease-out; transition-delay: 1s; } body.summer { background: #e2dda2; } body.autumn { background: #d1a990; } body.winter { background: #a3b3cc; } body.spring { background: #add2b0; } * { box-sizing: border-box; font-family: 'Open Sans', sans-serif; line-height: 1.5; } h1, h3, h4, h5, h6 { color: #1f1f1f; } h1 { margin-bottom: 45px; } h2 { color: #c9a83a; text-align: center; margin-bottom: 30px; } h3 { margin-bottom: 15px; } h4 { margin-bottom: 10px; } h5 { margin-bottom: 8px; } h6 { margin-bottom: 5px; } .hivemind-wrapper { max-width: 1200px; margin: 0 auto; } h1 { text-align: center; } .button { background: white; font-weight: bold; border: 2px solid black; padding: 8px 12px; text-align: center; display: inline-block; margin-bottom: 10px; cursor: pointer; transition: all .08s ease-out; } .button .bee-cost { opacity: 0.7; font-size: 14px; padding-left: 3px; } .button:hover { background: black; color: white; } .button.disabled { opacity: 0.5; pointer-events: none; } #helpMe { cursor: help; display: block; position: absolute; top: 15px; right: 15px; } #pauseMe { display: block; position: absolute; top: 15px; left: 15px; } .help-wrapper { background: black; color: white; display: block; position: fixed; overflow-y: scroll; left: 30px; right: 30px; max-width: 1200px; margin: 0 auto; padding: 30px; top: -300%; transition: top .5s ease-out, opacity 0.8s ease-out; opacity: 0; } .help-wrapper.active { opacity: 1; top: 7%; max-height: 80%; } .actions-wrapper, .message-wrapper { float: left; padding: 0 15px; } .actions-wrapper { width: 66.66666%; } .message-wrapper { width: 33.33333%; } .statistics, .actions, .message { background: white; border: 1px solid #ccc; padding: 10px 25px 20px 25px; height: 850px; max-height: 850px; overflow-x: hidden; border-radius: 4px; box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1); } .message { padding-top: 20px; } .message span { display: inline-block; width: 100%; margin-bottom: 2px; font-family: monospace; font-size: 12px; } .message span .repeated { display: inline; padding-left: 3px; } .loading-wrapper { position: fixed; top: 0; bottom: 0; left: 0; right: 0; display: flex; justify-content: center; align-items: center; z-index: 1000; background: black; color: white; font-size: 60px; } /* paused overrides */ body.paused { background: #fff; transition: all 0s; } body.paused * { pointer-events: none !important; } body.paused .statistics, body.paused .actions, body.paused .message { opacity: 0.5; } body.paused h1:after { content: ' - paused'; } body.paused #pauseMe { opacity: 1; pointer-events: auto !important; } .progress-bar { background: #1f1f1f; overflow: hidden; position: relative; color: $white; border-radius: 2px; } #experienceCount.progress-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; height: 50px; } .progress-bar-inner { background: #c9a83a; position: absolute; top: 0; bottom: 0; left: 0; right: 0; max-width: 0; transition: max-width 0.5s ease-out; } #healthCount.progress-bar .progress-bar-inner { background: #5cc958; } #levelCount, #healthCount .name, #populationCount .name { color: white; font-size: 16px; font-weight: bold; text-transform: uppercase; position: relative; z-index: 9999; padding-left: 5px; } #levelCount { position: fixed; bottom: 0; left: 0; font-size: 16px; } #levelCount .count { font-size: 36px; padding-left: 5px; } .button, .progress-bar { -webkit-touch-callout: none; /* iOS Safari */ -webkit-user-select: none; /* Safari */ -khtml-user-select: none; /* Konqueror HTML */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* Internet Explorer/Edge */ user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */ } .candy { border-radius: 3px; color: white; } .good { background: #5cc958; } .warning { background: orange; } .bad { background: red; } #particles-js { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; } .hivemind-wrapper { z-index: 2; position: relative; }
css/hivemind.css
* { transition: all 0s ease-out; } body { background: #F8F8F8; transition: background .5s ease-out; transition-delay: 1s; } body.summer { background: #e2dda2; } body.autumn { background: #d1a990; } body.winter { background: #a3b3cc; } body.spring { background: #add2b0; } * { box-sizing: border-box; font-family: 'Open Sans', sans-serif; line-height: 1.5; } h1, h3, h4, h5, h6 { color: #1f1f1f; } h1 { margin-bottom: 45px; } h2 { color: #c9a83a; text-align: center; margin-bottom: 30px; } h3 { margin-bottom: 15px; } h4 { margin-bottom: 10px; } h5 { margin-bottom: 8px; } h6 { margin-bottom: 5px; } .hivemind-wrapper { max-width: 1200px; margin: 0 auto; } h1 { text-align: center; } .button { background: white; font-weight: bold; border: 2px solid black; padding: 8px 12px; text-align: center; display: inline-block; margin-bottom: 10px; cursor: pointer; transition: all .08s ease-out; } .button .bee-cost { opacity: 0.7; font-size: 14px; padding-left: 3px; } .button:hover { background: black; color: white; } .button.disabled { opacity: 0.5; pointer-events: none; } #helpMe { cursor: help; display: block; position: absolute; top: 15px; right: 15px; } #pauseMe { display: block; position: absolute; top: 15px; left: 15px; } .help-wrapper { background: black; color: white; display: block; position: fixed; overflow-y: scroll; left: 30px; right: 30px; max-width: 1200px; margin: 0 auto; padding: 30px; top: -300%; transition: top .5s ease-out, opacity 0.8s ease-out; opacity: 0; } .help-wrapper.active { opacity: 1; top: 7%; max-height: 80%; } .actions-wrapper, .message-wrapper { float: left; padding: 0 15px; } .actions-wrapper { width: 66.66666%; } .message-wrapper { width: 33.33333%; } .statistics, .actions, .message { background: white; border: 1px solid #ccc; padding: 10px 25px 20px 25px; height: 850px; max-height: 850px; overflow-x: hidden; border-radius: 4px; box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1); } .message { padding-top: 20px; } .message span { display: inline-block; width: 100%; margin-bottom: 2px; font-family: monospace; font-size: 12px; } .message span .repeated { display: inline; padding-left: 3px; } .loading-wrapper { position: fixed; top: 0; bottom: 0; left: 0; right: 0; display: flex; justify-content: center; align-items: center; z-index: 1000; background: black; color: white; font-size: 60px; } /* paused overrides */ body.paused { background: #fff; transition: all 0s; } body.paused * { pointer-events: none !important; } body.paused .statistics, body.paused .actions, body.paused .message { opacity: 0.5; } body.paused h1:after { content: ' - paused'; } body.paused #pauseMe { opacity: 1; pointer-events: auto !important; } .progress-bar { background: #1f1f1f; overflow: hidden; position: relative; color: $white; border-radius: 2px; } #experienceCount.progress-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; height: 50px; } .progress-bar-inner { background: #c9a83a; position: absolute; top: 0; bottom: 0; left: 0; right: 0; max-width: 0; transition: max-width 0.5s ease-out; } #healthCount.progress-bar .progress-bar-inner { background: #5cc958; } #levelCount, #healthCount .name, #populationCount .name { color: white; font-size: 16px; font-weight: bold; text-transform: uppercase; position: relative; z-index: 9999; padding-left: 5px; } #levelCount { position: fixed; bottom: 0; left: 0; font-size: 16px; } #levelCount .count { font-size: 36px; padding-left: 5px; } .button, .progress-bar { -webkit-touch-callout: none; /* iOS Safari */ -webkit-user-select: none; /* Safari */ -khtml-user-select: none; /* Konqueror HTML */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* Internet Explorer/Edge */ user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */ } .candy { border-radius: 3px; color: white; } .good { background: #5cc958; } .warning { background: orange; } .bad { background: red; } #particles-js { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; } .hivemind-wrapper { z-index: 2; position: relative; }
0.47317
0.08163
/* Start Main Content Font Color */ .cmsms_products .product .product_outer .product_inner .cmsms_product_cat, .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a, .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price del, .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a, .cmsms_single_product .cmsms_product_right_column .price del, #order_review .shop_table td.product-name, #order_review .shop_table td.product-name *, .shop_table.order_details td.product-name, .shop_table.order_details td.product-name *, .cmsms_dynamic_cart .cmsms_dynamic_cart_button, .widget_shopping_cart_content .cart_list li .quantity, .product_list_widget li del .amount, .quantity .text { color:#979ca4; color:rgba(151, 156, 164, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a:hover, .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price, .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover:before, .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading, .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading:before, .cmsms_single_product .cmsms_product_right_column .price, .required, .shop_table .product-name a:hover, .shop_table td.product-subtotal, .cart_totals table tr.cart-subtotal td, .cart_totals table tr.order-total td, #order_review .shop_table tr.order-total th, #order_review .shop_table tr.order-total td, .shop_table.order_details td.product-name a:hover, .shop_table.order_details tfoot tr:last-child th, .shop_table.order_details tfoot tr:last-child td, .cmsms_dynamic_cart .cmsms_dynamic_cart_button:hover, .cmsms_dynamic_cart:hover .cmsms_dynamic_cart_button, .widget_shopping_cart_content .cart_list li a:hover, .widget_shopping_cart_content .cart_list li .quantity .amount, .widget_shopping_cart_content .total .amount, .product_list_widget li > a:hover, .product_list_widget li .amount { color:#58cf90; color:rgba(88, 207, 144, 1); } .onsale { background-color:#58cf90; background-color:rgba(88, 207, 144, 1); } /* Finish Primary Color */ /* Start Highlight Color */ .input-checkbox + label:after, .input-radio + label:after, .shipping_method + label:after { background-color:#c8ccce; background-color:rgba(200, 204, 206, 1); } /* Finish Highlight Color */ /* Start Headings Color */ .cmsms_single_product .cmsms_product_right_column .product_meta strong, .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, .shop_table thead th, .shop_table td.product-remove .remove, .shop_table td.product-name, .shop_table td.product-name a, .cart_totals table tr.cart-subtotal th, .cart_totals table tr.order-total th, #order_review .shop_table tr.cart-subtotal th, #order_review .shop_table tr.cart-subtotal td, ul.order_details li > span, .shop_table.order_details tfoot tr:first-child th, .shop_table.order_details tfoot tr:first-child td, .widget_shopping_cart_content .cart_list li a, .widget_shopping_cart_content .total strong, .cmsms_added_product_info .cmsms_added_product_info_text, .product_list_widget li > a { color:#4c5562; color:rgba(76, 85, 98, 1); } .out-of-stock { background-color:#4c5562; background-color:rgba(76, 85, 98, 1); } .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb:hover { border-color:#4c5562; border-color:rgba(76, 85, 98, 1); } /* Finish Headings Color */ /* Start Main Background Color */ .onsale, .out-of-stock { color:#ffffff; color:rgba(255, 255, 255, 1); } .quantity .text, .woocommerce-message, .woocommerce-info, #order_review #payment, .cmsms_dynamic_cart .widget_shopping_cart_content, .cmsms_added_product_info, .widget_price_filter .price_slider_wrapper .price_slider { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } .cmsms_dynamic_cart .widget_shopping_cart_content:after, .cmsms_added_product_info:after { border-left-color:#ffffff; border-left-color:rgba(255, 255, 255, 1); } /* Finish Main Background Color */ /* Start Alternate Background Color */ .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, .shop_table thead th, .shop_table td.product-remove .remove, .shop_table td.actions, .cart_totals table tr.cart-subtotal th, .cart_totals table tr.cart-subtotal td, .cart_totals table tr.order-total th, .cart_totals table tr.order-total td, .input-checkbox + label:before, .input-radio + label:before, .shipping_method + label:before, #order_review .shop_table tr.cart-subtotal th, #order_review .shop_table tr.cart-subtotal td, #order_review .shop_table tr.order-total th, #order_review .shop_table tr.order-total td, #order_review #payment .payment_methods .payment_box, ul.order_details li > span, .shop_table.order_details tfoot tr:first-child th, .shop_table.order_details tfoot tr:last-child th, .shop_table.order_details tfoot tr:first-child td, .shop_table.order_details tfoot tr:last-child td, .cmsms_dynamic_cart .cmsms_dynamic_cart_button, .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-range { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } #order_review #payment .payment_methods .payment_box:after { border-bottom-color:#ffffff; border-bottom-color:rgba(255, 255, 255, 1); } /* Finish Alternate Background Color */ /* Start Borders Color */ .cmsms_star_rating .cmsms_star, .comment-form-rating .stars > span, .comment-form-rating .stars > span a:hover, .comment-form-rating .stars > span a.active, .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:before { color:#e5e8ec; color:rgba(229, 232, 236, 1); } .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle { background-color:#e5e8ec; background-color:rgba(229, 232, 236, 1); } .cmsms_products .product .product_outer .product_inner, .cmsms_products .product .product_outer .product_inner .cmsms_product_footer, .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button + .cmsms_details_button, .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.added_to_cart + .cmsms_details_button, .cmsms_single_product .cmsms_product_images .cmsms_product_image, .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb, .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, .cmsms_single_product .cmsms_woo_tabs .shop_attributes td, .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist, .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist .comment .comment_container .comment-text, .woocommerce-message, .woocommerce-info, .shop_table, .shop_table th, .shop_table td, .shop_table td.product-remove .remove, .shop_table td.product-thumbnail img, .cart_totals table, .cart_totals table tr th, .cart_totals table tr td, .input-checkbox + label:before, .input-radio + label:before, .shipping_method + label:before, #order_review #payment, #order_review #payment .payment_methods .payment_box, ul.order_details, ul.order_details li, ul.order_details li > span, .cmsms_dynamic_cart .cmsms_dynamic_cart_button, .cmsms_dynamic_cart .widget_shopping_cart_content, .cmsms_added_product_info, .widget_shopping_cart_content .cart_list li, .cmsms_added_product_info .cmsms_added_product_info_img, .widget_price_filter .price_slider_wrapper .price_slider, .product_list_widget li, .product_list_widget li img, .quantity .text { border-color:#e5e8ec; border-color:rgba(229, 232, 236, 1); } #order_review #payment .payment_methods .payment_box:before { border-bottom-color:#e5e8ec; border-bottom-color:rgba(229, 232, 236, 1); } .cmsms_dynamic_cart .widget_shopping_cart_content:before, .cmsms_added_product_info:before { border-left-color:#e5e8ec; border-left-color:rgba(229, 232, 236, 1); } /* Finish Borders Color */ /***************** Finish Default WooCommerce Color Scheme Rules ******************/ /***************** Start Default Events Color Scheme Rules ******************/ /* Start Main Content Font Color */ #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6.tribe-events-cost, .recurringinfo, .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number .tribe-countdown-under, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events * { color:#979ca4; color:rgba(151, 156, 164, 1); } #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow { background-color:#979ca4; background-color:rgba(151, 156, 164, 1); } #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:before, #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:after { border-color:#979ca4; border-color:rgba(151, 156, 164, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6, #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a:hover, #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a:hover, .tribe-events-tooltip .entry-title, #tribe-events-footer > a:hover, #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .cmsms_events_list_event_header .tribe-events-event-cost, #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .time-details, .recurringinfo a:hover, #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a:hover, ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder:hover, .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a:hover, .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a:hover, #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap .tribe-events-event-details .tribe-events-event-meta .time-details, #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile .tribe-events-event-body .time-details, .tribe-events-countdown-widget .tribe-countdown-text a:hover, .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a:hover, .widget .vevent .entry-title a:hover, .widget.tribe-events-list-widget .tribe-event-title a:hover, .widget .vevent .cmsms_widget_event_info, .widget.tribe-this-week-events-widget .duration, .widget .tribe-events-widget-link a:hover, .widget.tribe-events-list-widget .tribe-event-duration, .widget.tribe-this-week-events-widget .tribe-events-viewmore a:hover, .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a:hover, .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events:hover *, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a:hover { color:#58cf90; color:rgba(88, 207, 144, 1); } #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button { border-color:#58cf90; border-color:rgba(88, 207, 144, 1); } .tribe-bar-views-open label.button, #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a:hover, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div .tribe-mini-calendar-day-link:before, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present, .widget .list-date span.list-daynumber, .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:hover { background-color:#58cf90; background-color:rgba(88, 207, 144, 1); } @media only screen and (max-width: 767px) { #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth:hover * { color:#58cf90; color:rgba(88, 207, 144, 1); } #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present { background-color:#58cf90; background-color:rgba(88, 207, 144, 1); } } /* Finish Primary Color */ /* Start Highlight Color */ @media only screen and (max-width: 767px) { #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events:before { background-color:#c8ccce; background-color:rgba(200, 204, 206, 1); } } /* Finish Highlight Color */ /* Start Headings Color */ #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a, #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item .cmsms_event_meta_info_item_title, #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item dt, #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-date-filter .label-tribe-bar-date, #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-search-filter label, #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-geoloc-filter label, #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-submit label, #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a, .tribe-events-tooltip .tribe-events-event-body .tribe-event-duration, #tribe-events-footer > a, #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, .recurringinfo a, #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details .author, #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a, #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, .tribe-events-notices, ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a, .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title a, .tribe-events-countdown-widget .tribe-countdown-text a, .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number, .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-colon, .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name, .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a, .widget.tribe-events-list-widget .tribe-event-title, .widget.tribe-events-list-widget .tribe-event-title a, .widget .vevent .entry-title, .widget .vevent .entry-title a, .widget .tribe-events-widget-link a, .widget.tribe-this-week-events-widget .tribe-events-viewmore a, .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a, .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a:hover, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a { color:#4c5562; color:rgba(76, 85, 98, 1); } .tribe-events-sub-nav li a span, #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today, .widget .list-date span.list-dayname { background-color:#4c5562; background-color:rgba(76, 85, 98, 1); } .tribe-events-sub-nav li a span:before, .tribe-events-sub-nav li a span:after { border-color:#4c5562; border-color:rgba(76, 85, 98, 1); } @media only screen and (max-width: 767px) { #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth * { color:#4c5562; color:rgba(76, 85, 98, 1); } #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active { background-color:#4c5562; background-color:rgba(76, 85, 98, 1); } } /* Finish Headings Color */ /* Start Main Background Color */ #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button, #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a, #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a:hover, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child a, .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present *, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present:hover *, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today *, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today:hover *, .widget .list-date span.list-dayname, .widget .list-date span.list-daynumber { color:#ffffff; color:rgba(255, 255, 255, 1); } #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow, #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow, #tribe-events-content.tribe-events-month table.tribe-events-calendar, .tribe-events-tooltip, #tribe-events-content.tribe-events-week-grid .tribe-events-grid, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present div .tribe-mini-calendar-day-link:before, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today div .tribe-mini-calendar-day-link:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:before, #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:before, #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:after, #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:after, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:before, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:before, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:after { border-color:#ffffff; border-color:rgba(255, 255, 255, 1); } .tribe-events-tooltip:after { border-top-color:#ffffff; border-top-color:rgba(255, 255, 255, 1); } .recurringinfo .recurring-info-tooltip:after { border-bottom-color:#ffffff; border-bottom-color:rgba(255, 255, 255, 1); } #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:after { border-right-color:#ffffff; border-right-color:rgba(255, 255, 255, 1); } #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:after { border-left-color:#ffffff; border-left-color:rgba(255, 255, 255, 1); } @media only screen and (max-width: 767px) { #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active *, #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present * { color:#ffffff; color:rgba(255, 255, 255, 1); } #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events.mobile-active:before, #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } /* Finish Main Background Color */ /* Start Alternate Background Color */ #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-event-"]:hover, #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, .tribe-events-notices, ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-today, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-othermonth { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } @media only screen and (max-width: 767px) { #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } /* Finish Alternate Background Color */ /* Start Borders Color */ .bd_font_color { color:#e5e8ec; color:rgba(229, 232, 236, 1); } #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, .widget.tribe-this-week-events-widget .tribe-this-week-widget-day, #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, #tribe-events-content.tribe-events-single .cmsms_single_event_header, #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item, .tribe-bar-filters, .tribe-events-sub-nav li a, #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td, #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], .tribe-events-tooltip, #tribe-events-content.tribe-events-list .vevent, .tribe-events-notices, #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td .tribe-events-viewmore, .tribe-events-venue .cmsms_events_venue_header, .tribe-events-organizer .cmsms_events_organizer_header, .tribe-events-photo #tribe-events-header, #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, #tribe-events-content.tribe-events-week-grid .tribe-events-grid, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .slimScrollDiv, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-content-wrap .column, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-grid-outer-wrap .tribe-week-grid-inner-wrap .tribe-week-grid-block div, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile, .widget .vevent, .tribe-events-list-widget ol li, .tribe-events-adv-list-widget ol li, .tribe-events-sub-nav li a:hover span:before, .tribe-events-sub-nav li a:hover span:after, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar td { border-color:#e5e8ec; border-color:rgba(229, 232, 236, 1); } .tribe-events-sub-nav li a:hover span { background-color:#e5e8ec; background-color:rgba(229, 232, 236, 1); } .tribe-events-tooltip:before { border-top-color:#e5e8ec; border-top-color:rgba(229, 232, 236, 1); } .recurringinfo .recurring-info-tooltip:before { border-bottom-color:#e5e8ec; border-bottom-color:rgba(229, 232, 236, 1); } #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:before { border-right-color:#e5e8ec; border-right-color:rgba(229, 232, 236, 1); } #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:before { border-left-color:#e5e8ec; border-left-color:rgba(229, 232, 236, 1); } /* Finish Borders Color */ /***************** Finish Default Events Color Scheme Rules ******************/ /***************** Start Footer WooCommerce Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_cat, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price del, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a, html .cmsms_color_scheme_footer .cmsms_single_product .cmsms_product_right_column .price del, html .cmsms_color_scheme_footer #order_review .shop_table td.product-name, html .cmsms_color_scheme_footer #order_review .shop_table td.product-name *, html .cmsms_color_scheme_footer .shop_table.order_details td.product-name, html .cmsms_color_scheme_footer .shop_table.order_details td.product-name *, html .cmsms_color_scheme_footer .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_footer .widget_shopping_cart_content .cart_list li .quantity, html .cmsms_color_scheme_footer .product_list_widget li del .amount, html .cmsms_color_scheme_footer .quantity .text { color:#979ca4; color:rgba(151, 156, 164, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a:hover, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover:before, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading:before, html .cmsms_color_scheme_footer .cmsms_single_product .cmsms_product_right_column .price, html .cmsms_color_scheme_footer .required, html .cmsms_color_scheme_footer .shop_table .product-name a:hover, html .cmsms_color_scheme_footer .shop_table td.product-subtotal, html .cmsms_color_scheme_footer .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_footer .cart_totals table tr.order-total td, html .cmsms_color_scheme_footer #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_footer #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_footer .shop_table.order_details td.product-name a:hover, html .cmsms_color_scheme_footer .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_footer .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_footer .cmsms_dynamic_cart .cmsms_dynamic_cart_button:hover, html .cmsms_color_scheme_footer .cmsms_dynamic_cart:hover .cmsms_dynamic_cart_button, html .cmsms_color_scheme_footer .widget_shopping_cart_content .cart_list li a:hover, html .cmsms_color_scheme_footer .widget_shopping_cart_content .cart_list li .quantity .amount, html .cmsms_color_scheme_footer .widget_shopping_cart_content .total .amount, html .cmsms_color_scheme_footer .product_list_widget li > a:hover, html .cmsms_color_scheme_footer .product_list_widget li .amount { color:#c8ccce; color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_footer .onsale { background-color:#c8ccce; background-color:rgba(200, 204, 206, 1); } /* Finish Primary Color */ /* Start Highlight Color */ html .cmsms_color_scheme_footer .input-checkbox + label:after, html .cmsms_color_scheme_footer .input-radio + label:after, html .cmsms_color_scheme_footer .shipping_method + label:after { background-color:#58cf90; background-color:rgba(88, 207, 144, 1); } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_footer .cmsms_single_product .cmsms_product_right_column .product_meta strong, html .cmsms_color_scheme_footer .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_footer .shop_table thead th, html .cmsms_color_scheme_footer .shop_table td.product-remove .remove, html .cmsms_color_scheme_footer .shop_table td.product-name, html .cmsms_color_scheme_footer .shop_table td.product-name a, html .cmsms_color_scheme_footer .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_footer .cart_totals table tr.order-total th, html .cmsms_color_scheme_footer #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_footer #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_footer ul.order_details li > span, html .cmsms_color_scheme_footer .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_footer .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_footer .widget_shopping_cart_content .cart_list li a, html .cmsms_color_scheme_footer .widget_shopping_cart_content .total strong, html .cmsms_color_scheme_footer .cmsms_added_product_info .cmsms_added_product_info_text, html .cmsms_color_scheme_footer .product_list_widget li > a { color:#4c5562; color:rgba(76, 85, 98, 1); } html .cmsms_color_scheme_footer .out-of-stock { background-color:#4c5562; background-color:rgba(76, 85, 98, 1); } html .cmsms_color_scheme_footer .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb:hover { border-color:#4c5562; border-color:rgba(76, 85, 98, 1); } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_footer .onsale, html .cmsms_color_scheme_footer .out-of-stock { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_footer .quantity .text, html .cmsms_color_scheme_footer .woocommerce-message, html .cmsms_color_scheme_footer .woocommerce-info, html .cmsms_color_scheme_footer #order_review #payment, html .cmsms_color_scheme_footer .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_footer .cmsms_added_product_info, html .cmsms_color_scheme_footer .widget_price_filter .price_slider_wrapper .price_slider { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_footer .cmsms_dynamic_cart .widget_shopping_cart_content:after, html .cmsms_color_scheme_footer .cmsms_added_product_info:after { border-left-color:#ffffff; border-left-color:rgba(255, 255, 255, 1); } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_footer .shop_table thead th, html .cmsms_color_scheme_footer .shop_table td.product-remove .remove, html .cmsms_color_scheme_footer .shop_table td.actions, html .cmsms_color_scheme_footer .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_footer .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_footer .cart_totals table tr.order-total th, html .cmsms_color_scheme_footer .cart_totals table tr.order-total td, html .cmsms_color_scheme_footer .input-checkbox + label:before, html .cmsms_color_scheme_footer .input-radio + label:before, html .cmsms_color_scheme_footer .shipping_method + label:before, html .cmsms_color_scheme_footer #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_footer #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_footer #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_footer #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_footer #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_footer ul.order_details li > span, html .cmsms_color_scheme_footer .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_footer .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_footer .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_footer .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_footer .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_footer .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-range { background-color:#f2f2f2; background-color:rgba(242, 242, 242, 1); } html .cmsms_color_scheme_footer #order_review #payment .payment_methods .payment_box:after { border-bottom-color:#f2f2f2; border-bottom-color:rgba(242, 242, 242, 1); } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_footer .cmsms_star_rating .cmsms_star, html .cmsms_color_scheme_footer .comment-form-rating .stars > span, html .cmsms_color_scheme_footer .comment-form-rating .stars > span a:hover, html .cmsms_color_scheme_footer .comment-form-rating .stars > span a.active, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:before { color:#e5e8ec; color:rgba(229, 232, 236, 1); } html .cmsms_color_scheme_footer .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle { background-color:#e5e8ec; background-color:rgba(229, 232, 236, 1); } html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_footer, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button + .cmsms_details_button, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.added_to_cart + .cmsms_details_button, html .cmsms_color_scheme_footer .cmsms_single_product .cmsms_product_images .cmsms_product_image, html .cmsms_color_scheme_footer .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb, html .cmsms_color_scheme_footer .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_footer .cmsms_single_product .cmsms_woo_tabs .shop_attributes td, html .cmsms_color_scheme_footer .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist, html .cmsms_color_scheme_footer .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist .comment .comment_container .comment-text, html .cmsms_color_scheme_footer .woocommerce-message, html .cmsms_color_scheme_footer .woocommerce-info, html .cmsms_color_scheme_footer .shop_table, html .cmsms_color_scheme_footer .shop_table th, html .cmsms_color_scheme_footer .shop_table td, html .cmsms_color_scheme_footer .shop_table td.product-remove .remove, html .cmsms_color_scheme_footer .shop_table td.product-thumbnail img, html .cmsms_color_scheme_footer .cart_totals table, html .cmsms_color_scheme_footer .cart_totals table tr th, html .cmsms_color_scheme_footer .cart_totals table tr td, html .cmsms_color_scheme_footer .input-checkbox + label:before, html .cmsms_color_scheme_footer .input-radio + label:before, html .cmsms_color_scheme_footer .shipping_method + label:before, html .cmsms_color_scheme_footer #order_review #payment, html .cmsms_color_scheme_footer #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_footer ul.order_details, html .cmsms_color_scheme_footer ul.order_details li, html .cmsms_color_scheme_footer ul.order_details li > span, html .cmsms_color_scheme_footer .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_footer .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_footer .cmsms_added_product_info, html .cmsms_color_scheme_footer .widget_shopping_cart_content .cart_list li, html .cmsms_color_scheme_footer .cmsms_added_product_info .cmsms_added_product_info_img, html .cmsms_color_scheme_footer .widget_price_filter .price_slider_wrapper .price_slider, html .cmsms_color_scheme_footer .product_list_widget li, html .cmsms_color_scheme_footer .product_list_widget li img, html .cmsms_color_scheme_footer .quantity .text { border-color:#e5e8ec; border-color:rgba(229, 232, 236, 1); } html .cmsms_color_scheme_footer #order_review #payment .payment_methods .payment_box:before { border-bottom-color:#e5e8ec; border-bottom-color:rgba(229, 232, 236, 1); } html .cmsms_color_scheme_footer .cmsms_dynamic_cart .widget_shopping_cart_content:before, html .cmsms_color_scheme_footer .cmsms_added_product_info:before { border-left-color:#e5e8ec; border-left-color:rgba(229, 232, 236, 1); } /* Finish Borders Color */ /***************** Finish Footer WooCommerce Color Scheme Rules ******************/ /***************** Start Footer Events Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6.tribe-events-cost, html .cmsms_color_scheme_footer .recurringinfo, html .cmsms_color_scheme_footer .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number .tribe-countdown-under, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events * { color:#979ca4; color:rgba(151, 156, 164, 1); } html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow { background-color:#979ca4; background-color:rgba(151, 156, 164, 1); } html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:after { border-color:#979ca4; border-color:rgba(151, 156, 164, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a:hover, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_footer .tribe-events-tooltip .entry-title, html .cmsms_color_scheme_footer #tribe-events-footer > a:hover, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .cmsms_events_list_event_header .tribe-events-event-cost, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .time-details, html .cmsms_color_scheme_footer .recurringinfo a:hover, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a:hover, html .cmsms_color_scheme_footer ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder:hover, html .cmsms_color_scheme_footer .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a:hover, html .cmsms_color_scheme_footer .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a:hover, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap .tribe-events-event-details .tribe-events-event-meta .time-details, html .cmsms_color_scheme_footer #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile .tribe-events-event-body .time-details, html .cmsms_color_scheme_footer .tribe-events-countdown-widget .tribe-countdown-text a:hover, html .cmsms_color_scheme_footer .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a:hover, html .cmsms_color_scheme_footer .widget .vevent .entry-title a:hover, html .cmsms_color_scheme_footer .widget.tribe-events-list-widget .tribe-event-title a:hover, html .cmsms_color_scheme_footer .widget .vevent .cmsms_widget_event_info, html .cmsms_color_scheme_footer .widget.tribe-this-week-events-widget .duration, html .cmsms_color_scheme_footer .widget .tribe-events-widget-link a:hover, html .cmsms_color_scheme_footer .widget.tribe-events-list-widget .tribe-event-duration, html .cmsms_color_scheme_footer .widget.tribe-this-week-events-widget .tribe-events-viewmore a:hover, html .cmsms_color_scheme_footer .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a:hover, html .cmsms_color_scheme_footer .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events:hover *, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a:hover { color:#c8ccce; color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button { border-color:#c8ccce; border-color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_footer .tribe-bar-views-open label.button, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a:hover, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present, html .cmsms_color_scheme_footer .widget .list-date span.list-daynumber, html .cmsms_color_scheme_footer .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:hover { background-color:#c8ccce; background-color:rgba(200, 204, 206, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_footer #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth:hover * { color:#c8ccce; color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_footer #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present { background-color:#c8ccce; background-color:rgba(200, 204, 206, 1); } } /* Finish Primary Color */ /* Start Highlight Color */ @media only screen and (max-width: 767px) { html .cmsms_color_scheme_footer #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events:before { background-color:#58cf90; background-color:rgba(88, 207, 144, 1); } } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item .cmsms_event_meta_info_item_title, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item dt, html .cmsms_color_scheme_footer #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-date-filter .label-tribe-bar-date, html .cmsms_color_scheme_footer #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-search-filter label, html .cmsms_color_scheme_footer #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-geoloc-filter label, html .cmsms_color_scheme_footer #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-submit label, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_footer .tribe-events-tooltip .tribe-events-event-body .tribe-event-duration, html .cmsms_color_scheme_footer #tribe-events-footer > a, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_footer #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_footer #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_footer .recurringinfo a, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details .author, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_footer .tribe-events-notices, html .cmsms_color_scheme_footer ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_footer .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a, html .cmsms_color_scheme_footer .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title a, html .cmsms_color_scheme_footer .tribe-events-countdown-widget .tribe-countdown-text a, html .cmsms_color_scheme_footer .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number, html .cmsms_color_scheme_footer .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-colon, html .cmsms_color_scheme_footer .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name, html .cmsms_color_scheme_footer .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a, html .cmsms_color_scheme_footer .widget.tribe-events-list-widget .tribe-event-title, html .cmsms_color_scheme_footer .widget.tribe-events-list-widget .tribe-event-title a, html .cmsms_color_scheme_footer .widget .vevent .entry-title, html .cmsms_color_scheme_footer .widget .vevent .entry-title a, html .cmsms_color_scheme_footer .widget .tribe-events-widget-link a, html .cmsms_color_scheme_footer .widget.tribe-this-week-events-widget .tribe-events-viewmore a, html .cmsms_color_scheme_footer .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a, html .cmsms_color_scheme_footer .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a:hover, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a { color:#4c5562; color:rgba(76, 85, 98, 1); } html .cmsms_color_scheme_footer .tribe-events-sub-nav li a span, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today, html .cmsms_color_scheme_footer .widget .list-date span.list-dayname { background-color:#4c5562; background-color:rgba(76, 85, 98, 1); } html .cmsms_color_scheme_footer .tribe-events-sub-nav li a span:before, html .cmsms_color_scheme_footer .tribe-events-sub-nav li a span:after { border-color:#4c5562; border-color:rgba(76, 85, 98, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_footer #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth * { color:#4c5562; color:rgba(76, 85, 98, 1); } html .cmsms_color_scheme_footer #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active { background-color:#4c5562; background-color:rgba(76, 85, 98, 1); } } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child a, html .cmsms_color_scheme_footer .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present *, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present:hover *, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today *, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today:hover *, html .cmsms_color_scheme_footer .widget .list-date span.list-dayname, html .cmsms_color_scheme_footer .widget .list-date span.list-daynumber { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar, html .cmsms_color_scheme_footer .tribe-events-tooltip, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today div .tribe-mini-calendar-day-link:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:before, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:after, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:after, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:before, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:before, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:after { border-color:#ffffff; border-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_footer .tribe-events-tooltip:after { border-top-color:#ffffff; border-top-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_footer .recurringinfo .recurring-info-tooltip:after { border-bottom-color:#ffffff; border-bottom-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:after { border-right-color:#ffffff; border-right-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:after { border-left-color:#ffffff; border-left-color:rgba(255, 255, 255, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_footer #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active *, html .cmsms_color_scheme_footer #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present * { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_footer #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events.mobile-active:before, html .cmsms_color_scheme_footer #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-event-"]:hover, html .cmsms_color_scheme_footer #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_footer #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_footer .tribe-events-notices, html .cmsms_color_scheme_footer ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-today, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-othermonth { background-color:#f2f2f2; background-color:rgba(242, 242, 242, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_footer #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth { background-color:#f2f2f2; background-color:rgba(242, 242, 242, 1); } } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_footer .bd_font_color { color:#e5e8ec; color:rgba(229, 232, 236, 1); } html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_footer .widget.tribe-this-week-events-widget .tribe-this-week-widget-day, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-single .cmsms_single_event_header, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item, html .cmsms_color_scheme_footer .tribe-bar-filters, html .cmsms_color_scheme_footer .tribe-events-sub-nav li a, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_footer .tribe-events-tooltip, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-list .vevent, html .cmsms_color_scheme_footer .tribe-events-notices, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td .tribe-events-viewmore, html .cmsms_color_scheme_footer .tribe-events-venue .cmsms_events_venue_header, html .cmsms_color_scheme_footer .tribe-events-organizer .cmsms_events_organizer_header, html .cmsms_color_scheme_footer .tribe-events-photo #tribe-events-header, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .slimScrollDiv, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-content-wrap .column, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-grid-outer-wrap .tribe-week-grid-inner-wrap .tribe-week-grid-block div, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_footer #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile, html .cmsms_color_scheme_footer .widget .vevent, html .cmsms_color_scheme_footer .tribe-events-list-widget ol li, html .cmsms_color_scheme_footer .tribe-events-adv-list-widget ol li, html .cmsms_color_scheme_footer .tribe-events-sub-nav li a:hover span:before, html .cmsms_color_scheme_footer .tribe-events-sub-nav li a:hover span:after, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar td { border-color:#e5e8ec; border-color:rgba(229, 232, 236, 1); } html .cmsms_color_scheme_footer .tribe-events-sub-nav li a:hover span { background-color:#e5e8ec; background-color:rgba(229, 232, 236, 1); } html .cmsms_color_scheme_footer .tribe-events-tooltip:before { border-top-color:#e5e8ec; border-top-color:rgba(229, 232, 236, 1); } html .cmsms_color_scheme_footer .recurringinfo .recurring-info-tooltip:before { border-bottom-color:#e5e8ec; border-bottom-color:rgba(229, 232, 236, 1); } html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:before { border-right-color:#e5e8ec; border-right-color:rgba(229, 232, 236, 1); } html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:before { border-left-color:#e5e8ec; border-left-color:rgba(229, 232, 236, 1); } /* Finish Borders Color */ /***************** Finish Footer Events Color Scheme Rules ******************/ /***************** Start Custom 1 WooCommerce Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_cat, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price del, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a, html .cmsms_color_scheme_first .cmsms_single_product .cmsms_product_right_column .price del, html .cmsms_color_scheme_first #order_review .shop_table td.product-name, html .cmsms_color_scheme_first #order_review .shop_table td.product-name *, html .cmsms_color_scheme_first .shop_table.order_details td.product-name, html .cmsms_color_scheme_first .shop_table.order_details td.product-name *, html .cmsms_color_scheme_first .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_first .widget_shopping_cart_content .cart_list li .quantity, html .cmsms_color_scheme_first .product_list_widget li del .amount, html .cmsms_color_scheme_first .quantity .text { color:#ffffff; color:rgba(255, 255, 255, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a:hover, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover:before, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading:before, html .cmsms_color_scheme_first .cmsms_single_product .cmsms_product_right_column .price, html .cmsms_color_scheme_first .required, html .cmsms_color_scheme_first .shop_table .product-name a:hover, html .cmsms_color_scheme_first .shop_table td.product-subtotal, html .cmsms_color_scheme_first .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_first .cart_totals table tr.order-total td, html .cmsms_color_scheme_first #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_first #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_first .shop_table.order_details td.product-name a:hover, html .cmsms_color_scheme_first .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_first .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_first .cmsms_dynamic_cart .cmsms_dynamic_cart_button:hover, html .cmsms_color_scheme_first .cmsms_dynamic_cart:hover .cmsms_dynamic_cart_button, html .cmsms_color_scheme_first .widget_shopping_cart_content .cart_list li a:hover, html .cmsms_color_scheme_first .widget_shopping_cart_content .cart_list li .quantity .amount, html .cmsms_color_scheme_first .widget_shopping_cart_content .total .amount, html .cmsms_color_scheme_first .product_list_widget li > a:hover, html .cmsms_color_scheme_first .product_list_widget li .amount { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_first .onsale { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } /* Finish Primary Color */ /* Start Highlight Color */ html .cmsms_color_scheme_first .input-checkbox + label:after, html .cmsms_color_scheme_first .input-radio + label:after, html .cmsms_color_scheme_first .shipping_method + label:after { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_first .cmsms_single_product .cmsms_product_right_column .product_meta strong, html .cmsms_color_scheme_first .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_first .shop_table thead th, html .cmsms_color_scheme_first .shop_table td.product-remove .remove, html .cmsms_color_scheme_first .shop_table td.product-name, html .cmsms_color_scheme_first .shop_table td.product-name a, html .cmsms_color_scheme_first .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_first .cart_totals table tr.order-total th, html .cmsms_color_scheme_first #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_first #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_first ul.order_details li > span, html .cmsms_color_scheme_first .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_first .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_first .widget_shopping_cart_content .cart_list li a, html .cmsms_color_scheme_first .widget_shopping_cart_content .total strong, html .cmsms_color_scheme_first .cmsms_added_product_info .cmsms_added_product_info_text, html .cmsms_color_scheme_first .product_list_widget li > a { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_first .out-of-stock { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_first .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb:hover { border-color:#ffffff; border-color:rgba(255, 255, 255, 1); } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_first .onsale, html .cmsms_color_scheme_first .out-of-stock { color:#3d3d3d; color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_first .quantity .text, html .cmsms_color_scheme_first .woocommerce-message, html .cmsms_color_scheme_first .woocommerce-info, html .cmsms_color_scheme_first #order_review #payment, html .cmsms_color_scheme_first .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_first .cmsms_added_product_info, html .cmsms_color_scheme_first .widget_price_filter .price_slider_wrapper .price_slider { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_first .cmsms_dynamic_cart .widget_shopping_cart_content:after, html .cmsms_color_scheme_first .cmsms_added_product_info:after { border-left-color:#3d3d3d; border-left-color:rgba(61, 61, 61, 1); } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_first .shop_table thead th, html .cmsms_color_scheme_first .shop_table td.product-remove .remove, html .cmsms_color_scheme_first .shop_table td.actions, html .cmsms_color_scheme_first .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_first .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_first .cart_totals table tr.order-total th, html .cmsms_color_scheme_first .cart_totals table tr.order-total td, html .cmsms_color_scheme_first .input-checkbox + label:before, html .cmsms_color_scheme_first .input-radio + label:before, html .cmsms_color_scheme_first .shipping_method + label:before, html .cmsms_color_scheme_first #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_first #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_first #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_first #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_first #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_first ul.order_details li > span, html .cmsms_color_scheme_first .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_first .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_first .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_first .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_first .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_first .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-range { background-color:#414141; background-color:rgba(65, 65, 65, 1); } html .cmsms_color_scheme_first #order_review #payment .payment_methods .payment_box:after { border-bottom-color:#414141; border-bottom-color:rgba(65, 65, 65, 1); } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_first .cmsms_star_rating .cmsms_star, html .cmsms_color_scheme_first .comment-form-rating .stars > span, html .cmsms_color_scheme_first .comment-form-rating .stars > span a:hover, html .cmsms_color_scheme_first .comment-form-rating .stars > span a.active, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:before { color:#5a5a5a; color:rgba(90, 90, 90, 0); } html .cmsms_color_scheme_first .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle { background-color:#5a5a5a; background-color:rgba(90, 90, 90, 0); } html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_footer, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button + .cmsms_details_button, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.added_to_cart + .cmsms_details_button, html .cmsms_color_scheme_first .cmsms_single_product .cmsms_product_images .cmsms_product_image, html .cmsms_color_scheme_first .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb, html .cmsms_color_scheme_first .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_first .cmsms_single_product .cmsms_woo_tabs .shop_attributes td, html .cmsms_color_scheme_first .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist, html .cmsms_color_scheme_first .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist .comment .comment_container .comment-text, html .cmsms_color_scheme_first .woocommerce-message, html .cmsms_color_scheme_first .woocommerce-info, html .cmsms_color_scheme_first .shop_table, html .cmsms_color_scheme_first .shop_table th, html .cmsms_color_scheme_first .shop_table td, html .cmsms_color_scheme_first .shop_table td.product-remove .remove, html .cmsms_color_scheme_first .shop_table td.product-thumbnail img, html .cmsms_color_scheme_first .cart_totals table, html .cmsms_color_scheme_first .cart_totals table tr th, html .cmsms_color_scheme_first .cart_totals table tr td, html .cmsms_color_scheme_first .input-checkbox + label:before, html .cmsms_color_scheme_first .input-radio + label:before, html .cmsms_color_scheme_first .shipping_method + label:before, html .cmsms_color_scheme_first #order_review #payment, html .cmsms_color_scheme_first #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_first ul.order_details, html .cmsms_color_scheme_first ul.order_details li, html .cmsms_color_scheme_first ul.order_details li > span, html .cmsms_color_scheme_first .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_first .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_first .cmsms_added_product_info, html .cmsms_color_scheme_first .widget_shopping_cart_content .cart_list li, html .cmsms_color_scheme_first .cmsms_added_product_info .cmsms_added_product_info_img, html .cmsms_color_scheme_first .widget_price_filter .price_slider_wrapper .price_slider, html .cmsms_color_scheme_first .product_list_widget li, html .cmsms_color_scheme_first .product_list_widget li img, html .cmsms_color_scheme_first .quantity .text { border-color:#5a5a5a; border-color:rgba(90, 90, 90, 0); } html .cmsms_color_scheme_first #order_review #payment .payment_methods .payment_box:before { border-bottom-color:#5a5a5a; border-bottom-color:rgba(90, 90, 90, 0); } html .cmsms_color_scheme_first .cmsms_dynamic_cart .widget_shopping_cart_content:before, html .cmsms_color_scheme_first .cmsms_added_product_info:before { border-left-color:#5a5a5a; border-left-color:rgba(90, 90, 90, 0); } /* Finish Borders Color */ /***************** Finish Custom 1 WooCommerce Color Scheme Rules ******************/ /***************** Start Custom 1 Events Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6.tribe-events-cost, html .cmsms_color_scheme_first .recurringinfo, html .cmsms_color_scheme_first .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number .tribe-countdown-under, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events * { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:after { border-color:#ffffff; border-color:rgba(255, 255, 255, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_first #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a:hover, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_first .tribe-events-tooltip .entry-title, html .cmsms_color_scheme_first #tribe-events-footer > a:hover, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .cmsms_events_list_event_header .tribe-events-event-cost, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .time-details, html .cmsms_color_scheme_first .recurringinfo a:hover, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a:hover, html .cmsms_color_scheme_first ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder:hover, html .cmsms_color_scheme_first .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a:hover, html .cmsms_color_scheme_first .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a:hover, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap .tribe-events-event-details .tribe-events-event-meta .time-details, html .cmsms_color_scheme_first #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile .tribe-events-event-body .time-details, html .cmsms_color_scheme_first .tribe-events-countdown-widget .tribe-countdown-text a:hover, html .cmsms_color_scheme_first .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a:hover, html .cmsms_color_scheme_first .widget .vevent .entry-title a:hover, html .cmsms_color_scheme_first .widget.tribe-events-list-widget .tribe-event-title a:hover, html .cmsms_color_scheme_first .widget .vevent .cmsms_widget_event_info, html .cmsms_color_scheme_first .widget.tribe-this-week-events-widget .duration, html .cmsms_color_scheme_first .widget .tribe-events-widget-link a:hover, html .cmsms_color_scheme_first .widget.tribe-events-list-widget .tribe-event-duration, html .cmsms_color_scheme_first .widget.tribe-this-week-events-widget .tribe-events-viewmore a:hover, html .cmsms_color_scheme_first .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a:hover, html .cmsms_color_scheme_first .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events:hover *, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a:hover { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button { border-color:#ffffff; border-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_first .tribe-bar-views-open label.button, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a:hover, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present, html .cmsms_color_scheme_first .widget .list-date span.list-daynumber, html .cmsms_color_scheme_first .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:hover { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_first #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth:hover * { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_first #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } /* Finish Primary Color */ /* Start Highlight Color */ @media only screen and (max-width: 767px) { html .cmsms_color_scheme_first #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_first #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item .cmsms_event_meta_info_item_title, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item dt, html .cmsms_color_scheme_first #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-date-filter .label-tribe-bar-date, html .cmsms_color_scheme_first #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-search-filter label, html .cmsms_color_scheme_first #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-geoloc-filter label, html .cmsms_color_scheme_first #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-submit label, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_first .tribe-events-tooltip .tribe-events-event-body .tribe-event-duration, html .cmsms_color_scheme_first #tribe-events-footer > a, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_first #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_first #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_first .recurringinfo a, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details .author, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_first .tribe-events-notices, html .cmsms_color_scheme_first ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_first .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a, html .cmsms_color_scheme_first .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title a, html .cmsms_color_scheme_first .tribe-events-countdown-widget .tribe-countdown-text a, html .cmsms_color_scheme_first .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number, html .cmsms_color_scheme_first .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-colon, html .cmsms_color_scheme_first .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name, html .cmsms_color_scheme_first .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a, html .cmsms_color_scheme_first .widget.tribe-events-list-widget .tribe-event-title, html .cmsms_color_scheme_first .widget.tribe-events-list-widget .tribe-event-title a, html .cmsms_color_scheme_first .widget .vevent .entry-title, html .cmsms_color_scheme_first .widget .vevent .entry-title a, html .cmsms_color_scheme_first .widget .tribe-events-widget-link a, html .cmsms_color_scheme_first .widget.tribe-this-week-events-widget .tribe-events-viewmore a, html .cmsms_color_scheme_first .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a, html .cmsms_color_scheme_first .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a:hover, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_first .tribe-events-sub-nav li a span, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today, html .cmsms_color_scheme_first .widget .list-date span.list-dayname { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_first .tribe-events-sub-nav li a span:before, html .cmsms_color_scheme_first .tribe-events-sub-nav li a span:after { border-color:#ffffff; border-color:rgba(255, 255, 255, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_first #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth * { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_first #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child a, html .cmsms_color_scheme_first .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present *, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present:hover *, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today *, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today:hover *, html .cmsms_color_scheme_first .widget .list-date span.list-dayname, html .cmsms_color_scheme_first .widget .list-date span.list-daynumber { color:#3d3d3d; color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar, html .cmsms_color_scheme_first .tribe-events-tooltip, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today div .tribe-mini-calendar-day-link:before { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:before, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:after, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:after, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:before, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:before, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:after { border-color:#3d3d3d; border-color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_first .tribe-events-tooltip:after { border-top-color:#3d3d3d; border-top-color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_first .recurringinfo .recurring-info-tooltip:after { border-bottom-color:#3d3d3d; border-bottom-color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:after { border-right-color:#3d3d3d; border-right-color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:after { border-left-color:#3d3d3d; border-left-color:rgba(61, 61, 61, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_first #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active *, html .cmsms_color_scheme_first #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present * { color:#3d3d3d; color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_first #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events.mobile-active:before, html .cmsms_color_scheme_first #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present:before { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 1); } } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-event-"]:hover, html .cmsms_color_scheme_first #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_first #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_first .tribe-events-notices, html .cmsms_color_scheme_first ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-today, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-othermonth { background-color:#414141; background-color:rgba(65, 65, 65, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_first #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth { background-color:#414141; background-color:rgba(65, 65, 65, 1); } } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_first .bd_font_color { color:#5a5a5a; color:rgba(90, 90, 90, 0); } html .cmsms_color_scheme_first #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_first .widget.tribe-this-week-events-widget .tribe-this-week-widget-day, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-single .cmsms_single_event_header, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item, html .cmsms_color_scheme_first .tribe-bar-filters, html .cmsms_color_scheme_first .tribe-events-sub-nav li a, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_first .tribe-events-tooltip, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-list .vevent, html .cmsms_color_scheme_first .tribe-events-notices, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td .tribe-events-viewmore, html .cmsms_color_scheme_first .tribe-events-venue .cmsms_events_venue_header, html .cmsms_color_scheme_first .tribe-events-organizer .cmsms_events_organizer_header, html .cmsms_color_scheme_first .tribe-events-photo #tribe-events-header, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .slimScrollDiv, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-content-wrap .column, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-grid-outer-wrap .tribe-week-grid-inner-wrap .tribe-week-grid-block div, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_first #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile, html .cmsms_color_scheme_first .widget .vevent, html .cmsms_color_scheme_first .tribe-events-list-widget ol li, html .cmsms_color_scheme_first .tribe-events-adv-list-widget ol li, html .cmsms_color_scheme_first .tribe-events-sub-nav li a:hover span:before, html .cmsms_color_scheme_first .tribe-events-sub-nav li a:hover span:after, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar td { border-color:#5a5a5a; border-color:rgba(90, 90, 90, 0); } html .cmsms_color_scheme_first .tribe-events-sub-nav li a:hover span { background-color:#5a5a5a; background-color:rgba(90, 90, 90, 0); } html .cmsms_color_scheme_first .tribe-events-tooltip:before { border-top-color:#5a5a5a; border-top-color:rgba(90, 90, 90, 0); } html .cmsms_color_scheme_first .recurringinfo .recurring-info-tooltip:before { border-bottom-color:#5a5a5a; border-bottom-color:rgba(90, 90, 90, 0); } html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:before { border-right-color:#5a5a5a; border-right-color:rgba(90, 90, 90, 0); } html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:before { border-left-color:#5a5a5a; border-left-color:rgba(90, 90, 90, 0); } /* Finish Borders Color */ /***************** Finish Custom 1 Events Color Scheme Rules ******************/ /***************** Start Custom 2 WooCommerce Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_cat, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price del, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a, html .cmsms_color_scheme_second .cmsms_single_product .cmsms_product_right_column .price del, html .cmsms_color_scheme_second #order_review .shop_table td.product-name, html .cmsms_color_scheme_second #order_review .shop_table td.product-name *, html .cmsms_color_scheme_second .shop_table.order_details td.product-name, html .cmsms_color_scheme_second .shop_table.order_details td.product-name *, html .cmsms_color_scheme_second .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_second .widget_shopping_cart_content .cart_list li .quantity, html .cmsms_color_scheme_second .product_list_widget li del .amount, html .cmsms_color_scheme_second .quantity .text { color:#3d3d3d; color:rgba(61, 61, 61, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a:hover, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover:before, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading:before, html .cmsms_color_scheme_second .cmsms_single_product .cmsms_product_right_column .price, html .cmsms_color_scheme_second .required, html .cmsms_color_scheme_second .shop_table .product-name a:hover, html .cmsms_color_scheme_second .shop_table td.product-subtotal, html .cmsms_color_scheme_second .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_second .cart_totals table tr.order-total td, html .cmsms_color_scheme_second #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_second #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_second .shop_table.order_details td.product-name a:hover, html .cmsms_color_scheme_second .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_second .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_second .cmsms_dynamic_cart .cmsms_dynamic_cart_button:hover, html .cmsms_color_scheme_second .cmsms_dynamic_cart:hover .cmsms_dynamic_cart_button, html .cmsms_color_scheme_second .widget_shopping_cart_content .cart_list li a:hover, html .cmsms_color_scheme_second .widget_shopping_cart_content .cart_list li .quantity .amount, html .cmsms_color_scheme_second .widget_shopping_cart_content .total .amount, html .cmsms_color_scheme_second .product_list_widget li > a:hover, html .cmsms_color_scheme_second .product_list_widget li .amount { color:#9e9e9e; color:rgba(158, 158, 158, 1); } html .cmsms_color_scheme_second .onsale { background-color:#9e9e9e; background-color:rgba(158, 158, 158, 1); } /* Finish Primary Color */ /* Start Highlight Color */ html .cmsms_color_scheme_second .input-checkbox + label:after, html .cmsms_color_scheme_second .input-radio + label:after, html .cmsms_color_scheme_second .shipping_method + label:after { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 1); } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_second .cmsms_single_product .cmsms_product_right_column .product_meta strong, html .cmsms_color_scheme_second .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_second .shop_table thead th, html .cmsms_color_scheme_second .shop_table td.product-remove .remove, html .cmsms_color_scheme_second .shop_table td.product-name, html .cmsms_color_scheme_second .shop_table td.product-name a, html .cmsms_color_scheme_second .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_second .cart_totals table tr.order-total th, html .cmsms_color_scheme_second #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_second #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_second ul.order_details li > span, html .cmsms_color_scheme_second .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_second .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_second .widget_shopping_cart_content .cart_list li a, html .cmsms_color_scheme_second .widget_shopping_cart_content .total strong, html .cmsms_color_scheme_second .cmsms_added_product_info .cmsms_added_product_info_text, html .cmsms_color_scheme_second .product_list_widget li > a { color:#3d3d3d; color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_second .out-of-stock { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_second .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb:hover { border-color:#3d3d3d; border-color:rgba(61, 61, 61, 1); } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_second .onsale, html .cmsms_color_scheme_second .out-of-stock { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_second .quantity .text, html .cmsms_color_scheme_second .woocommerce-message, html .cmsms_color_scheme_second .woocommerce-info, html .cmsms_color_scheme_second #order_review #payment, html .cmsms_color_scheme_second .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_second .cmsms_added_product_info, html .cmsms_color_scheme_second .widget_price_filter .price_slider_wrapper .price_slider { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_second .cmsms_dynamic_cart .widget_shopping_cart_content:after, html .cmsms_color_scheme_second .cmsms_added_product_info:after { border-left-color:#ffffff; border-left-color:rgba(255, 255, 255, 1); } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_second .shop_table thead th, html .cmsms_color_scheme_second .shop_table td.product-remove .remove, html .cmsms_color_scheme_second .shop_table td.actions, html .cmsms_color_scheme_second .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_second .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_second .cart_totals table tr.order-total th, html .cmsms_color_scheme_second .cart_totals table tr.order-total td, html .cmsms_color_scheme_second .input-checkbox + label:before, html .cmsms_color_scheme_second .input-radio + label:before, html .cmsms_color_scheme_second .shipping_method + label:before, html .cmsms_color_scheme_second #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_second #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_second #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_second #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_second #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_second ul.order_details li > span, html .cmsms_color_scheme_second .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_second .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_second .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_second .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_second .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_second .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-range { background-color:#fbfbfb; background-color:rgba(251, 251, 251, 1); } html .cmsms_color_scheme_second #order_review #payment .payment_methods .payment_box:after { border-bottom-color:#fbfbfb; border-bottom-color:rgba(251, 251, 251, 1); } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_second .cmsms_star_rating .cmsms_star, html .cmsms_color_scheme_second .comment-form-rating .stars > span, html .cmsms_color_scheme_second .comment-form-rating .stars > span a:hover, html .cmsms_color_scheme_second .comment-form-rating .stars > span a.active, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:before { color:#ebebeb; color:rgba(235, 235, 235, 0); } html .cmsms_color_scheme_second .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle { background-color:#ebebeb; background-color:rgba(235, 235, 235, 0); } html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_footer, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button + .cmsms_details_button, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.added_to_cart + .cmsms_details_button, html .cmsms_color_scheme_second .cmsms_single_product .cmsms_product_images .cmsms_product_image, html .cmsms_color_scheme_second .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb, html .cmsms_color_scheme_second .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_second .cmsms_single_product .cmsms_woo_tabs .shop_attributes td, html .cmsms_color_scheme_second .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist, html .cmsms_color_scheme_second .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist .comment .comment_container .comment-text, html .cmsms_color_scheme_second .woocommerce-message, html .cmsms_color_scheme_second .woocommerce-info, html .cmsms_color_scheme_second .shop_table, html .cmsms_color_scheme_second .shop_table th, html .cmsms_color_scheme_second .shop_table td, html .cmsms_color_scheme_second .shop_table td.product-remove .remove, html .cmsms_color_scheme_second .shop_table td.product-thumbnail img, html .cmsms_color_scheme_second .cart_totals table, html .cmsms_color_scheme_second .cart_totals table tr th, html .cmsms_color_scheme_second .cart_totals table tr td, html .cmsms_color_scheme_second .input-checkbox + label:before, html .cmsms_color_scheme_second .input-radio + label:before, html .cmsms_color_scheme_second .shipping_method + label:before, html .cmsms_color_scheme_second #order_review #payment, html .cmsms_color_scheme_second #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_second ul.order_details, html .cmsms_color_scheme_second ul.order_details li, html .cmsms_color_scheme_second ul.order_details li > span, html .cmsms_color_scheme_second .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_second .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_second .cmsms_added_product_info, html .cmsms_color_scheme_second .widget_shopping_cart_content .cart_list li, html .cmsms_color_scheme_second .cmsms_added_product_info .cmsms_added_product_info_img, html .cmsms_color_scheme_second .widget_price_filter .price_slider_wrapper .price_slider, html .cmsms_color_scheme_second .product_list_widget li, html .cmsms_color_scheme_second .product_list_widget li img, html .cmsms_color_scheme_second .quantity .text { border-color:#ebebeb; border-color:rgba(235, 235, 235, 0); } html .cmsms_color_scheme_second #order_review #payment .payment_methods .payment_box:before { border-bottom-color:#ebebeb; border-bottom-color:rgba(235, 235, 235, 0); } html .cmsms_color_scheme_second .cmsms_dynamic_cart .widget_shopping_cart_content:before, html .cmsms_color_scheme_second .cmsms_added_product_info:before { border-left-color:#ebebeb; border-left-color:rgba(235, 235, 235, 0); } /* Finish Borders Color */ /***************** Finish Custom 2 WooCommerce Color Scheme Rules ******************/ /***************** Start Custom 2 Events Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6.tribe-events-cost, html .cmsms_color_scheme_second .recurringinfo, html .cmsms_color_scheme_second .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number .tribe-countdown-under, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events * { color:#3d3d3d; color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:after { border-color:#3d3d3d; border-color:rgba(61, 61, 61, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_second #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a:hover, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_second .tribe-events-tooltip .entry-title, html .cmsms_color_scheme_second #tribe-events-footer > a:hover, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .cmsms_events_list_event_header .tribe-events-event-cost, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .time-details, html .cmsms_color_scheme_second .recurringinfo a:hover, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a:hover, html .cmsms_color_scheme_second ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder:hover, html .cmsms_color_scheme_second .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a:hover, html .cmsms_color_scheme_second .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a:hover, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap .tribe-events-event-details .tribe-events-event-meta .time-details, html .cmsms_color_scheme_second #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile .tribe-events-event-body .time-details, html .cmsms_color_scheme_second .tribe-events-countdown-widget .tribe-countdown-text a:hover, html .cmsms_color_scheme_second .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a:hover, html .cmsms_color_scheme_second .widget .vevent .entry-title a:hover, html .cmsms_color_scheme_second .widget.tribe-events-list-widget .tribe-event-title a:hover, html .cmsms_color_scheme_second .widget .vevent .cmsms_widget_event_info, html .cmsms_color_scheme_second .widget.tribe-this-week-events-widget .duration, html .cmsms_color_scheme_second .widget .tribe-events-widget-link a:hover, html .cmsms_color_scheme_second .widget.tribe-events-list-widget .tribe-event-duration, html .cmsms_color_scheme_second .widget.tribe-this-week-events-widget .tribe-events-viewmore a:hover, html .cmsms_color_scheme_second .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a:hover, html .cmsms_color_scheme_second .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events:hover *, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a:hover { color:#9e9e9e; color:rgba(158, 158, 158, 1); } html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button { border-color:#9e9e9e; border-color:rgba(158, 158, 158, 1); } html .cmsms_color_scheme_second .tribe-bar-views-open label.button, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a:hover, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present, html .cmsms_color_scheme_second .widget .list-date span.list-daynumber, html .cmsms_color_scheme_second .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:hover { background-color:#9e9e9e; background-color:rgba(158, 158, 158, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_second #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth:hover * { color:#9e9e9e; color:rgba(158, 158, 158, 1); } html .cmsms_color_scheme_second #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present { background-color:#9e9e9e; background-color:rgba(158, 158, 158, 1); } } /* Finish Primary Color */ /* Start Highlight Color */ @media only screen and (max-width: 767px) { html .cmsms_color_scheme_second #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events:before { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 1); } } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_second #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item .cmsms_event_meta_info_item_title, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item dt, html .cmsms_color_scheme_second #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-date-filter .label-tribe-bar-date, html .cmsms_color_scheme_second #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-search-filter label, html .cmsms_color_scheme_second #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-geoloc-filter label, html .cmsms_color_scheme_second #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-submit label, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_second .tribe-events-tooltip .tribe-events-event-body .tribe-event-duration, html .cmsms_color_scheme_second #tribe-events-footer > a, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_second #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_second #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_second .recurringinfo a, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details .author, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_second .tribe-events-notices, html .cmsms_color_scheme_second ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_second .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a, html .cmsms_color_scheme_second .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title a, html .cmsms_color_scheme_second .tribe-events-countdown-widget .tribe-countdown-text a, html .cmsms_color_scheme_second .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number, html .cmsms_color_scheme_second .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-colon, html .cmsms_color_scheme_second .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name, html .cmsms_color_scheme_second .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a, html .cmsms_color_scheme_second .widget.tribe-events-list-widget .tribe-event-title, html .cmsms_color_scheme_second .widget.tribe-events-list-widget .tribe-event-title a, html .cmsms_color_scheme_second .widget .vevent .entry-title, html .cmsms_color_scheme_second .widget .vevent .entry-title a, html .cmsms_color_scheme_second .widget .tribe-events-widget-link a, html .cmsms_color_scheme_second .widget.tribe-this-week-events-widget .tribe-events-viewmore a, html .cmsms_color_scheme_second .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a, html .cmsms_color_scheme_second .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a:hover, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a { color:#3d3d3d; color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_second .tribe-events-sub-nav li a span, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today, html .cmsms_color_scheme_second .widget .list-date span.list-dayname { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_second .tribe-events-sub-nav li a span:before, html .cmsms_color_scheme_second .tribe-events-sub-nav li a span:after { border-color:#3d3d3d; border-color:rgba(61, 61, 61, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_second #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth * { color:#3d3d3d; color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_second #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 1); } } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child a, html .cmsms_color_scheme_second .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present *, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present:hover *, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today *, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today:hover *, html .cmsms_color_scheme_second .widget .list-date span.list-dayname, html .cmsms_color_scheme_second .widget .list-date span.list-daynumber { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar, html .cmsms_color_scheme_second .tribe-events-tooltip, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today div .tribe-mini-calendar-day-link:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:before, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:after, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:after, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:before, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:before, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:after { border-color:#ffffff; border-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_second .tribe-events-tooltip:after { border-top-color:#ffffff; border-top-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_second .recurringinfo .recurring-info-tooltip:after { border-bottom-color:#ffffff; border-bottom-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:after { border-right-color:#ffffff; border-right-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:after { border-left-color:#ffffff; border-left-color:rgba(255, 255, 255, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_second #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active *, html .cmsms_color_scheme_second #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present * { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_second #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events.mobile-active:before, html .cmsms_color_scheme_second #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-event-"]:hover, html .cmsms_color_scheme_second #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_second #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_second .tribe-events-notices, html .cmsms_color_scheme_second ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-today, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-othermonth { background-color:#fbfbfb; background-color:rgba(251, 251, 251, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_second #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth { background-color:#fbfbfb; background-color:rgba(251, 251, 251, 1); } } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_second .bd_font_color { color:#ebebeb; color:rgba(235, 235, 235, 0); } html .cmsms_color_scheme_second #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_second .widget.tribe-this-week-events-widget .tribe-this-week-widget-day, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-single .cmsms_single_event_header, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item, html .cmsms_color_scheme_second .tribe-bar-filters, html .cmsms_color_scheme_second .tribe-events-sub-nav li a, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_second .tribe-events-tooltip, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-list .vevent, html .cmsms_color_scheme_second .tribe-events-notices, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td .tribe-events-viewmore, html .cmsms_color_scheme_second .tribe-events-venue .cmsms_events_venue_header, html .cmsms_color_scheme_second .tribe-events-organizer .cmsms_events_organizer_header, html .cmsms_color_scheme_second .tribe-events-photo #tribe-events-header, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .slimScrollDiv, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-content-wrap .column, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-grid-outer-wrap .tribe-week-grid-inner-wrap .tribe-week-grid-block div, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_second #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile, html .cmsms_color_scheme_second .widget .vevent, html .cmsms_color_scheme_second .tribe-events-list-widget ol li, html .cmsms_color_scheme_second .tribe-events-adv-list-widget ol li, html .cmsms_color_scheme_second .tribe-events-sub-nav li a:hover span:before, html .cmsms_color_scheme_second .tribe-events-sub-nav li a:hover span:after, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar td { border-color:#ebebeb; border-color:rgba(235, 235, 235, 0); } html .cmsms_color_scheme_second .tribe-events-sub-nav li a:hover span { background-color:#ebebeb; background-color:rgba(235, 235, 235, 0); } html .cmsms_color_scheme_second .tribe-events-tooltip:before { border-top-color:#ebebeb; border-top-color:rgba(235, 235, 235, 0); } html .cmsms_color_scheme_second .recurringinfo .recurring-info-tooltip:before { border-bottom-color:#ebebeb; border-bottom-color:rgba(235, 235, 235, 0); } html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:before { border-right-color:#ebebeb; border-right-color:rgba(235, 235, 235, 0); } html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:before { border-left-color:#ebebeb; border-left-color:rgba(235, 235, 235, 0); } /* Finish Borders Color */ /***************** Finish Custom 2 Events Color Scheme Rules ******************/ /***************** Start Custom 3 WooCommerce Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_cat, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price del, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a, html .cmsms_color_scheme_third .cmsms_single_product .cmsms_product_right_column .price del, html .cmsms_color_scheme_third #order_review .shop_table td.product-name, html .cmsms_color_scheme_third #order_review .shop_table td.product-name *, html .cmsms_color_scheme_third .shop_table.order_details td.product-name, html .cmsms_color_scheme_third .shop_table.order_details td.product-name *, html .cmsms_color_scheme_third .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_third .widget_shopping_cart_content .cart_list li .quantity, html .cmsms_color_scheme_third .product_list_widget li del .amount, html .cmsms_color_scheme_third .quantity .text { color:#9c9c9c; color:rgba(156, 156, 156, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a:hover, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover:before, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading:before, html .cmsms_color_scheme_third .cmsms_single_product .cmsms_product_right_column .price, html .cmsms_color_scheme_third .required, html .cmsms_color_scheme_third .shop_table .product-name a:hover, html .cmsms_color_scheme_third .shop_table td.product-subtotal, html .cmsms_color_scheme_third .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_third .cart_totals table tr.order-total td, html .cmsms_color_scheme_third #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_third #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_third .shop_table.order_details td.product-name a:hover, html .cmsms_color_scheme_third .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_third .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_third .cmsms_dynamic_cart .cmsms_dynamic_cart_button:hover, html .cmsms_color_scheme_third .cmsms_dynamic_cart:hover .cmsms_dynamic_cart_button, html .cmsms_color_scheme_third .widget_shopping_cart_content .cart_list li a:hover, html .cmsms_color_scheme_third .widget_shopping_cart_content .cart_list li .quantity .amount, html .cmsms_color_scheme_third .widget_shopping_cart_content .total .amount, html .cmsms_color_scheme_third .product_list_widget li > a:hover, html .cmsms_color_scheme_third .product_list_widget li .amount { color:#838383; color:rgba(131, 131, 131, 1); } html .cmsms_color_scheme_third .onsale { background-color:#838383; background-color:rgba(131, 131, 131, 1); } /* Finish Primary Color */ /* Start Highlight Color */ html .cmsms_color_scheme_third .input-checkbox + label:after, html .cmsms_color_scheme_third .input-radio + label:after, html .cmsms_color_scheme_third .shipping_method + label:after { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_third .cmsms_single_product .cmsms_product_right_column .product_meta strong, html .cmsms_color_scheme_third .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_third .shop_table thead th, html .cmsms_color_scheme_third .shop_table td.product-remove .remove, html .cmsms_color_scheme_third .shop_table td.product-name, html .cmsms_color_scheme_third .shop_table td.product-name a, html .cmsms_color_scheme_third .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_third .cart_totals table tr.order-total th, html .cmsms_color_scheme_third #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_third #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_third ul.order_details li > span, html .cmsms_color_scheme_third .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_third .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_third .widget_shopping_cart_content .cart_list li a, html .cmsms_color_scheme_third .widget_shopping_cart_content .total strong, html .cmsms_color_scheme_third .cmsms_added_product_info .cmsms_added_product_info_text, html .cmsms_color_scheme_third .product_list_widget li > a { color:#838383; color:rgba(131, 131, 131, 1); } html .cmsms_color_scheme_third .out-of-stock { background-color:#838383; background-color:rgba(131, 131, 131, 1); } html .cmsms_color_scheme_third .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb:hover { border-color:#838383; border-color:rgba(131, 131, 131, 1); } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_third .onsale, html .cmsms_color_scheme_third .out-of-stock { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_third .quantity .text, html .cmsms_color_scheme_third .woocommerce-message, html .cmsms_color_scheme_third .woocommerce-info, html .cmsms_color_scheme_third #order_review #payment, html .cmsms_color_scheme_third .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_third .cmsms_added_product_info, html .cmsms_color_scheme_third .widget_price_filter .price_slider_wrapper .price_slider { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_third .cmsms_dynamic_cart .widget_shopping_cart_content:after, html .cmsms_color_scheme_third .cmsms_added_product_info:after { border-left-color:#ffffff; border-left-color:rgba(255, 255, 255, 1); } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_third .shop_table thead th, html .cmsms_color_scheme_third .shop_table td.product-remove .remove, html .cmsms_color_scheme_third .shop_table td.actions, html .cmsms_color_scheme_third .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_third .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_third .cart_totals table tr.order-total th, html .cmsms_color_scheme_third .cart_totals table tr.order-total td, html .cmsms_color_scheme_third .input-checkbox + label:before, html .cmsms_color_scheme_third .input-radio + label:before, html .cmsms_color_scheme_third .shipping_method + label:before, html .cmsms_color_scheme_third #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_third #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_third #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_third #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_third #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_third ul.order_details li > span, html .cmsms_color_scheme_third .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_third .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_third .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_third .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_third .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_third .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-range { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_third #order_review #payment .payment_methods .payment_box:after { border-bottom-color:#ffffff; border-bottom-color:rgba(255, 255, 255, 1); } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_third .cmsms_star_rating .cmsms_star, html .cmsms_color_scheme_third .comment-form-rating .stars > span, html .cmsms_color_scheme_third .comment-form-rating .stars > span a:hover, html .cmsms_color_scheme_third .comment-form-rating .stars > span a.active, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:before { color:#eaedf0; color:rgba(234, 237, 240, 1); } html .cmsms_color_scheme_third .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle { background-color:#eaedf0; background-color:rgba(234, 237, 240, 1); } html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_footer, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button + .cmsms_details_button, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.added_to_cart + .cmsms_details_button, html .cmsms_color_scheme_third .cmsms_single_product .cmsms_product_images .cmsms_product_image, html .cmsms_color_scheme_third .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb, html .cmsms_color_scheme_third .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_third .cmsms_single_product .cmsms_woo_tabs .shop_attributes td, html .cmsms_color_scheme_third .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist, html .cmsms_color_scheme_third .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist .comment .comment_container .comment-text, html .cmsms_color_scheme_third .woocommerce-message, html .cmsms_color_scheme_third .woocommerce-info, html .cmsms_color_scheme_third .shop_table, html .cmsms_color_scheme_third .shop_table th, html .cmsms_color_scheme_third .shop_table td, html .cmsms_color_scheme_third .shop_table td.product-remove .remove, html .cmsms_color_scheme_third .shop_table td.product-thumbnail img, html .cmsms_color_scheme_third .cart_totals table, html .cmsms_color_scheme_third .cart_totals table tr th, html .cmsms_color_scheme_third .cart_totals table tr td, html .cmsms_color_scheme_third .input-checkbox + label:before, html .cmsms_color_scheme_third .input-radio + label:before, html .cmsms_color_scheme_third .shipping_method + label:before, html .cmsms_color_scheme_third #order_review #payment, html .cmsms_color_scheme_third #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_third ul.order_details, html .cmsms_color_scheme_third ul.order_details li, html .cmsms_color_scheme_third ul.order_details li > span, html .cmsms_color_scheme_third .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_third .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_third .cmsms_added_product_info, html .cmsms_color_scheme_third .widget_shopping_cart_content .cart_list li, html .cmsms_color_scheme_third .cmsms_added_product_info .cmsms_added_product_info_img, html .cmsms_color_scheme_third .widget_price_filter .price_slider_wrapper .price_slider, html .cmsms_color_scheme_third .product_list_widget li, html .cmsms_color_scheme_third .product_list_widget li img, html .cmsms_color_scheme_third .quantity .text { border-color:#eaedf0; border-color:rgba(234, 237, 240, 1); } html .cmsms_color_scheme_third #order_review #payment .payment_methods .payment_box:before { border-bottom-color:#eaedf0; border-bottom-color:rgba(234, 237, 240, 1); } html .cmsms_color_scheme_third .cmsms_dynamic_cart .widget_shopping_cart_content:before, html .cmsms_color_scheme_third .cmsms_added_product_info:before { border-left-color:#eaedf0; border-left-color:rgba(234, 237, 240, 1); } /* Finish Borders Color */ /***************** Finish Custom 3 WooCommerce Color Scheme Rules ******************/ /***************** Start Custom 3 Events Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6.tribe-events-cost, html .cmsms_color_scheme_third .recurringinfo, html .cmsms_color_scheme_third .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number .tribe-countdown-under, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events * { color:#9c9c9c; color:rgba(156, 156, 156, 1); } html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow { background-color:#9c9c9c; background-color:rgba(156, 156, 156, 1); } html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:after { border-color:#9c9c9c; border-color:rgba(156, 156, 156, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_third #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a:hover, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_third .tribe-events-tooltip .entry-title, html .cmsms_color_scheme_third #tribe-events-footer > a:hover, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .cmsms_events_list_event_header .tribe-events-event-cost, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .time-details, html .cmsms_color_scheme_third .recurringinfo a:hover, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a:hover, html .cmsms_color_scheme_third ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder:hover, html .cmsms_color_scheme_third .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a:hover, html .cmsms_color_scheme_third .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a:hover, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap .tribe-events-event-details .tribe-events-event-meta .time-details, html .cmsms_color_scheme_third #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile .tribe-events-event-body .time-details, html .cmsms_color_scheme_third .tribe-events-countdown-widget .tribe-countdown-text a:hover, html .cmsms_color_scheme_third .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a:hover, html .cmsms_color_scheme_third .widget .vevent .entry-title a:hover, html .cmsms_color_scheme_third .widget.tribe-events-list-widget .tribe-event-title a:hover, html .cmsms_color_scheme_third .widget .vevent .cmsms_widget_event_info, html .cmsms_color_scheme_third .widget.tribe-this-week-events-widget .duration, html .cmsms_color_scheme_third .widget .tribe-events-widget-link a:hover, html .cmsms_color_scheme_third .widget.tribe-events-list-widget .tribe-event-duration, html .cmsms_color_scheme_third .widget.tribe-this-week-events-widget .tribe-events-viewmore a:hover, html .cmsms_color_scheme_third .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a:hover, html .cmsms_color_scheme_third .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events:hover *, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a:hover { color:#838383; color:rgba(131, 131, 131, 1); } html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button { border-color:#838383; border-color:rgba(131, 131, 131, 1); } html .cmsms_color_scheme_third .tribe-bar-views-open label.button, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a:hover, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present, html .cmsms_color_scheme_third .widget .list-date span.list-daynumber, html .cmsms_color_scheme_third .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:hover { background-color:#838383; background-color:rgba(131, 131, 131, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_third #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth:hover * { color:#838383; color:rgba(131, 131, 131, 1); } html .cmsms_color_scheme_third #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present { background-color:#838383; background-color:rgba(131, 131, 131, 1); } } /* Finish Primary Color */ /* Start Highlight Color */ @media only screen and (max-width: 767px) { html .cmsms_color_scheme_third #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_third #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item .cmsms_event_meta_info_item_title, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item dt, html .cmsms_color_scheme_third #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-date-filter .label-tribe-bar-date, html .cmsms_color_scheme_third #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-search-filter label, html .cmsms_color_scheme_third #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-geoloc-filter label, html .cmsms_color_scheme_third #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-submit label, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_third .tribe-events-tooltip .tribe-events-event-body .tribe-event-duration, html .cmsms_color_scheme_third #tribe-events-footer > a, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_third #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_third #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_third .recurringinfo a, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details .author, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_third .tribe-events-notices, html .cmsms_color_scheme_third ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_third .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a, html .cmsms_color_scheme_third .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title a, html .cmsms_color_scheme_third .tribe-events-countdown-widget .tribe-countdown-text a, html .cmsms_color_scheme_third .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number, html .cmsms_color_scheme_third .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-colon, html .cmsms_color_scheme_third .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name, html .cmsms_color_scheme_third .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a, html .cmsms_color_scheme_third .widget.tribe-events-list-widget .tribe-event-title, html .cmsms_color_scheme_third .widget.tribe-events-list-widget .tribe-event-title a, html .cmsms_color_scheme_third .widget .vevent .entry-title, html .cmsms_color_scheme_third .widget .vevent .entry-title a, html .cmsms_color_scheme_third .widget .tribe-events-widget-link a, html .cmsms_color_scheme_third .widget.tribe-this-week-events-widget .tribe-events-viewmore a, html .cmsms_color_scheme_third .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a, html .cmsms_color_scheme_third .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a:hover, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a { color:#838383; color:rgba(131, 131, 131, 1); } html .cmsms_color_scheme_third .tribe-events-sub-nav li a span, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today, html .cmsms_color_scheme_third .widget .list-date span.list-dayname { background-color:#838383; background-color:rgba(131, 131, 131, 1); } html .cmsms_color_scheme_third .tribe-events-sub-nav li a span:before, html .cmsms_color_scheme_third .tribe-events-sub-nav li a span:after { border-color:#838383; border-color:rgba(131, 131, 131, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_third #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth * { color:#838383; color:rgba(131, 131, 131, 1); } html .cmsms_color_scheme_third #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active { background-color:#838383; background-color:rgba(131, 131, 131, 1); } } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child a, html .cmsms_color_scheme_third .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present *, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present:hover *, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today *, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today:hover *, html .cmsms_color_scheme_third .widget .list-date span.list-dayname, html .cmsms_color_scheme_third .widget .list-date span.list-daynumber { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar, html .cmsms_color_scheme_third .tribe-events-tooltip, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today div .tribe-mini-calendar-day-link:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:before, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:after, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:after, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:before, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:before, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:after { border-color:#ffffff; border-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_third .tribe-events-tooltip:after { border-top-color:#ffffff; border-top-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_third .recurringinfo .recurring-info-tooltip:after { border-bottom-color:#ffffff; border-bottom-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:after { border-right-color:#ffffff; border-right-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:after { border-left-color:#ffffff; border-left-color:rgba(255, 255, 255, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_third #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active *, html .cmsms_color_scheme_third #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present * { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_third #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events.mobile-active:before, html .cmsms_color_scheme_third #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-event-"]:hover, html .cmsms_color_scheme_third #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_third #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_third .tribe-events-notices, html .cmsms_color_scheme_third ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-today, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-othermonth { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_third #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_third .bd_font_color { color:#eaedf0; color:rgba(234, 237, 240, 1); } html .cmsms_color_scheme_third #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_third .widget.tribe-this-week-events-widget .tribe-this-week-widget-day, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-single .cmsms_single_event_header, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item, html .cmsms_color_scheme_third .tribe-bar-filters, html .cmsms_color_scheme_third .tribe-events-sub-nav li a, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_third .tribe-events-tooltip, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-list .vevent, html .cmsms_color_scheme_third .tribe-events-notices, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td .tribe-events-viewmore, html .cmsms_color_scheme_third .tribe-events-venue .cmsms_events_venue_header, html .cmsms_color_scheme_third .tribe-events-organizer .cmsms_events_organizer_header, html .cmsms_color_scheme_third .tribe-events-photo #tribe-events-header, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .slimScrollDiv, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-content-wrap .column, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-grid-outer-wrap .tribe-week-grid-inner-wrap .tribe-week-grid-block div, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_third #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile, html .cmsms_color_scheme_third .widget .vevent, html .cmsms_color_scheme_third .tribe-events-list-widget ol li, html .cmsms_color_scheme_third .tribe-events-adv-list-widget ol li, html .cmsms_color_scheme_third .tribe-events-sub-nav li a:hover span:before, html .cmsms_color_scheme_third .tribe-events-sub-nav li a:hover span:after, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar td { border-color:#eaedf0; border-color:rgba(234, 237, 240, 1); } html .cmsms_color_scheme_third .tribe-events-sub-nav li a:hover span { background-color:#eaedf0; background-color:rgba(234, 237, 240, 1); } html .cmsms_color_scheme_third .tribe-events-tooltip:before { border-top-color:#eaedf0; border-top-color:rgba(234, 237, 240, 1); } html .cmsms_color_scheme_third .recurringinfo .recurring-info-tooltip:before { border-bottom-color:#eaedf0; border-bottom-color:rgba(234, 237, 240, 1); } html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:before { border-right-color:#eaedf0; border-right-color:rgba(234, 237, 240, 1); } html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:before { border-left-color:#eaedf0; border-left-color:rgba(234, 237, 240, 1); } /* Finish Borders Color */ /***************** Finish Custom 3 Events Color Scheme Rules ******************/ /***************** Start Custom 4 WooCommerce Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_cat, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price del, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a, html .cmsms_color_scheme_fourth .cmsms_single_product .cmsms_product_right_column .price del, html .cmsms_color_scheme_fourth #order_review .shop_table td.product-name, html .cmsms_color_scheme_fourth #order_review .shop_table td.product-name *, html .cmsms_color_scheme_fourth .shop_table.order_details td.product-name, html .cmsms_color_scheme_fourth .shop_table.order_details td.product-name *, html .cmsms_color_scheme_fourth .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_fourth .widget_shopping_cart_content .cart_list li .quantity, html .cmsms_color_scheme_fourth .product_list_widget li del .amount, html .cmsms_color_scheme_fourth .quantity .text { color:#707070; color:rgba(112, 112, 112, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a:hover, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover:before, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading:before, html .cmsms_color_scheme_fourth .cmsms_single_product .cmsms_product_right_column .price, html .cmsms_color_scheme_fourth .required, html .cmsms_color_scheme_fourth .shop_table .product-name a:hover, html .cmsms_color_scheme_fourth .shop_table td.product-subtotal, html .cmsms_color_scheme_fourth .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_fourth .cart_totals table tr.order-total td, html .cmsms_color_scheme_fourth #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_fourth #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_fourth .shop_table.order_details td.product-name a:hover, html .cmsms_color_scheme_fourth .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_fourth .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_fourth .cmsms_dynamic_cart .cmsms_dynamic_cart_button:hover, html .cmsms_color_scheme_fourth .cmsms_dynamic_cart:hover .cmsms_dynamic_cart_button, html .cmsms_color_scheme_fourth .widget_shopping_cart_content .cart_list li a:hover, html .cmsms_color_scheme_fourth .widget_shopping_cart_content .cart_list li .quantity .amount, html .cmsms_color_scheme_fourth .widget_shopping_cart_content .total .amount, html .cmsms_color_scheme_fourth .product_list_widget li > a:hover, html .cmsms_color_scheme_fourth .product_list_widget li .amount { color:#94e95d; color:rgba(148, 233, 93, 1); } html .cmsms_color_scheme_fourth .onsale { background-color:#94e95d; background-color:rgba(148, 233, 93, 1); } /* Finish Primary Color */ /* Start Highlight Color */ html .cmsms_color_scheme_fourth .input-checkbox + label:after, html .cmsms_color_scheme_fourth .input-radio + label:after, html .cmsms_color_scheme_fourth .shipping_method + label:after { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 1); } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_fourth .cmsms_single_product .cmsms_product_right_column .product_meta strong, html .cmsms_color_scheme_fourth .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_fourth .shop_table thead th, html .cmsms_color_scheme_fourth .shop_table td.product-remove .remove, html .cmsms_color_scheme_fourth .shop_table td.product-name, html .cmsms_color_scheme_fourth .shop_table td.product-name a, html .cmsms_color_scheme_fourth .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_fourth .cart_totals table tr.order-total th, html .cmsms_color_scheme_fourth #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_fourth #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_fourth ul.order_details li > span, html .cmsms_color_scheme_fourth .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_fourth .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_fourth .widget_shopping_cart_content .cart_list li a, html .cmsms_color_scheme_fourth .widget_shopping_cart_content .total strong, html .cmsms_color_scheme_fourth .cmsms_added_product_info .cmsms_added_product_info_text, html .cmsms_color_scheme_fourth .product_list_widget li > a { color:#979ca4; color:rgba(151, 156, 164, 1); } html .cmsms_color_scheme_fourth .out-of-stock { background-color:#979ca4; background-color:rgba(151, 156, 164, 1); } html .cmsms_color_scheme_fourth .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb:hover { border-color:#979ca4; border-color:rgba(151, 156, 164, 1); } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_fourth .onsale, html .cmsms_color_scheme_fourth .out-of-stock { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_fourth .quantity .text, html .cmsms_color_scheme_fourth .woocommerce-message, html .cmsms_color_scheme_fourth .woocommerce-info, html .cmsms_color_scheme_fourth #order_review #payment, html .cmsms_color_scheme_fourth .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_fourth .cmsms_added_product_info, html .cmsms_color_scheme_fourth .widget_price_filter .price_slider_wrapper .price_slider { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_fourth .cmsms_dynamic_cart .widget_shopping_cart_content:after, html .cmsms_color_scheme_fourth .cmsms_added_product_info:after { border-left-color:#ffffff; border-left-color:rgba(255, 255, 255, 1); } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_fourth .shop_table thead th, html .cmsms_color_scheme_fourth .shop_table td.product-remove .remove, html .cmsms_color_scheme_fourth .shop_table td.actions, html .cmsms_color_scheme_fourth .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_fourth .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_fourth .cart_totals table tr.order-total th, html .cmsms_color_scheme_fourth .cart_totals table tr.order-total td, html .cmsms_color_scheme_fourth .input-checkbox + label:before, html .cmsms_color_scheme_fourth .input-radio + label:before, html .cmsms_color_scheme_fourth .shipping_method + label:before, html .cmsms_color_scheme_fourth #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_fourth #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_fourth #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_fourth #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_fourth #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_fourth ul.order_details li > span, html .cmsms_color_scheme_fourth .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_fourth .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_fourth .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_fourth .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_fourth .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_fourth .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-range { background-color:#fdfdfd; background-color:rgba(253, 253, 253, 1); } html .cmsms_color_scheme_fourth #order_review #payment .payment_methods .payment_box:after { border-bottom-color:#fdfdfd; border-bottom-color:rgba(253, 253, 253, 1); } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_fourth .cmsms_star_rating .cmsms_star, html .cmsms_color_scheme_fourth .comment-form-rating .stars > span, html .cmsms_color_scheme_fourth .comment-form-rating .stars > span a:hover, html .cmsms_color_scheme_fourth .comment-form-rating .stars > span a.active, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:before { color:#c8ccce; color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_fourth .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle { background-color:#c8ccce; background-color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button + .cmsms_details_button, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.added_to_cart + .cmsms_details_button, html .cmsms_color_scheme_fourth .cmsms_single_product .cmsms_product_images .cmsms_product_image, html .cmsms_color_scheme_fourth .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb, html .cmsms_color_scheme_fourth .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_fourth .cmsms_single_product .cmsms_woo_tabs .shop_attributes td, html .cmsms_color_scheme_fourth .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist, html .cmsms_color_scheme_fourth .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist .comment .comment_container .comment-text, html .cmsms_color_scheme_fourth .woocommerce-message, html .cmsms_color_scheme_fourth .woocommerce-info, html .cmsms_color_scheme_fourth .shop_table, html .cmsms_color_scheme_fourth .shop_table th, html .cmsms_color_scheme_fourth .shop_table td, html .cmsms_color_scheme_fourth .shop_table td.product-remove .remove, html .cmsms_color_scheme_fourth .shop_table td.product-thumbnail img, html .cmsms_color_scheme_fourth .cart_totals table, html .cmsms_color_scheme_fourth .cart_totals table tr th, html .cmsms_color_scheme_fourth .cart_totals table tr td, html .cmsms_color_scheme_fourth .input-checkbox + label:before, html .cmsms_color_scheme_fourth .input-radio + label:before, html .cmsms_color_scheme_fourth .shipping_method + label:before, html .cmsms_color_scheme_fourth #order_review #payment, html .cmsms_color_scheme_fourth #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_fourth ul.order_details, html .cmsms_color_scheme_fourth ul.order_details li, html .cmsms_color_scheme_fourth ul.order_details li > span, html .cmsms_color_scheme_fourth .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_fourth .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_fourth .cmsms_added_product_info, html .cmsms_color_scheme_fourth .widget_shopping_cart_content .cart_list li, html .cmsms_color_scheme_fourth .cmsms_added_product_info .cmsms_added_product_info_img, html .cmsms_color_scheme_fourth .widget_price_filter .price_slider_wrapper .price_slider, html .cmsms_color_scheme_fourth .product_list_widget li, html .cmsms_color_scheme_fourth .product_list_widget li img, html .cmsms_color_scheme_fourth .quantity .text { border-color:#c8ccce; border-color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_fourth #order_review #payment .payment_methods .payment_box:before { border-bottom-color:#c8ccce; border-bottom-color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_fourth .cmsms_dynamic_cart .widget_shopping_cart_content:before, html .cmsms_color_scheme_fourth .cmsms_added_product_info:before { border-left-color:#c8ccce; border-left-color:rgba(200, 204, 206, 1); } /* Finish Borders Color */ /***************** Finish Custom 4 WooCommerce Color Scheme Rules ******************/ /***************** Start Custom 4 Events Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6.tribe-events-cost, html .cmsms_color_scheme_fourth .recurringinfo, html .cmsms_color_scheme_fourth .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number .tribe-countdown-under, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events * { color:#707070; color:rgba(112, 112, 112, 1); } html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow { background-color:#707070; background-color:rgba(112, 112, 112, 1); } html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:after { border-color:#707070; border-color:rgba(112, 112, 112, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a:hover, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_fourth .tribe-events-tooltip .entry-title, html .cmsms_color_scheme_fourth #tribe-events-footer > a:hover, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .cmsms_events_list_event_header .tribe-events-event-cost, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .time-details, html .cmsms_color_scheme_fourth .recurringinfo a:hover, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a:hover, html .cmsms_color_scheme_fourth ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder:hover, html .cmsms_color_scheme_fourth .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a:hover, html .cmsms_color_scheme_fourth .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a:hover, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap .tribe-events-event-details .tribe-events-event-meta .time-details, html .cmsms_color_scheme_fourth #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile .tribe-events-event-body .time-details, html .cmsms_color_scheme_fourth .tribe-events-countdown-widget .tribe-countdown-text a:hover, html .cmsms_color_scheme_fourth .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a:hover, html .cmsms_color_scheme_fourth .widget .vevent .entry-title a:hover, html .cmsms_color_scheme_fourth .widget.tribe-events-list-widget .tribe-event-title a:hover, html .cmsms_color_scheme_fourth .widget .vevent .cmsms_widget_event_info, html .cmsms_color_scheme_fourth .widget.tribe-this-week-events-widget .duration, html .cmsms_color_scheme_fourth .widget .tribe-events-widget-link a:hover, html .cmsms_color_scheme_fourth .widget.tribe-events-list-widget .tribe-event-duration, html .cmsms_color_scheme_fourth .widget.tribe-this-week-events-widget .tribe-events-viewmore a:hover, html .cmsms_color_scheme_fourth .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a:hover, html .cmsms_color_scheme_fourth .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events:hover *, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a:hover { color:#94e95d; color:rgba(148, 233, 93, 1); } html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button { border-color:#94e95d; border-color:rgba(148, 233, 93, 1); } html .cmsms_color_scheme_fourth .tribe-bar-views-open label.button, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a:hover, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present, html .cmsms_color_scheme_fourth .widget .list-date span.list-daynumber, html .cmsms_color_scheme_fourth .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:hover { background-color:#94e95d; background-color:rgba(148, 233, 93, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_fourth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth:hover * { color:#94e95d; color:rgba(148, 233, 93, 1); } html .cmsms_color_scheme_fourth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present { background-color:#94e95d; background-color:rgba(148, 233, 93, 1); } } /* Finish Primary Color */ /* Start Highlight Color */ @media only screen and (max-width: 767px) { html .cmsms_color_scheme_fourth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events:before { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 1); } } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item .cmsms_event_meta_info_item_title, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item dt, html .cmsms_color_scheme_fourth #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-date-filter .label-tribe-bar-date, html .cmsms_color_scheme_fourth #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-search-filter label, html .cmsms_color_scheme_fourth #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-geoloc-filter label, html .cmsms_color_scheme_fourth #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-submit label, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_fourth .tribe-events-tooltip .tribe-events-event-body .tribe-event-duration, html .cmsms_color_scheme_fourth #tribe-events-footer > a, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_fourth #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_fourth #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_fourth .recurringinfo a, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details .author, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_fourth .tribe-events-notices, html .cmsms_color_scheme_fourth ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_fourth .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a, html .cmsms_color_scheme_fourth .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title a, html .cmsms_color_scheme_fourth .tribe-events-countdown-widget .tribe-countdown-text a, html .cmsms_color_scheme_fourth .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number, html .cmsms_color_scheme_fourth .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-colon, html .cmsms_color_scheme_fourth .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name, html .cmsms_color_scheme_fourth .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a, html .cmsms_color_scheme_fourth .widget.tribe-events-list-widget .tribe-event-title, html .cmsms_color_scheme_fourth .widget.tribe-events-list-widget .tribe-event-title a, html .cmsms_color_scheme_fourth .widget .vevent .entry-title, html .cmsms_color_scheme_fourth .widget .vevent .entry-title a, html .cmsms_color_scheme_fourth .widget .tribe-events-widget-link a, html .cmsms_color_scheme_fourth .widget.tribe-this-week-events-widget .tribe-events-viewmore a, html .cmsms_color_scheme_fourth .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a, html .cmsms_color_scheme_fourth .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a:hover, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a { color:#979ca4; color:rgba(151, 156, 164, 1); } html .cmsms_color_scheme_fourth .tribe-events-sub-nav li a span, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today, html .cmsms_color_scheme_fourth .widget .list-date span.list-dayname { background-color:#979ca4; background-color:rgba(151, 156, 164, 1); } html .cmsms_color_scheme_fourth .tribe-events-sub-nav li a span:before, html .cmsms_color_scheme_fourth .tribe-events-sub-nav li a span:after { border-color:#979ca4; border-color:rgba(151, 156, 164, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_fourth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth * { color:#979ca4; color:rgba(151, 156, 164, 1); } html .cmsms_color_scheme_fourth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active { background-color:#979ca4; background-color:rgba(151, 156, 164, 1); } } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child a, html .cmsms_color_scheme_fourth .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present *, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present:hover *, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today *, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today:hover *, html .cmsms_color_scheme_fourth .widget .list-date span.list-dayname, html .cmsms_color_scheme_fourth .widget .list-date span.list-daynumber { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar, html .cmsms_color_scheme_fourth .tribe-events-tooltip, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today div .tribe-mini-calendar-day-link:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:before, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:after, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:after, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:before, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:before, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:after { border-color:#ffffff; border-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_fourth .tribe-events-tooltip:after { border-top-color:#ffffff; border-top-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_fourth .recurringinfo .recurring-info-tooltip:after { border-bottom-color:#ffffff; border-bottom-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:after { border-right-color:#ffffff; border-right-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:after { border-left-color:#ffffff; border-left-color:rgba(255, 255, 255, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_fourth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active *, html .cmsms_color_scheme_fourth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present * { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_fourth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events.mobile-active:before, html .cmsms_color_scheme_fourth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-event-"]:hover, html .cmsms_color_scheme_fourth #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_fourth #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_fourth .tribe-events-notices, html .cmsms_color_scheme_fourth ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-today, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-othermonth { background-color:#fdfdfd; background-color:rgba(253, 253, 253, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_fourth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth { background-color:#fdfdfd; background-color:rgba(253, 253, 253, 1); } } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_fourth .bd_font_color { color:#c8ccce; color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_fourth .widget.tribe-this-week-events-widget .tribe-this-week-widget-day, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-single .cmsms_single_event_header, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item, html .cmsms_color_scheme_fourth .tribe-bar-filters, html .cmsms_color_scheme_fourth .tribe-events-sub-nav li a, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_fourth .tribe-events-tooltip, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-list .vevent, html .cmsms_color_scheme_fourth .tribe-events-notices, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td .tribe-events-viewmore, html .cmsms_color_scheme_fourth .tribe-events-venue .cmsms_events_venue_header, html .cmsms_color_scheme_fourth .tribe-events-organizer .cmsms_events_organizer_header, html .cmsms_color_scheme_fourth .tribe-events-photo #tribe-events-header, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .slimScrollDiv, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-content-wrap .column, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-grid-outer-wrap .tribe-week-grid-inner-wrap .tribe-week-grid-block div, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_fourth #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile, html .cmsms_color_scheme_fourth .widget .vevent, html .cmsms_color_scheme_fourth .tribe-events-list-widget ol li, html .cmsms_color_scheme_fourth .tribe-events-adv-list-widget ol li, html .cmsms_color_scheme_fourth .tribe-events-sub-nav li a:hover span:before, html .cmsms_color_scheme_fourth .tribe-events-sub-nav li a:hover span:after, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar td { border-color:#c8ccce; border-color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_fourth .tribe-events-sub-nav li a:hover span { background-color:#c8ccce; background-color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_fourth .tribe-events-tooltip:before { border-top-color:#c8ccce; border-top-color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_fourth .recurringinfo .recurring-info-tooltip:before { border-bottom-color:#c8ccce; border-bottom-color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:before { border-right-color:#c8ccce; border-right-color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:before { border-left-color:#c8ccce; border-left-color:rgba(200, 204, 206, 1); } /* Finish Borders Color */ /***************** Finish Custom 4 Events Color Scheme Rules ******************/ /***************** Start Custom 5 WooCommerce Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_cat, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price del, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a, html .cmsms_color_scheme_fifth .cmsms_single_product .cmsms_product_right_column .price del, html .cmsms_color_scheme_fifth #order_review .shop_table td.product-name, html .cmsms_color_scheme_fifth #order_review .shop_table td.product-name *, html .cmsms_color_scheme_fifth .shop_table.order_details td.product-name, html .cmsms_color_scheme_fifth .shop_table.order_details td.product-name *, html .cmsms_color_scheme_fifth .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_fifth .widget_shopping_cart_content .cart_list li .quantity, html .cmsms_color_scheme_fifth .product_list_widget li del .amount, html .cmsms_color_scheme_fifth .quantity .text { color:#ffffff; color:rgba(255, 255, 255, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a:hover, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover:before, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading:before, html .cmsms_color_scheme_fifth .cmsms_single_product .cmsms_product_right_column .price, html .cmsms_color_scheme_fifth .required, html .cmsms_color_scheme_fifth .shop_table .product-name a:hover, html .cmsms_color_scheme_fifth .shop_table td.product-subtotal, html .cmsms_color_scheme_fifth .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_fifth .cart_totals table tr.order-total td, html .cmsms_color_scheme_fifth #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_fifth #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_fifth .shop_table.order_details td.product-name a:hover, html .cmsms_color_scheme_fifth .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_fifth .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_fifth .cmsms_dynamic_cart .cmsms_dynamic_cart_button:hover, html .cmsms_color_scheme_fifth .cmsms_dynamic_cart:hover .cmsms_dynamic_cart_button, html .cmsms_color_scheme_fifth .widget_shopping_cart_content .cart_list li a:hover, html .cmsms_color_scheme_fifth .widget_shopping_cart_content .cart_list li .quantity .amount, html .cmsms_color_scheme_fifth .widget_shopping_cart_content .total .amount, html .cmsms_color_scheme_fifth .product_list_widget li > a:hover, html .cmsms_color_scheme_fifth .product_list_widget li .amount { color:#58cf90; color:rgba(88, 207, 144, 1); } html .cmsms_color_scheme_fifth .onsale { background-color:#58cf90; background-color:rgba(88, 207, 144, 1); } /* Finish Primary Color */ /* Start Highlight Color */ html .cmsms_color_scheme_fifth .input-checkbox + label:after, html .cmsms_color_scheme_fifth .input-radio + label:after, html .cmsms_color_scheme_fifth .shipping_method + label:after { background-color:#d0f275; background-color:rgba(208, 242, 117, 1); } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_fifth .cmsms_single_product .cmsms_product_right_column .product_meta strong, html .cmsms_color_scheme_fifth .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_fifth .shop_table thead th, html .cmsms_color_scheme_fifth .shop_table td.product-remove .remove, html .cmsms_color_scheme_fifth .shop_table td.product-name, html .cmsms_color_scheme_fifth .shop_table td.product-name a, html .cmsms_color_scheme_fifth .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_fifth .cart_totals table tr.order-total th, html .cmsms_color_scheme_fifth #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_fifth #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_fifth ul.order_details li > span, html .cmsms_color_scheme_fifth .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_fifth .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_fifth .widget_shopping_cart_content .cart_list li a, html .cmsms_color_scheme_fifth .widget_shopping_cart_content .total strong, html .cmsms_color_scheme_fifth .cmsms_added_product_info .cmsms_added_product_info_text, html .cmsms_color_scheme_fifth .product_list_widget li > a { color:#fcfcfc; color:rgba(252, 252, 252, 1); } html .cmsms_color_scheme_fifth .out-of-stock { background-color:#fcfcfc; background-color:rgba(252, 252, 252, 1); } html .cmsms_color_scheme_fifth .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb:hover { border-color:#fcfcfc; border-color:rgba(252, 252, 252, 1); } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_fifth .onsale, html .cmsms_color_scheme_fifth .out-of-stock { color:#5b5b5b; color:rgba(91, 91, 91, 1); } html .cmsms_color_scheme_fifth .quantity .text, html .cmsms_color_scheme_fifth .woocommerce-message, html .cmsms_color_scheme_fifth .woocommerce-info, html .cmsms_color_scheme_fifth #order_review #payment, html .cmsms_color_scheme_fifth .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_fifth .cmsms_added_product_info, html .cmsms_color_scheme_fifth .widget_price_filter .price_slider_wrapper .price_slider { background-color:#5b5b5b; background-color:rgba(91, 91, 91, 1); } html .cmsms_color_scheme_fifth .cmsms_dynamic_cart .widget_shopping_cart_content:after, html .cmsms_color_scheme_fifth .cmsms_added_product_info:after { border-left-color:#5b5b5b; border-left-color:rgba(91, 91, 91, 1); } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_fifth .shop_table thead th, html .cmsms_color_scheme_fifth .shop_table td.product-remove .remove, html .cmsms_color_scheme_fifth .shop_table td.actions, html .cmsms_color_scheme_fifth .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_fifth .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_fifth .cart_totals table tr.order-total th, html .cmsms_color_scheme_fifth .cart_totals table tr.order-total td, html .cmsms_color_scheme_fifth .input-checkbox + label:before, html .cmsms_color_scheme_fifth .input-radio + label:before, html .cmsms_color_scheme_fifth .shipping_method + label:before, html .cmsms_color_scheme_fifth #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_fifth #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_fifth #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_fifth #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_fifth #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_fifth ul.order_details li > span, html .cmsms_color_scheme_fifth .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_fifth .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_fifth .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_fifth .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_fifth .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_fifth .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-range { background-color:#fdfdfd; background-color:rgba(253, 253, 253, 1); } html .cmsms_color_scheme_fifth #order_review #payment .payment_methods .payment_box:after { border-bottom-color:#fdfdfd; border-bottom-color:rgba(253, 253, 253, 1); } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_fifth .cmsms_star_rating .cmsms_star, html .cmsms_color_scheme_fifth .comment-form-rating .stars > span, html .cmsms_color_scheme_fifth .comment-form-rating .stars > span a:hover, html .cmsms_color_scheme_fifth .comment-form-rating .stars > span a.active, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:before { color:#b5b5b5; color:rgba(181, 181, 181, 1); } html .cmsms_color_scheme_fifth .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle { background-color:#b5b5b5; background-color:rgba(181, 181, 181, 1); } html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button + .cmsms_details_button, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.added_to_cart + .cmsms_details_button, html .cmsms_color_scheme_fifth .cmsms_single_product .cmsms_product_images .cmsms_product_image, html .cmsms_color_scheme_fifth .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb, html .cmsms_color_scheme_fifth .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_fifth .cmsms_single_product .cmsms_woo_tabs .shop_attributes td, html .cmsms_color_scheme_fifth .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist, html .cmsms_color_scheme_fifth .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist .comment .comment_container .comment-text, html .cmsms_color_scheme_fifth .woocommerce-message, html .cmsms_color_scheme_fifth .woocommerce-info, html .cmsms_color_scheme_fifth .shop_table, html .cmsms_color_scheme_fifth .shop_table th, html .cmsms_color_scheme_fifth .shop_table td, html .cmsms_color_scheme_fifth .shop_table td.product-remove .remove, html .cmsms_color_scheme_fifth .shop_table td.product-thumbnail img, html .cmsms_color_scheme_fifth .cart_totals table, html .cmsms_color_scheme_fifth .cart_totals table tr th, html .cmsms_color_scheme_fifth .cart_totals table tr td, html .cmsms_color_scheme_fifth .input-checkbox + label:before, html .cmsms_color_scheme_fifth .input-radio + label:before, html .cmsms_color_scheme_fifth .shipping_method + label:before, html .cmsms_color_scheme_fifth #order_review #payment, html .cmsms_color_scheme_fifth #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_fifth ul.order_details, html .cmsms_color_scheme_fifth ul.order_details li, html .cmsms_color_scheme_fifth ul.order_details li > span, html .cmsms_color_scheme_fifth .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_fifth .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_fifth .cmsms_added_product_info, html .cmsms_color_scheme_fifth .widget_shopping_cart_content .cart_list li, html .cmsms_color_scheme_fifth .cmsms_added_product_info .cmsms_added_product_info_img, html .cmsms_color_scheme_fifth .widget_price_filter .price_slider_wrapper .price_slider, html .cmsms_color_scheme_fifth .product_list_widget li, html .cmsms_color_scheme_fifth .product_list_widget li img, html .cmsms_color_scheme_fifth .quantity .text { border-color:#b5b5b5; border-color:rgba(181, 181, 181, 1); } html .cmsms_color_scheme_fifth #order_review #payment .payment_methods .payment_box:before { border-bottom-color:#b5b5b5; border-bottom-color:rgba(181, 181, 181, 1); } html .cmsms_color_scheme_fifth .cmsms_dynamic_cart .widget_shopping_cart_content:before, html .cmsms_color_scheme_fifth .cmsms_added_product_info:before { border-left-color:#b5b5b5; border-left-color:rgba(181, 181, 181, 1); } /* Finish Borders Color */ /***************** Finish Custom 5 WooCommerce Color Scheme Rules ******************/ /***************** Start Custom 5 Events Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6.tribe-events-cost, html .cmsms_color_scheme_fifth .recurringinfo, html .cmsms_color_scheme_fifth .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number .tribe-countdown-under, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events * { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:after { border-color:#ffffff; border-color:rgba(255, 255, 255, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a:hover, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_fifth .tribe-events-tooltip .entry-title, html .cmsms_color_scheme_fifth #tribe-events-footer > a:hover, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .cmsms_events_list_event_header .tribe-events-event-cost, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .time-details, html .cmsms_color_scheme_fifth .recurringinfo a:hover, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a:hover, html .cmsms_color_scheme_fifth ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder:hover, html .cmsms_color_scheme_fifth .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a:hover, html .cmsms_color_scheme_fifth .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a:hover, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap .tribe-events-event-details .tribe-events-event-meta .time-details, html .cmsms_color_scheme_fifth #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile .tribe-events-event-body .time-details, html .cmsms_color_scheme_fifth .tribe-events-countdown-widget .tribe-countdown-text a:hover, html .cmsms_color_scheme_fifth .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a:hover, html .cmsms_color_scheme_fifth .widget .vevent .entry-title a:hover, html .cmsms_color_scheme_fifth .widget.tribe-events-list-widget .tribe-event-title a:hover, html .cmsms_color_scheme_fifth .widget .vevent .cmsms_widget_event_info, html .cmsms_color_scheme_fifth .widget.tribe-this-week-events-widget .duration, html .cmsms_color_scheme_fifth .widget .tribe-events-widget-link a:hover, html .cmsms_color_scheme_fifth .widget.tribe-events-list-widget .tribe-event-duration, html .cmsms_color_scheme_fifth .widget.tribe-this-week-events-widget .tribe-events-viewmore a:hover, html .cmsms_color_scheme_fifth .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a:hover, html .cmsms_color_scheme_fifth .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events:hover *, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a:hover { color:#58cf90; color:rgba(88, 207, 144, 1); } html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button { border-color:#58cf90; border-color:rgba(88, 207, 144, 1); } html .cmsms_color_scheme_fifth .tribe-bar-views-open label.button, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a:hover, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present, html .cmsms_color_scheme_fifth .widget .list-date span.list-daynumber, html .cmsms_color_scheme_fifth .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:hover { background-color:#58cf90; background-color:rgba(88, 207, 144, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_fifth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth:hover * { color:#58cf90; color:rgba(88, 207, 144, 1); } html .cmsms_color_scheme_fifth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present { background-color:#58cf90; background-color:rgba(88, 207, 144, 1); } } /* Finish Primary Color */ /* Start Highlight Color */ @media only screen and (max-width: 767px) { html .cmsms_color_scheme_fifth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events:before { background-color:#d0f275; background-color:rgba(208, 242, 117, 1); } } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item .cmsms_event_meta_info_item_title, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item dt, html .cmsms_color_scheme_fifth #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-date-filter .label-tribe-bar-date, html .cmsms_color_scheme_fifth #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-search-filter label, html .cmsms_color_scheme_fifth #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-geoloc-filter label, html .cmsms_color_scheme_fifth #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-submit label, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_fifth .tribe-events-tooltip .tribe-events-event-body .tribe-event-duration, html .cmsms_color_scheme_fifth #tribe-events-footer > a, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_fifth #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_fifth #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_fifth .recurringinfo a, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details .author, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_fifth .tribe-events-notices, html .cmsms_color_scheme_fifth ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_fifth .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a, html .cmsms_color_scheme_fifth .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title a, html .cmsms_color_scheme_fifth .tribe-events-countdown-widget .tribe-countdown-text a, html .cmsms_color_scheme_fifth .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number, html .cmsms_color_scheme_fifth .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-colon, html .cmsms_color_scheme_fifth .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name, html .cmsms_color_scheme_fifth .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a, html .cmsms_color_scheme_fifth .widget.tribe-events-list-widget .tribe-event-title, html .cmsms_color_scheme_fifth .widget.tribe-events-list-widget .tribe-event-title a, html .cmsms_color_scheme_fifth .widget .vevent .entry-title, html .cmsms_color_scheme_fifth .widget .vevent .entry-title a, html .cmsms_color_scheme_fifth .widget .tribe-events-widget-link a, html .cmsms_color_scheme_fifth .widget.tribe-this-week-events-widget .tribe-events-viewmore a, html .cmsms_color_scheme_fifth .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a, html .cmsms_color_scheme_fifth .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a:hover, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a { color:#fcfcfc; color:rgba(252, 252, 252, 1); } html .cmsms_color_scheme_fifth .tribe-events-sub-nav li a span, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today, html .cmsms_color_scheme_fifth .widget .list-date span.list-dayname { background-color:#fcfcfc; background-color:rgba(252, 252, 252, 1); } html .cmsms_color_scheme_fifth .tribe-events-sub-nav li a span:before, html .cmsms_color_scheme_fifth .tribe-events-sub-nav li a span:after { border-color:#fcfcfc; border-color:rgba(252, 252, 252, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_fifth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth * { color:#fcfcfc; color:rgba(252, 252, 252, 1); } html .cmsms_color_scheme_fifth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active { background-color:#fcfcfc; background-color:rgba(252, 252, 252, 1); } } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child a, html .cmsms_color_scheme_fifth .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present *, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present:hover *, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today *, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today:hover *, html .cmsms_color_scheme_fifth .widget .list-date span.list-dayname, html .cmsms_color_scheme_fifth .widget .list-date span.list-daynumber { color:#5b5b5b; color:rgba(91, 91, 91, 1); } html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar, html .cmsms_color_scheme_fifth .tribe-events-tooltip, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today div .tribe-mini-calendar-day-link:before { background-color:#5b5b5b; background-color:rgba(91, 91, 91, 1); } html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:before, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:after, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:after, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:before, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:before, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:after { border-color:#5b5b5b; border-color:rgba(91, 91, 91, 1); } html .cmsms_color_scheme_fifth .tribe-events-tooltip:after { border-top-color:#5b5b5b; border-top-color:rgba(91, 91, 91, 1); } html .cmsms_color_scheme_fifth .recurringinfo .recurring-info-tooltip:after { border-bottom-color:#5b5b5b; border-bottom-color:rgba(91, 91, 91, 1); } html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:after { border-right-color:#5b5b5b; border-right-color:rgba(91, 91, 91, 1); } html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:after { border-left-color:#5b5b5b; border-left-color:rgba(91, 91, 91, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_fifth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active *, html .cmsms_color_scheme_fifth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present * { color:#5b5b5b; color:rgba(91, 91, 91, 1); } html .cmsms_color_scheme_fifth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events.mobile-active:before, html .cmsms_color_scheme_fifth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present:before { background-color:#5b5b5b; background-color:rgba(91, 91, 91, 1); } } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-event-"]:hover, html .cmsms_color_scheme_fifth #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_fifth #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_fifth .tribe-events-notices, html .cmsms_color_scheme_fifth ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-today, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-othermonth { background-color:#fdfdfd; background-color:rgba(253, 253, 253, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_fifth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth { background-color:#fdfdfd; background-color:rgba(253, 253, 253, 1); } } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_fifth .bd_font_color { color:#b5b5b5; color:rgba(181, 181, 181, 1); } html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_fifth .widget.tribe-this-week-events-widget .tribe-this-week-widget-day, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-single .cmsms_single_event_header, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item, html .cmsms_color_scheme_fifth .tribe-bar-filters, html .cmsms_color_scheme_fifth .tribe-events-sub-nav li a, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_fifth .tribe-events-tooltip, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-list .vevent, html .cmsms_color_scheme_fifth .tribe-events-notices, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td .tribe-events-viewmore, html .cmsms_color_scheme_fifth .tribe-events-venue .cmsms_events_venue_header, html .cmsms_color_scheme_fifth .tribe-events-organizer .cmsms_events_organizer_header, html .cmsms_color_scheme_fifth .tribe-events-photo #tribe-events-header, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .slimScrollDiv, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-content-wrap .column, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-grid-outer-wrap .tribe-week-grid-inner-wrap .tribe-week-grid-block div, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_fifth #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile, html .cmsms_color_scheme_fifth .widget .vevent, html .cmsms_color_scheme_fifth .tribe-events-list-widget ol li, html .cmsms_color_scheme_fifth .tribe-events-adv-list-widget ol li, html .cmsms_color_scheme_fifth .tribe-events-sub-nav li a:hover span:before, html .cmsms_color_scheme_fifth .tribe-events-sub-nav li a:hover span:after, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar td { border-color:#b5b5b5; border-color:rgba(181, 181, 181, 1); } html .cmsms_color_scheme_fifth .tribe-events-sub-nav li a:hover span { background-color:#b5b5b5; background-color:rgba(181, 181, 181, 1); } html .cmsms_color_scheme_fifth .tribe-events-tooltip:before { border-top-color:#b5b5b5; border-top-color:rgba(181, 181, 181, 1); } html .cmsms_color_scheme_fifth .recurringinfo .recurring-info-tooltip:before { border-bottom-color:#b5b5b5; border-bottom-color:rgba(181, 181, 181, 1); } html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:before { border-right-color:#b5b5b5; border-right-color:rgba(181, 181, 181, 1); } html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:before { border-left-color:#b5b5b5; border-left-color:rgba(181, 181, 181, 1); } /* Finish Borders Color */ /***************** Finish Custom 5 Events Color Scheme Rules ******************/ /***************** Start Header Color Scheme Rules ******************/ /* Start Header Content Color */ .header_mid, .header_bot, .header_mid_inner .social_wrap a { color:#979ca4; color:rgba(151, 156, 164, 1); } /* Finish Header Content Color */ /* Start Header Primary Color */ .header_mid a, .header_mid h1 a:hover, .header_mid h2 a:hover, .header_mid h3 a:hover, .header_mid h4 a:hover, .header_mid h5 a:hover, .header_mid h6 a:hover, .header_mid .color_2, .header_bot a, .header_bot h1 a:hover, .header_bot h2 a:hover, .header_bot h3 a:hover, .header_bot h4 a:hover, .header_bot h5 a:hover, .header_bot h6 a:hover, .header_bot .color_2, .header_mid h1, .header_mid h2, .header_mid h3, .header_mid h4, .header_mid h5, .header_mid h6, .header_mid h1 a, .header_mid h2 a, .header_mid h3 a, .header_mid h4 a, .header_mid h5 a, .header_mid h6 a, .header_bot h1, .header_bot h2, .header_bot h3, .header_bot h4, .header_bot h5, .header_bot h6, .header_bot h1 a, .header_bot h2 a, .header_bot h3 a, .header_bot h4 a, .header_bot h5 a, .header_bot h6 a, #navigation > li > a, .header_mid_outer .header_mid_inner .search_wrap .search_bar_wrap button[type=submit][class^="cmsms-icon-"], .header_mid_outer .header_mid_inner .search_wrap .search_bar_wrap button[type=submit][class*=" cmsms-icon-"], .header_mid_outer .header_mid_inner .search_wrap .search_but, .header_mid .search_bar_wrap button[type=submit][class^="cmsms-icon-"], .header_mid .search_bar_wrap button[type=submit][class*=" cmsms-icon-"], .header_bot .search_bar_wrap button[type=submit][class^="cmsms-icon-"], .header_bot .search_bar_wrap button[type=submit][class*=" cmsms-icon-"], .header_mid_inner .social_wrap a:hover { color:#323943; color:rgba(50, 57, 67, 1); } .header_mid .cmsms_button, .header_mid .button:hover, .header_bot .cmsms_button, .header_bot .button:hover, .header_mid .button, .header_bot .button { background-color:#323943; background-color:rgba(50, 57, 67, 1); } .header_mid input[type=text]:focus, .header_mid input[type=email]:focus, .header_mid input[type=password]:focus, .header_mid textarea:focus, .header_top input[type=text]:focus, .header_top input[type=email]:focus, .header_top input[type=password]:focus, .header_top textarea:focus { border-color:#323943; border-color:rgba(50, 57, 67, 1); } /* Finish Header Primary Color */ /* Start Header Rollover Color */ .header_mid a:hover, .header_bot a:hover, #navigation > li > a:hover, #navigation > li.current-menu-item > a, #navigation > li.current_page_item > a, #navigation > li.current-menu-ancestor > a, #navigation > li.menu-item-highlight > a { color:#58cf90; color:rgba(88, 207, 144, 1); } @media only screen and (min-width: 1024px) { #navigation > li:hover > a { color:#58cf90; color:rgba(88, 207, 144, 1); } } /* Finish Header Rollover Color */ /* Start Header Background Color */ .header_mid .cmsms_button, .header_mid .cmsms_button:hover, .header_bot .cmsms_button, .header_bot .cmsms_button:hover { color:#ffffff; color:rgba(255, 255, 255, 0.95); } .header_mid input[type=text]:focus, .header_mid input[type=number]:focus, .header_mid input[type=email]:focus, .header_mid input[type=password]:focus, .header_mid textarea:focus, .header_bot input[type=text]:focus, .header_bot input[type=number]:focus, .header_bot input[type=email]:focus, .header_bot input[type=password]:focus, .header_bot textarea:focus, .header_mid_outer, .header_bot_outer, .header_mid_outer .header_mid_inner .search_wrap.search_opened .search_but { background-color:#ffffff; background-color:rgba(255, 255, 255, 0.95); } /* Finish Header Background Color */ /* Start Header Rollover Background Color */ #navigation > li > a:hover, #navigation > li.current-menu-item > a, #navigation > li.current_page_item > a, #navigation > li.current-menu-ancestor > a, #navigation > li > a > span.nav_bg_clr, #navigation > li.menu-item-highlight > a > span.nav_bg_clr { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 0); } @media only screen and (min-width: 1024px) { #navigation > li:hover > a { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 0); } } /* Finish Header Rollover Background Color */ /* Start Header Borders Color */ .header_mid input[type=text], .header_mid input[type=number], .header_mid input[type=email], .header_mid input[type=password], .header_mid input[type=submit], .header_mid button, .header_mid textarea, .header_mid select, .header_mid option, .header_bot input[type=text], .header_bot input[type=number], .header_bot input[type=email], .header_bot input[type=password], .header_bot input[type=submit], .header_bot button, .header_bot textarea, .header_bot select, .header_bot option, .header_mid_outer .header_mid_inner .search_wrap.search_opened .search_but, .header_mid .search_bar_wrap, .header_bot .search_bar_wrap, #navigation li a { border-color:#ebebeb; border-color:rgba(235, 235, 235, 1); } .header_mid_outer, .header_bot_outer, .header_mid hr, .header_mid .cmsms_divider, .header_bot hr, .header_bot .cmsms_divider { border-bottom-color:#ebebeb; border-bottom-color:rgba(235, 235, 235, 1); } /* Finish Header Borders Color */ /* Start Header Dropdown Link Color */ .header_mid .button, .header_mid .button:hover, .header_bot .button, .header_bot .button:hover, #navigation ul li a { color:#9e9e9e; color:rgba(158, 158, 158, 1); } @media only screen and (max-width: 1024px) { #navigation > li > a { color:#9e9e9e; color:rgba(158, 158, 158, 1); } } /* Finish Header Dropdown Link Color */ /* Start Header Dropdown Rollover Color */ #navigation ul li > a:hover, #navigation ul li.current-menu-item > a, #navigation ul li.current_page_item > a, #navigation ul li.current-menu-ancestor > a, #navigation > li li.menu-item-highlight > a, #navigation > li li.menu-item-highlight > a:hover, #navigation > li.menu-item-mega li > a:hover, #navigation > li.menu-item-mega li.current-menu-ancestor > a, #navigation > li.menu-item-mega li li > a:hover, #navigation > li.menu-item-mega > ul > li > a, #navigation > li.menu-item-mega > ul > li > a:hover, #navigation > li.menu-item-mega > div.menu-item-mega-container li > a:hover, #navigation > li.menu-item-mega > div.menu-item-mega-container li.current-menu-item > a, #navigation > li.menu-item-mega > div.menu-item-mega-container li.current_page_item > a, #navigation > li.menu-item-mega > div.menu-item-mega-container li.menu-item-highlight > a, #navigation > li.menu-item-mega > div.menu-item-mega-container li.menu-item-highlight > a:hover, #navigation > li.menu-item-mega > div.menu-item-mega-container li.menu-item-highlight:hover > a:hover, #navigation > li.menu-item-mega > div.menu-item-mega-container > ul > li > a, #navigation > li.menu-item-mega > div.menu-item-mega-container > ul > li > a:hover, #navigation > li.menu-item-mega > div.menu-item-mega-container > ul > li > a[href]:hover, #navigation > li.menu-item-mega > div.menu-item-mega-container > ul li li > a:hover, #navigation > li.menu-item-mega > div.menu-item-mega-container > ul li li:hover > a:hover { color:#3d3d3d; color:rgba(61, 61, 61, 1); } @media only screen and (max-width: 1024px) { #navigation > li > a:hover, #navigation > li.current-menu-item > a, #navigation > li.current_page_item > a, #navigation > li.current-menu-ancestor > a, #navigation > li.menu-item-highlight > a { color:#3d3d3d; color:rgba(61, 61, 61, 1); } } @media only screen and (min-width: 1024px) { #navigation ul li:hover > a, #navigation > li li.menu-item-highlight:hover > a, #navigation > li.menu-item-mega li:hover > a, #navigation > li.menu-item-mega > ul > li:hover > a, #navigation > li.menu-item-mega > div.menu-item-mega-container li:hover > a, #navigation > li.menu-item-mega > div.menu-item-mega-container > ul li li:hover > a, #navigation > li.menu-item-mega > div.menu-item-mega-container li.menu-item-highlight:hover > a { color:#3d3d3d; color:rgba(61, 61, 61, 1); } } /* Finish Header Dropdown Rollover Color */ /* Start Header Dropdown Background Color */ .header_mid input[type=text], .header_mid input[type=number], .header_mid input[type=email], .header_mid input[type=password], .header_mid input[type=submit], .header_mid button, .header_mid textarea, .header_mid select, .header_mid option, .header_bot input[type=text], .header_bot input[type=number], .header_bot input[type=email], .header_bot input[type=password], .header_bot input[type=submit], .header_bot button, .header_bot textarea, .header_bot select, .header_bot option, #navigation ul, #navigation > li.menu-item-mega li > a:hover, #navigation > li.menu-item-mega > div.menu-item-mega-container { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } @media only screen and (max-width: 1024px) { #navigation { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } @media only screen and (min-width: 1024px) { #navigation > li.menu-item-mega li:hover > a { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } #navigation > li.menu-item-has-children > a:before, #navigation > li.menu-item-has-children > a > span.nav_bg_clr:before { border-bottom-color:#ffffff; border-bottom-color:rgba(255, 255, 255, 1); } /* Finish Header Dropdown Background Color */ /* Start Header Dropdown Rollover Background Color */ #navigation ul li > a:hover, #navigation ul li.current-menu-item > a, #navigation ul li.current_page_item > a, #navigation ul li.current-menu-ancestor > a, #navigation > li.menu-item-mega li li:hover > a:hover, #navigation > li.menu-item-mega li li.current-menu-item > a, #navigation > li.menu-item-mega li li.current_page_item > a, .header_mid .search_bar_wrap, .header_mid .search_bar_wrap input[type=text], .header_mid .search_bar_wrap input[type=text]:focus, .header_bot .search_bar_wrap, .header_bot .search_bar_wrap input[type=text], .header_bot .search_bar_wrap input[type=text]:focus { background-color:#fbfbfb; background-color:rgba(251, 251, 251, 1); } @media only screen and (max-width: 1024px) { #navigation > li > a:hover, #navigation > li.current-menu-item > a, #navigation > li.current_page_item > a, #navigation > li.current-menu-ancestor > a, #navigation > li > a > span.nav_bg_clr, #navigation > li.menu-item-highlight > a > span.nav_bg_clr { background-color:#fbfbfb; background-color:rgba(251, 251, 251, 1); } } @media only screen and (min-width: 1024px) { #navigation ul li:hover > a { background-color:#fbfbfb; background-color:rgba(251, 251, 251, 1); } } /* Finish Header Dropdown Rollover Background Color */ /* Start Header Dropdown Borders Color */ #navigation > li.menu-item-mega > div.menu-item-mega-container > ul:after { background-color:#ebebeb; background-color:rgba(235, 235, 235, 1); } #navigation ul, #navigation > li.menu-item-mega > div.menu-item-mega-container { border-color:#ebebeb; border-color:rgba(235, 235, 235, 1); } @media only screen and (max-width: 1024px) { #navigation li a { border-color:#ebebeb; border-color:rgba(235, 235, 235, 1); } .header_mid_outer, .header_bot_outer { border-bottom-color:#ebebeb; border-bottom-color:rgba(235, 235, 235, 1); } } #navigation ul li, #navigation > li.menu-item-mega > div.menu-item-mega-container li li li:first-child { border-top-color:#ebebeb; border-top-color:rgba(235, 235, 235, 1); } /* Finish Header Dropdown Borders Color */ /* Start Header Custom Rules */ .header_mid ::selection, .header_bot ::selection { background:#323943; background:rgba(50, 57, 67, 1); color:#ffffff; color:rgba(255, 255, 255, 0.95); } .header_mid ::-moz-selection, .header_bot ::-moz-selection { background:#323943; background:rgba(50, 57, 67, 1); color:#ffffff; color:rgba(255, 255, 255, 0.95); } #page.fixed_header .header_mid_outer, #page.fixed_header .header_bot_outer { background-color:rgba(255, 255, 255, 0.95); } #navigation ul, #navigation > li.menu-item-mega > div.menu-item-mega-container { -webkit-box-shadow:0 5px 15px 0 rgba(255, 255, 255, 0.02); -moz-box-shadow:0 5px 15px 0 rgba(255, 255, 255, 0.02); box-shadow:0 5px 15px 0 rgba(255, 255, 255, 0.02); } /* Finish Header Custom Rules */ /***************** Finish Header Color Scheme Rules ******************/ /***************** Start Header Top Color Scheme Rules ******************/ /* Start Header Top Content Color */ .header_top, .header_top_outer .meta_wrap, .header_top_inner .social_wrap a { color:#979ca4; color:rgba(151, 156, 164, 1); } /* Finish Header Top Content Color */ /* Start Header Top Primary Color */ .header_top a, .header_top .color_2, .header_top_outer nav > div > ul > li a, .header_top_outer .meta_wrap a, .header_top h1, .header_top h2, .header_top h3, .header_top h4, .header_top h5, .header_top h6, .header_top h1 a, .header_top h2 a, .header_top h3 a, .header_top h4 a, .header_top h5 a, .header_top h6 a, .header_top h1 a:hover, .header_top h2 a:hover, .header_top h3 a:hover, .header_top h4 a:hover, .header_top h5 a:hover, .header_top h6 a:hover, .header_top .search_bar_wrap button[type=submit][class^="cmsms-icon-"], .header_top .search_bar_wrap button[type=submit][class*=" cmsms-icon-"] { color:#979ca4; color:rgba(151, 156, 164, 1); } @media only screen and (max-width: 1024px) { html #page #header .header_top .header_top_outer .header_top_inner .header_top_right .nav_wrap nav #top_line_nav li > a { color:#979ca4; color:rgba(151, 156, 164, 1); } } .header_top .cmsms_button, .header_top .button:hover, .header_top_outer nav > div > ul > li > a > span.cmsms_count, .header_top .button { background-color:#979ca4; background-color:rgba(151, 156, 164, 1); } .header_top input[type=text]:focus, .header_top input[type=number]:focus, .header_top input[type=email]:focus, .header_top input[type=password]:focus, .header_top textarea:focus { border-color:#979ca4; border-color:rgba(151, 156, 164, 1); } /* Finish Header Top Primary Color */ /* Start Header Top Rollover Color */ .header_top a:hover, .header_top_outer nav > div > ul > li:hover > a, .header_top_outer nav > div > ul > li.current-menu-item > a, .header_top_outer nav > div > ul > li.current-menu-ancestor > a, .header_top_outer .meta_wrap a:hover, .header_top_inner .social_wrap a:hover { color:#c8ccce; color:rgba(200, 204, 206, 1); } @media only screen and (max-width: 1024px) { html #page #header .header_top .header_top_outer .header_top_inner .header_top_right .nav_wrap nav #top_line_nav li > a:hover, html #page #header .header_top .header_top_outer .header_top_inner .header_top_right .nav_wrap nav #top_line_nav li.current-menu-item > a { color:#c8ccce; color:rgba(200, 204, 206, 1); } } .header_top_but .cmsms_top_arrow, .header_top_but .cmsms_bot_arrow { background-color:#c8ccce; background-color:rgba(200, 204, 206, 1); } .header_top_but .cmsms_top_arrow:before, .header_top_but .cmsms_top_arrow:after, .header_top_but .cmsms_top_arrow span:before, .header_top_but .cmsms_top_arrow span:after, .header_top_but .cmsms_bot_arrow:before, .header_top_but .cmsms_bot_arrow:after, .header_top_but .cmsms_bot_arrow span:before, .header_top_but .cmsms_bot_arrow span:after { border-color:#c8ccce; border-color:rgba(200, 204, 206, 1); } /* Finish Header Top Rollover Color */ /* Start Header Top Background Color */ .header_top_outer nav > div > ul > li > a > span.cmsms_count, .header_top .cmsms_button, .header_top .cmsms_button:hover { color:#ffffff; color:rgba(255, 255, 255, 1); } .header_top, .header_top input[type=text]:focus, .header_top input[type=number]:focus, .header_top input[type=email]:focus, .header_top input[type=password]:focus, .header_top textarea:focus, .header_top_outer { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } /* Finish Header Top Background Color */ /* Start Header Top Borders Color */ .header_top input[type=text], .header_top input[type=number], .header_top input[type=email], .header_top input[type=password], .header_top input[type=submit], .header_top button, .header_top textarea, .header_top select, .header_top option, .header_top .search_bar_wrap { border-color:#eaedf0; border-color:rgba(234, 237, 240, 1); } .header_top hr, .header_top .cmsms_divider { border-bottom-color:#eaedf0; border-bottom-color:rgba(234, 237, 240, 1); } @media only screen and (max-width: 1024px) { html #page #header .header_top .header_top_outer .header_top_inner .header_top_left, html #page #header .header_top .header_top_outer .header_top_inner .header_top_right { border-bottom-color:#eaedf0; border-bottom-color:rgba(234, 237, 240, 1); } html #page #header .header_top .header_top_outer .header_top_inner .header_top_right .nav_wrap nav #top_line_nav li > a { border-top-color:#eaedf0; border-top-color:rgba(234, 237, 240, 1); } } /* Finish Header Top Borders Color */ /* Start Header Top Dropdown Link Color */ .header_top_outer nav > div > ul > li a, .header_top_outer nav > div > ul > li ul li > a, .header_top .button, .header_top .button:hover, html #page #header .header_top .header_top_outer .header_top_inner .header_top_right .nav_wrap .responsive_top_nav:hover, html #page #header .header_top .header_top_outer .header_top_inner .header_top_right .nav_wrap .responsive_top_nav.active { color:#979ca4; color:rgba(151, 156, 164, 1); } html #page #header .header_top .header_top_outer .header_top_inner .header_top_right .nav_wrap .responsive_top_nav { background-color:#979ca4; background-color:rgba(151, 156, 164, 1); } /* Finish Header Top Dropdown Link Color */ /* Start Header Top Dropdown Rollover Color */ .header_top_outer nav > div > ul > li ul li:hover > a, .header_top_outer nav > div > ul > li ul li.current-menu-item > a, .header_top_outer nav > div > ul > li ul li.current-menu-ancestor > a, html #page #header .header_top .header_top_outer .header_top_inner .header_top_right .nav_wrap .responsive_top_nav { color:#58cf90; color:rgba(88, 207, 144, 1); } /* Finish Header Top Dropdown Rollover Color */ /* Start Header Top Dropdown Background Color */ .header_top input[type=text], .header_top input[type=number], .header_top input[type=email], .header_top input[type=password], .header_top input[type=submit], .header_top button, .header_top textarea, .header_top select, .header_top option, .header_top_outer nav > div > ul > li ul, .header_top .search_bar_wrap, .header_top .search_bar_wrap input[type=text], .header_top .search_bar_wrap input[type=text]:focus { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } /* Finish Header Top Dropdown Background Color */ /* Start Header Top Dropdown Border Color */ .header_top_outer nav > div > ul > li.menu-item-has-children > a:before { border-bottom-color:#e5e8ec; border-bottom-color:rgba(229, 232, 236, 1); } html #page #header .header_top .header_top_outer .header_top_inner .header_top_right .nav_wrap .responsive_top_nav:hover, html #page #header .header_top .header_top_outer .header_top_inner .header_top_right .nav_wrap .responsive_top_nav.active { background-color:#e5e8ec; background-color:rgba(229, 232, 236, 1); } /* Finish Header Top Dropdown Border Color */ /* Start Header Top Custom Rules */ .header_top ::selection { background:#979ca4; background:rgba(151, 156, 164, 1); color:#ffffff; color:rgba(255, 255, 255, 1); } .header_top ::-moz-selection { background:#979ca4; background:rgba(151, 156, 164, 1); color:#ffffff; color:rgba(255, 255, 255, 1); } .header_top_outer { -webkit-box-shadow:inset 0 -1px 0 0 rgba(234, 237, 240, 1); -moz-box-shadow:inset 0 -1px 0 0 rgba(234, 237, 240, 1); box-shadow:inset 0 -1px 0 0 rgba(234, 237, 240, 1); } .header_top_outer nav > div > ul > li ul { -webkit-box-shadow:0 0 2px 0 rgba(234, 237, 240, 0.1); -moz-box-shadow:0 0 2px 0 rgba(234, 237, 240, 0.1); box-shadow:0 0 2px 0 rgba(234, 237, 240, 0.1); } /* Finish Header Top Custom Rules */ /***************** Finish Header Top Color Scheme Rules ******************/
wp-content/themes/econature/css/styles/econature_colors_secondary.css
/* Start Main Content Font Color */ .cmsms_products .product .product_outer .product_inner .cmsms_product_cat, .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a, .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price del, .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a, .cmsms_single_product .cmsms_product_right_column .price del, #order_review .shop_table td.product-name, #order_review .shop_table td.product-name *, .shop_table.order_details td.product-name, .shop_table.order_details td.product-name *, .cmsms_dynamic_cart .cmsms_dynamic_cart_button, .widget_shopping_cart_content .cart_list li .quantity, .product_list_widget li del .amount, .quantity .text { color:#979ca4; color:rgba(151, 156, 164, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a:hover, .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price, .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover:before, .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading, .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading:before, .cmsms_single_product .cmsms_product_right_column .price, .required, .shop_table .product-name a:hover, .shop_table td.product-subtotal, .cart_totals table tr.cart-subtotal td, .cart_totals table tr.order-total td, #order_review .shop_table tr.order-total th, #order_review .shop_table tr.order-total td, .shop_table.order_details td.product-name a:hover, .shop_table.order_details tfoot tr:last-child th, .shop_table.order_details tfoot tr:last-child td, .cmsms_dynamic_cart .cmsms_dynamic_cart_button:hover, .cmsms_dynamic_cart:hover .cmsms_dynamic_cart_button, .widget_shopping_cart_content .cart_list li a:hover, .widget_shopping_cart_content .cart_list li .quantity .amount, .widget_shopping_cart_content .total .amount, .product_list_widget li > a:hover, .product_list_widget li .amount { color:#58cf90; color:rgba(88, 207, 144, 1); } .onsale { background-color:#58cf90; background-color:rgba(88, 207, 144, 1); } /* Finish Primary Color */ /* Start Highlight Color */ .input-checkbox + label:after, .input-radio + label:after, .shipping_method + label:after { background-color:#c8ccce; background-color:rgba(200, 204, 206, 1); } /* Finish Highlight Color */ /* Start Headings Color */ .cmsms_single_product .cmsms_product_right_column .product_meta strong, .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, .shop_table thead th, .shop_table td.product-remove .remove, .shop_table td.product-name, .shop_table td.product-name a, .cart_totals table tr.cart-subtotal th, .cart_totals table tr.order-total th, #order_review .shop_table tr.cart-subtotal th, #order_review .shop_table tr.cart-subtotal td, ul.order_details li > span, .shop_table.order_details tfoot tr:first-child th, .shop_table.order_details tfoot tr:first-child td, .widget_shopping_cart_content .cart_list li a, .widget_shopping_cart_content .total strong, .cmsms_added_product_info .cmsms_added_product_info_text, .product_list_widget li > a { color:#4c5562; color:rgba(76, 85, 98, 1); } .out-of-stock { background-color:#4c5562; background-color:rgba(76, 85, 98, 1); } .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb:hover { border-color:#4c5562; border-color:rgba(76, 85, 98, 1); } /* Finish Headings Color */ /* Start Main Background Color */ .onsale, .out-of-stock { color:#ffffff; color:rgba(255, 255, 255, 1); } .quantity .text, .woocommerce-message, .woocommerce-info, #order_review #payment, .cmsms_dynamic_cart .widget_shopping_cart_content, .cmsms_added_product_info, .widget_price_filter .price_slider_wrapper .price_slider { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } .cmsms_dynamic_cart .widget_shopping_cart_content:after, .cmsms_added_product_info:after { border-left-color:#ffffff; border-left-color:rgba(255, 255, 255, 1); } /* Finish Main Background Color */ /* Start Alternate Background Color */ .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, .shop_table thead th, .shop_table td.product-remove .remove, .shop_table td.actions, .cart_totals table tr.cart-subtotal th, .cart_totals table tr.cart-subtotal td, .cart_totals table tr.order-total th, .cart_totals table tr.order-total td, .input-checkbox + label:before, .input-radio + label:before, .shipping_method + label:before, #order_review .shop_table tr.cart-subtotal th, #order_review .shop_table tr.cart-subtotal td, #order_review .shop_table tr.order-total th, #order_review .shop_table tr.order-total td, #order_review #payment .payment_methods .payment_box, ul.order_details li > span, .shop_table.order_details tfoot tr:first-child th, .shop_table.order_details tfoot tr:last-child th, .shop_table.order_details tfoot tr:first-child td, .shop_table.order_details tfoot tr:last-child td, .cmsms_dynamic_cart .cmsms_dynamic_cart_button, .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-range { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } #order_review #payment .payment_methods .payment_box:after { border-bottom-color:#ffffff; border-bottom-color:rgba(255, 255, 255, 1); } /* Finish Alternate Background Color */ /* Start Borders Color */ .cmsms_star_rating .cmsms_star, .comment-form-rating .stars > span, .comment-form-rating .stars > span a:hover, .comment-form-rating .stars > span a.active, .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:before { color:#e5e8ec; color:rgba(229, 232, 236, 1); } .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle { background-color:#e5e8ec; background-color:rgba(229, 232, 236, 1); } .cmsms_products .product .product_outer .product_inner, .cmsms_products .product .product_outer .product_inner .cmsms_product_footer, .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button + .cmsms_details_button, .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.added_to_cart + .cmsms_details_button, .cmsms_single_product .cmsms_product_images .cmsms_product_image, .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb, .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, .cmsms_single_product .cmsms_woo_tabs .shop_attributes td, .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist, .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist .comment .comment_container .comment-text, .woocommerce-message, .woocommerce-info, .shop_table, .shop_table th, .shop_table td, .shop_table td.product-remove .remove, .shop_table td.product-thumbnail img, .cart_totals table, .cart_totals table tr th, .cart_totals table tr td, .input-checkbox + label:before, .input-radio + label:before, .shipping_method + label:before, #order_review #payment, #order_review #payment .payment_methods .payment_box, ul.order_details, ul.order_details li, ul.order_details li > span, .cmsms_dynamic_cart .cmsms_dynamic_cart_button, .cmsms_dynamic_cart .widget_shopping_cart_content, .cmsms_added_product_info, .widget_shopping_cart_content .cart_list li, .cmsms_added_product_info .cmsms_added_product_info_img, .widget_price_filter .price_slider_wrapper .price_slider, .product_list_widget li, .product_list_widget li img, .quantity .text { border-color:#e5e8ec; border-color:rgba(229, 232, 236, 1); } #order_review #payment .payment_methods .payment_box:before { border-bottom-color:#e5e8ec; border-bottom-color:rgba(229, 232, 236, 1); } .cmsms_dynamic_cart .widget_shopping_cart_content:before, .cmsms_added_product_info:before { border-left-color:#e5e8ec; border-left-color:rgba(229, 232, 236, 1); } /* Finish Borders Color */ /***************** Finish Default WooCommerce Color Scheme Rules ******************/ /***************** Start Default Events Color Scheme Rules ******************/ /* Start Main Content Font Color */ #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6.tribe-events-cost, .recurringinfo, .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number .tribe-countdown-under, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events * { color:#979ca4; color:rgba(151, 156, 164, 1); } #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow { background-color:#979ca4; background-color:rgba(151, 156, 164, 1); } #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:before, #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:after { border-color:#979ca4; border-color:rgba(151, 156, 164, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6, #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a:hover, #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a:hover, .tribe-events-tooltip .entry-title, #tribe-events-footer > a:hover, #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .cmsms_events_list_event_header .tribe-events-event-cost, #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .time-details, .recurringinfo a:hover, #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a:hover, ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder:hover, .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a:hover, .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a:hover, #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap .tribe-events-event-details .tribe-events-event-meta .time-details, #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile .tribe-events-event-body .time-details, .tribe-events-countdown-widget .tribe-countdown-text a:hover, .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a:hover, .widget .vevent .entry-title a:hover, .widget.tribe-events-list-widget .tribe-event-title a:hover, .widget .vevent .cmsms_widget_event_info, .widget.tribe-this-week-events-widget .duration, .widget .tribe-events-widget-link a:hover, .widget.tribe-events-list-widget .tribe-event-duration, .widget.tribe-this-week-events-widget .tribe-events-viewmore a:hover, .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a:hover, .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events:hover *, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a:hover { color:#58cf90; color:rgba(88, 207, 144, 1); } #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button { border-color:#58cf90; border-color:rgba(88, 207, 144, 1); } .tribe-bar-views-open label.button, #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a:hover, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div .tribe-mini-calendar-day-link:before, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present, .widget .list-date span.list-daynumber, .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:hover { background-color:#58cf90; background-color:rgba(88, 207, 144, 1); } @media only screen and (max-width: 767px) { #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth:hover * { color:#58cf90; color:rgba(88, 207, 144, 1); } #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present { background-color:#58cf90; background-color:rgba(88, 207, 144, 1); } } /* Finish Primary Color */ /* Start Highlight Color */ @media only screen and (max-width: 767px) { #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events:before { background-color:#c8ccce; background-color:rgba(200, 204, 206, 1); } } /* Finish Highlight Color */ /* Start Headings Color */ #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a, #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item .cmsms_event_meta_info_item_title, #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item dt, #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-date-filter .label-tribe-bar-date, #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-search-filter label, #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-geoloc-filter label, #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-submit label, #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a, .tribe-events-tooltip .tribe-events-event-body .tribe-event-duration, #tribe-events-footer > a, #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, .recurringinfo a, #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details .author, #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a, #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, .tribe-events-notices, ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a, .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title a, .tribe-events-countdown-widget .tribe-countdown-text a, .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number, .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-colon, .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name, .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a, .widget.tribe-events-list-widget .tribe-event-title, .widget.tribe-events-list-widget .tribe-event-title a, .widget .vevent .entry-title, .widget .vevent .entry-title a, .widget .tribe-events-widget-link a, .widget.tribe-this-week-events-widget .tribe-events-viewmore a, .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a, .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a:hover, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a { color:#4c5562; color:rgba(76, 85, 98, 1); } .tribe-events-sub-nav li a span, #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today, .widget .list-date span.list-dayname { background-color:#4c5562; background-color:rgba(76, 85, 98, 1); } .tribe-events-sub-nav li a span:before, .tribe-events-sub-nav li a span:after { border-color:#4c5562; border-color:rgba(76, 85, 98, 1); } @media only screen and (max-width: 767px) { #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth * { color:#4c5562; color:rgba(76, 85, 98, 1); } #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active { background-color:#4c5562; background-color:rgba(76, 85, 98, 1); } } /* Finish Headings Color */ /* Start Main Background Color */ #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button, #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a, #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a:hover, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child a, .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present *, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present:hover *, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today *, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today:hover *, .widget .list-date span.list-dayname, .widget .list-date span.list-daynumber { color:#ffffff; color:rgba(255, 255, 255, 1); } #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow, #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow, #tribe-events-content.tribe-events-month table.tribe-events-calendar, .tribe-events-tooltip, #tribe-events-content.tribe-events-week-grid .tribe-events-grid, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present div .tribe-mini-calendar-day-link:before, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today div .tribe-mini-calendar-day-link:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:before, #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:before, #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:after, #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:after, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:before, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:before, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:after { border-color:#ffffff; border-color:rgba(255, 255, 255, 1); } .tribe-events-tooltip:after { border-top-color:#ffffff; border-top-color:rgba(255, 255, 255, 1); } .recurringinfo .recurring-info-tooltip:after { border-bottom-color:#ffffff; border-bottom-color:rgba(255, 255, 255, 1); } #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:after { border-right-color:#ffffff; border-right-color:rgba(255, 255, 255, 1); } #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:after { border-left-color:#ffffff; border-left-color:rgba(255, 255, 255, 1); } @media only screen and (max-width: 767px) { #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active *, #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present * { color:#ffffff; color:rgba(255, 255, 255, 1); } #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events.mobile-active:before, #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } /* Finish Main Background Color */ /* Start Alternate Background Color */ #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-event-"]:hover, #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, .tribe-events-notices, ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-today, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-othermonth { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } @media only screen and (max-width: 767px) { #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } /* Finish Alternate Background Color */ /* Start Borders Color */ .bd_font_color { color:#e5e8ec; color:rgba(229, 232, 236, 1); } #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, .widget.tribe-this-week-events-widget .tribe-this-week-widget-day, #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, #tribe-events-content.tribe-events-single .cmsms_single_event_header, #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item, .tribe-bar-filters, .tribe-events-sub-nav li a, #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td, #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], .tribe-events-tooltip, #tribe-events-content.tribe-events-list .vevent, .tribe-events-notices, #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td .tribe-events-viewmore, .tribe-events-venue .cmsms_events_venue_header, .tribe-events-organizer .cmsms_events_organizer_header, .tribe-events-photo #tribe-events-header, #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, #tribe-events-content.tribe-events-week-grid .tribe-events-grid, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .slimScrollDiv, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-content-wrap .column, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-grid-outer-wrap .tribe-week-grid-inner-wrap .tribe-week-grid-block div, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile, .widget .vevent, .tribe-events-list-widget ol li, .tribe-events-adv-list-widget ol li, .tribe-events-sub-nav li a:hover span:before, .tribe-events-sub-nav li a:hover span:after, #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th, .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar td { border-color:#e5e8ec; border-color:rgba(229, 232, 236, 1); } .tribe-events-sub-nav li a:hover span { background-color:#e5e8ec; background-color:rgba(229, 232, 236, 1); } .tribe-events-tooltip:before { border-top-color:#e5e8ec; border-top-color:rgba(229, 232, 236, 1); } .recurringinfo .recurring-info-tooltip:before { border-bottom-color:#e5e8ec; border-bottom-color:rgba(229, 232, 236, 1); } #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:before { border-right-color:#e5e8ec; border-right-color:rgba(229, 232, 236, 1); } #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:before { border-left-color:#e5e8ec; border-left-color:rgba(229, 232, 236, 1); } /* Finish Borders Color */ /***************** Finish Default Events Color Scheme Rules ******************/ /***************** Start Footer WooCommerce Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_cat, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price del, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a, html .cmsms_color_scheme_footer .cmsms_single_product .cmsms_product_right_column .price del, html .cmsms_color_scheme_footer #order_review .shop_table td.product-name, html .cmsms_color_scheme_footer #order_review .shop_table td.product-name *, html .cmsms_color_scheme_footer .shop_table.order_details td.product-name, html .cmsms_color_scheme_footer .shop_table.order_details td.product-name *, html .cmsms_color_scheme_footer .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_footer .widget_shopping_cart_content .cart_list li .quantity, html .cmsms_color_scheme_footer .product_list_widget li del .amount, html .cmsms_color_scheme_footer .quantity .text { color:#979ca4; color:rgba(151, 156, 164, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a:hover, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover:before, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading:before, html .cmsms_color_scheme_footer .cmsms_single_product .cmsms_product_right_column .price, html .cmsms_color_scheme_footer .required, html .cmsms_color_scheme_footer .shop_table .product-name a:hover, html .cmsms_color_scheme_footer .shop_table td.product-subtotal, html .cmsms_color_scheme_footer .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_footer .cart_totals table tr.order-total td, html .cmsms_color_scheme_footer #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_footer #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_footer .shop_table.order_details td.product-name a:hover, html .cmsms_color_scheme_footer .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_footer .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_footer .cmsms_dynamic_cart .cmsms_dynamic_cart_button:hover, html .cmsms_color_scheme_footer .cmsms_dynamic_cart:hover .cmsms_dynamic_cart_button, html .cmsms_color_scheme_footer .widget_shopping_cart_content .cart_list li a:hover, html .cmsms_color_scheme_footer .widget_shopping_cart_content .cart_list li .quantity .amount, html .cmsms_color_scheme_footer .widget_shopping_cart_content .total .amount, html .cmsms_color_scheme_footer .product_list_widget li > a:hover, html .cmsms_color_scheme_footer .product_list_widget li .amount { color:#c8ccce; color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_footer .onsale { background-color:#c8ccce; background-color:rgba(200, 204, 206, 1); } /* Finish Primary Color */ /* Start Highlight Color */ html .cmsms_color_scheme_footer .input-checkbox + label:after, html .cmsms_color_scheme_footer .input-radio + label:after, html .cmsms_color_scheme_footer .shipping_method + label:after { background-color:#58cf90; background-color:rgba(88, 207, 144, 1); } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_footer .cmsms_single_product .cmsms_product_right_column .product_meta strong, html .cmsms_color_scheme_footer .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_footer .shop_table thead th, html .cmsms_color_scheme_footer .shop_table td.product-remove .remove, html .cmsms_color_scheme_footer .shop_table td.product-name, html .cmsms_color_scheme_footer .shop_table td.product-name a, html .cmsms_color_scheme_footer .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_footer .cart_totals table tr.order-total th, html .cmsms_color_scheme_footer #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_footer #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_footer ul.order_details li > span, html .cmsms_color_scheme_footer .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_footer .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_footer .widget_shopping_cart_content .cart_list li a, html .cmsms_color_scheme_footer .widget_shopping_cart_content .total strong, html .cmsms_color_scheme_footer .cmsms_added_product_info .cmsms_added_product_info_text, html .cmsms_color_scheme_footer .product_list_widget li > a { color:#4c5562; color:rgba(76, 85, 98, 1); } html .cmsms_color_scheme_footer .out-of-stock { background-color:#4c5562; background-color:rgba(76, 85, 98, 1); } html .cmsms_color_scheme_footer .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb:hover { border-color:#4c5562; border-color:rgba(76, 85, 98, 1); } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_footer .onsale, html .cmsms_color_scheme_footer .out-of-stock { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_footer .quantity .text, html .cmsms_color_scheme_footer .woocommerce-message, html .cmsms_color_scheme_footer .woocommerce-info, html .cmsms_color_scheme_footer #order_review #payment, html .cmsms_color_scheme_footer .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_footer .cmsms_added_product_info, html .cmsms_color_scheme_footer .widget_price_filter .price_slider_wrapper .price_slider { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_footer .cmsms_dynamic_cart .widget_shopping_cart_content:after, html .cmsms_color_scheme_footer .cmsms_added_product_info:after { border-left-color:#ffffff; border-left-color:rgba(255, 255, 255, 1); } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_footer .shop_table thead th, html .cmsms_color_scheme_footer .shop_table td.product-remove .remove, html .cmsms_color_scheme_footer .shop_table td.actions, html .cmsms_color_scheme_footer .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_footer .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_footer .cart_totals table tr.order-total th, html .cmsms_color_scheme_footer .cart_totals table tr.order-total td, html .cmsms_color_scheme_footer .input-checkbox + label:before, html .cmsms_color_scheme_footer .input-radio + label:before, html .cmsms_color_scheme_footer .shipping_method + label:before, html .cmsms_color_scheme_footer #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_footer #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_footer #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_footer #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_footer #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_footer ul.order_details li > span, html .cmsms_color_scheme_footer .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_footer .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_footer .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_footer .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_footer .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_footer .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-range { background-color:#f2f2f2; background-color:rgba(242, 242, 242, 1); } html .cmsms_color_scheme_footer #order_review #payment .payment_methods .payment_box:after { border-bottom-color:#f2f2f2; border-bottom-color:rgba(242, 242, 242, 1); } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_footer .cmsms_star_rating .cmsms_star, html .cmsms_color_scheme_footer .comment-form-rating .stars > span, html .cmsms_color_scheme_footer .comment-form-rating .stars > span a:hover, html .cmsms_color_scheme_footer .comment-form-rating .stars > span a.active, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:before { color:#e5e8ec; color:rgba(229, 232, 236, 1); } html .cmsms_color_scheme_footer .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle { background-color:#e5e8ec; background-color:rgba(229, 232, 236, 1); } html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_footer, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button + .cmsms_details_button, html .cmsms_color_scheme_footer .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.added_to_cart + .cmsms_details_button, html .cmsms_color_scheme_footer .cmsms_single_product .cmsms_product_images .cmsms_product_image, html .cmsms_color_scheme_footer .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb, html .cmsms_color_scheme_footer .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_footer .cmsms_single_product .cmsms_woo_tabs .shop_attributes td, html .cmsms_color_scheme_footer .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist, html .cmsms_color_scheme_footer .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist .comment .comment_container .comment-text, html .cmsms_color_scheme_footer .woocommerce-message, html .cmsms_color_scheme_footer .woocommerce-info, html .cmsms_color_scheme_footer .shop_table, html .cmsms_color_scheme_footer .shop_table th, html .cmsms_color_scheme_footer .shop_table td, html .cmsms_color_scheme_footer .shop_table td.product-remove .remove, html .cmsms_color_scheme_footer .shop_table td.product-thumbnail img, html .cmsms_color_scheme_footer .cart_totals table, html .cmsms_color_scheme_footer .cart_totals table tr th, html .cmsms_color_scheme_footer .cart_totals table tr td, html .cmsms_color_scheme_footer .input-checkbox + label:before, html .cmsms_color_scheme_footer .input-radio + label:before, html .cmsms_color_scheme_footer .shipping_method + label:before, html .cmsms_color_scheme_footer #order_review #payment, html .cmsms_color_scheme_footer #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_footer ul.order_details, html .cmsms_color_scheme_footer ul.order_details li, html .cmsms_color_scheme_footer ul.order_details li > span, html .cmsms_color_scheme_footer .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_footer .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_footer .cmsms_added_product_info, html .cmsms_color_scheme_footer .widget_shopping_cart_content .cart_list li, html .cmsms_color_scheme_footer .cmsms_added_product_info .cmsms_added_product_info_img, html .cmsms_color_scheme_footer .widget_price_filter .price_slider_wrapper .price_slider, html .cmsms_color_scheme_footer .product_list_widget li, html .cmsms_color_scheme_footer .product_list_widget li img, html .cmsms_color_scheme_footer .quantity .text { border-color:#e5e8ec; border-color:rgba(229, 232, 236, 1); } html .cmsms_color_scheme_footer #order_review #payment .payment_methods .payment_box:before { border-bottom-color:#e5e8ec; border-bottom-color:rgba(229, 232, 236, 1); } html .cmsms_color_scheme_footer .cmsms_dynamic_cart .widget_shopping_cart_content:before, html .cmsms_color_scheme_footer .cmsms_added_product_info:before { border-left-color:#e5e8ec; border-left-color:rgba(229, 232, 236, 1); } /* Finish Borders Color */ /***************** Finish Footer WooCommerce Color Scheme Rules ******************/ /***************** Start Footer Events Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6.tribe-events-cost, html .cmsms_color_scheme_footer .recurringinfo, html .cmsms_color_scheme_footer .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number .tribe-countdown-under, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events * { color:#979ca4; color:rgba(151, 156, 164, 1); } html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow { background-color:#979ca4; background-color:rgba(151, 156, 164, 1); } html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:after { border-color:#979ca4; border-color:rgba(151, 156, 164, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a:hover, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_footer .tribe-events-tooltip .entry-title, html .cmsms_color_scheme_footer #tribe-events-footer > a:hover, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .cmsms_events_list_event_header .tribe-events-event-cost, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .time-details, html .cmsms_color_scheme_footer .recurringinfo a:hover, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a:hover, html .cmsms_color_scheme_footer ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder:hover, html .cmsms_color_scheme_footer .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a:hover, html .cmsms_color_scheme_footer .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a:hover, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap .tribe-events-event-details .tribe-events-event-meta .time-details, html .cmsms_color_scheme_footer #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile .tribe-events-event-body .time-details, html .cmsms_color_scheme_footer .tribe-events-countdown-widget .tribe-countdown-text a:hover, html .cmsms_color_scheme_footer .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a:hover, html .cmsms_color_scheme_footer .widget .vevent .entry-title a:hover, html .cmsms_color_scheme_footer .widget.tribe-events-list-widget .tribe-event-title a:hover, html .cmsms_color_scheme_footer .widget .vevent .cmsms_widget_event_info, html .cmsms_color_scheme_footer .widget.tribe-this-week-events-widget .duration, html .cmsms_color_scheme_footer .widget .tribe-events-widget-link a:hover, html .cmsms_color_scheme_footer .widget.tribe-events-list-widget .tribe-event-duration, html .cmsms_color_scheme_footer .widget.tribe-this-week-events-widget .tribe-events-viewmore a:hover, html .cmsms_color_scheme_footer .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a:hover, html .cmsms_color_scheme_footer .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events:hover *, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a:hover { color:#c8ccce; color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button { border-color:#c8ccce; border-color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_footer .tribe-bar-views-open label.button, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a:hover, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present, html .cmsms_color_scheme_footer .widget .list-date span.list-daynumber, html .cmsms_color_scheme_footer .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:hover { background-color:#c8ccce; background-color:rgba(200, 204, 206, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_footer #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth:hover * { color:#c8ccce; color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_footer #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present { background-color:#c8ccce; background-color:rgba(200, 204, 206, 1); } } /* Finish Primary Color */ /* Start Highlight Color */ @media only screen and (max-width: 767px) { html .cmsms_color_scheme_footer #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events:before { background-color:#58cf90; background-color:rgba(88, 207, 144, 1); } } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item .cmsms_event_meta_info_item_title, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item dt, html .cmsms_color_scheme_footer #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-date-filter .label-tribe-bar-date, html .cmsms_color_scheme_footer #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-search-filter label, html .cmsms_color_scheme_footer #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-geoloc-filter label, html .cmsms_color_scheme_footer #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-submit label, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_footer .tribe-events-tooltip .tribe-events-event-body .tribe-event-duration, html .cmsms_color_scheme_footer #tribe-events-footer > a, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_footer #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_footer #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_footer .recurringinfo a, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details .author, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_footer .tribe-events-notices, html .cmsms_color_scheme_footer ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_footer .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a, html .cmsms_color_scheme_footer .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title a, html .cmsms_color_scheme_footer .tribe-events-countdown-widget .tribe-countdown-text a, html .cmsms_color_scheme_footer .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number, html .cmsms_color_scheme_footer .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-colon, html .cmsms_color_scheme_footer .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name, html .cmsms_color_scheme_footer .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a, html .cmsms_color_scheme_footer .widget.tribe-events-list-widget .tribe-event-title, html .cmsms_color_scheme_footer .widget.tribe-events-list-widget .tribe-event-title a, html .cmsms_color_scheme_footer .widget .vevent .entry-title, html .cmsms_color_scheme_footer .widget .vevent .entry-title a, html .cmsms_color_scheme_footer .widget .tribe-events-widget-link a, html .cmsms_color_scheme_footer .widget.tribe-this-week-events-widget .tribe-events-viewmore a, html .cmsms_color_scheme_footer .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a, html .cmsms_color_scheme_footer .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a:hover, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a { color:#4c5562; color:rgba(76, 85, 98, 1); } html .cmsms_color_scheme_footer .tribe-events-sub-nav li a span, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today, html .cmsms_color_scheme_footer .widget .list-date span.list-dayname { background-color:#4c5562; background-color:rgba(76, 85, 98, 1); } html .cmsms_color_scheme_footer .tribe-events-sub-nav li a span:before, html .cmsms_color_scheme_footer .tribe-events-sub-nav li a span:after { border-color:#4c5562; border-color:rgba(76, 85, 98, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_footer #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth * { color:#4c5562; color:rgba(76, 85, 98, 1); } html .cmsms_color_scheme_footer #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active { background-color:#4c5562; background-color:rgba(76, 85, 98, 1); } } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child a, html .cmsms_color_scheme_footer .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present *, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present:hover *, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today *, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today:hover *, html .cmsms_color_scheme_footer .widget .list-date span.list-dayname, html .cmsms_color_scheme_footer .widget .list-date span.list-daynumber { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar, html .cmsms_color_scheme_footer .tribe-events-tooltip, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today div .tribe-mini-calendar-day-link:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:before, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:after, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:after, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:before, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:before, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:after { border-color:#ffffff; border-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_footer .tribe-events-tooltip:after { border-top-color:#ffffff; border-top-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_footer .recurringinfo .recurring-info-tooltip:after { border-bottom-color:#ffffff; border-bottom-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:after { border-right-color:#ffffff; border-right-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:after { border-left-color:#ffffff; border-left-color:rgba(255, 255, 255, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_footer #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active *, html .cmsms_color_scheme_footer #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present * { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_footer #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events.mobile-active:before, html .cmsms_color_scheme_footer #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-event-"]:hover, html .cmsms_color_scheme_footer #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_footer #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_footer .tribe-events-notices, html .cmsms_color_scheme_footer ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-today, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-othermonth { background-color:#f2f2f2; background-color:rgba(242, 242, 242, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_footer #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth { background-color:#f2f2f2; background-color:rgba(242, 242, 242, 1); } } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_footer .bd_font_color { color:#e5e8ec; color:rgba(229, 232, 236, 1); } html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_footer .widget.tribe-this-week-events-widget .tribe-this-week-widget-day, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_footer #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-single .cmsms_single_event_header, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item, html .cmsms_color_scheme_footer .tribe-bar-filters, html .cmsms_color_scheme_footer .tribe-events-sub-nav li a, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_footer .tribe-events-tooltip, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-list .vevent, html .cmsms_color_scheme_footer .tribe-events-notices, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td .tribe-events-viewmore, html .cmsms_color_scheme_footer .tribe-events-venue .cmsms_events_venue_header, html .cmsms_color_scheme_footer .tribe-events-organizer .cmsms_events_organizer_header, html .cmsms_color_scheme_footer .tribe-events-photo #tribe-events-header, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .slimScrollDiv, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-content-wrap .column, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-grid-outer-wrap .tribe-week-grid-inner-wrap .tribe-week-grid-block div, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_footer #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile, html .cmsms_color_scheme_footer .widget .vevent, html .cmsms_color_scheme_footer .tribe-events-list-widget ol li, html .cmsms_color_scheme_footer .tribe-events-adv-list-widget ol li, html .cmsms_color_scheme_footer .tribe-events-sub-nav li a:hover span:before, html .cmsms_color_scheme_footer .tribe-events-sub-nav li a:hover span:after, html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th, html .cmsms_color_scheme_footer .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar td { border-color:#e5e8ec; border-color:rgba(229, 232, 236, 1); } html .cmsms_color_scheme_footer .tribe-events-sub-nav li a:hover span { background-color:#e5e8ec; background-color:rgba(229, 232, 236, 1); } html .cmsms_color_scheme_footer .tribe-events-tooltip:before { border-top-color:#e5e8ec; border-top-color:rgba(229, 232, 236, 1); } html .cmsms_color_scheme_footer .recurringinfo .recurring-info-tooltip:before { border-bottom-color:#e5e8ec; border-bottom-color:rgba(229, 232, 236, 1); } html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:before { border-right-color:#e5e8ec; border-right-color:rgba(229, 232, 236, 1); } html .cmsms_color_scheme_footer #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:before { border-left-color:#e5e8ec; border-left-color:rgba(229, 232, 236, 1); } /* Finish Borders Color */ /***************** Finish Footer Events Color Scheme Rules ******************/ /***************** Start Custom 1 WooCommerce Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_cat, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price del, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a, html .cmsms_color_scheme_first .cmsms_single_product .cmsms_product_right_column .price del, html .cmsms_color_scheme_first #order_review .shop_table td.product-name, html .cmsms_color_scheme_first #order_review .shop_table td.product-name *, html .cmsms_color_scheme_first .shop_table.order_details td.product-name, html .cmsms_color_scheme_first .shop_table.order_details td.product-name *, html .cmsms_color_scheme_first .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_first .widget_shopping_cart_content .cart_list li .quantity, html .cmsms_color_scheme_first .product_list_widget li del .amount, html .cmsms_color_scheme_first .quantity .text { color:#ffffff; color:rgba(255, 255, 255, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a:hover, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover:before, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading:before, html .cmsms_color_scheme_first .cmsms_single_product .cmsms_product_right_column .price, html .cmsms_color_scheme_first .required, html .cmsms_color_scheme_first .shop_table .product-name a:hover, html .cmsms_color_scheme_first .shop_table td.product-subtotal, html .cmsms_color_scheme_first .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_first .cart_totals table tr.order-total td, html .cmsms_color_scheme_first #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_first #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_first .shop_table.order_details td.product-name a:hover, html .cmsms_color_scheme_first .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_first .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_first .cmsms_dynamic_cart .cmsms_dynamic_cart_button:hover, html .cmsms_color_scheme_first .cmsms_dynamic_cart:hover .cmsms_dynamic_cart_button, html .cmsms_color_scheme_first .widget_shopping_cart_content .cart_list li a:hover, html .cmsms_color_scheme_first .widget_shopping_cart_content .cart_list li .quantity .amount, html .cmsms_color_scheme_first .widget_shopping_cart_content .total .amount, html .cmsms_color_scheme_first .product_list_widget li > a:hover, html .cmsms_color_scheme_first .product_list_widget li .amount { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_first .onsale { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } /* Finish Primary Color */ /* Start Highlight Color */ html .cmsms_color_scheme_first .input-checkbox + label:after, html .cmsms_color_scheme_first .input-radio + label:after, html .cmsms_color_scheme_first .shipping_method + label:after { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_first .cmsms_single_product .cmsms_product_right_column .product_meta strong, html .cmsms_color_scheme_first .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_first .shop_table thead th, html .cmsms_color_scheme_first .shop_table td.product-remove .remove, html .cmsms_color_scheme_first .shop_table td.product-name, html .cmsms_color_scheme_first .shop_table td.product-name a, html .cmsms_color_scheme_first .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_first .cart_totals table tr.order-total th, html .cmsms_color_scheme_first #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_first #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_first ul.order_details li > span, html .cmsms_color_scheme_first .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_first .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_first .widget_shopping_cart_content .cart_list li a, html .cmsms_color_scheme_first .widget_shopping_cart_content .total strong, html .cmsms_color_scheme_first .cmsms_added_product_info .cmsms_added_product_info_text, html .cmsms_color_scheme_first .product_list_widget li > a { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_first .out-of-stock { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_first .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb:hover { border-color:#ffffff; border-color:rgba(255, 255, 255, 1); } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_first .onsale, html .cmsms_color_scheme_first .out-of-stock { color:#3d3d3d; color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_first .quantity .text, html .cmsms_color_scheme_first .woocommerce-message, html .cmsms_color_scheme_first .woocommerce-info, html .cmsms_color_scheme_first #order_review #payment, html .cmsms_color_scheme_first .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_first .cmsms_added_product_info, html .cmsms_color_scheme_first .widget_price_filter .price_slider_wrapper .price_slider { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_first .cmsms_dynamic_cart .widget_shopping_cart_content:after, html .cmsms_color_scheme_first .cmsms_added_product_info:after { border-left-color:#3d3d3d; border-left-color:rgba(61, 61, 61, 1); } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_first .shop_table thead th, html .cmsms_color_scheme_first .shop_table td.product-remove .remove, html .cmsms_color_scheme_first .shop_table td.actions, html .cmsms_color_scheme_first .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_first .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_first .cart_totals table tr.order-total th, html .cmsms_color_scheme_first .cart_totals table tr.order-total td, html .cmsms_color_scheme_first .input-checkbox + label:before, html .cmsms_color_scheme_first .input-radio + label:before, html .cmsms_color_scheme_first .shipping_method + label:before, html .cmsms_color_scheme_first #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_first #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_first #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_first #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_first #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_first ul.order_details li > span, html .cmsms_color_scheme_first .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_first .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_first .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_first .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_first .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_first .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-range { background-color:#414141; background-color:rgba(65, 65, 65, 1); } html .cmsms_color_scheme_first #order_review #payment .payment_methods .payment_box:after { border-bottom-color:#414141; border-bottom-color:rgba(65, 65, 65, 1); } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_first .cmsms_star_rating .cmsms_star, html .cmsms_color_scheme_first .comment-form-rating .stars > span, html .cmsms_color_scheme_first .comment-form-rating .stars > span a:hover, html .cmsms_color_scheme_first .comment-form-rating .stars > span a.active, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:before { color:#5a5a5a; color:rgba(90, 90, 90, 0); } html .cmsms_color_scheme_first .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle { background-color:#5a5a5a; background-color:rgba(90, 90, 90, 0); } html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_footer, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button + .cmsms_details_button, html .cmsms_color_scheme_first .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.added_to_cart + .cmsms_details_button, html .cmsms_color_scheme_first .cmsms_single_product .cmsms_product_images .cmsms_product_image, html .cmsms_color_scheme_first .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb, html .cmsms_color_scheme_first .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_first .cmsms_single_product .cmsms_woo_tabs .shop_attributes td, html .cmsms_color_scheme_first .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist, html .cmsms_color_scheme_first .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist .comment .comment_container .comment-text, html .cmsms_color_scheme_first .woocommerce-message, html .cmsms_color_scheme_first .woocommerce-info, html .cmsms_color_scheme_first .shop_table, html .cmsms_color_scheme_first .shop_table th, html .cmsms_color_scheme_first .shop_table td, html .cmsms_color_scheme_first .shop_table td.product-remove .remove, html .cmsms_color_scheme_first .shop_table td.product-thumbnail img, html .cmsms_color_scheme_first .cart_totals table, html .cmsms_color_scheme_first .cart_totals table tr th, html .cmsms_color_scheme_first .cart_totals table tr td, html .cmsms_color_scheme_first .input-checkbox + label:before, html .cmsms_color_scheme_first .input-radio + label:before, html .cmsms_color_scheme_first .shipping_method + label:before, html .cmsms_color_scheme_first #order_review #payment, html .cmsms_color_scheme_first #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_first ul.order_details, html .cmsms_color_scheme_first ul.order_details li, html .cmsms_color_scheme_first ul.order_details li > span, html .cmsms_color_scheme_first .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_first .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_first .cmsms_added_product_info, html .cmsms_color_scheme_first .widget_shopping_cart_content .cart_list li, html .cmsms_color_scheme_first .cmsms_added_product_info .cmsms_added_product_info_img, html .cmsms_color_scheme_first .widget_price_filter .price_slider_wrapper .price_slider, html .cmsms_color_scheme_first .product_list_widget li, html .cmsms_color_scheme_first .product_list_widget li img, html .cmsms_color_scheme_first .quantity .text { border-color:#5a5a5a; border-color:rgba(90, 90, 90, 0); } html .cmsms_color_scheme_first #order_review #payment .payment_methods .payment_box:before { border-bottom-color:#5a5a5a; border-bottom-color:rgba(90, 90, 90, 0); } html .cmsms_color_scheme_first .cmsms_dynamic_cart .widget_shopping_cart_content:before, html .cmsms_color_scheme_first .cmsms_added_product_info:before { border-left-color:#5a5a5a; border-left-color:rgba(90, 90, 90, 0); } /* Finish Borders Color */ /***************** Finish Custom 1 WooCommerce Color Scheme Rules ******************/ /***************** Start Custom 1 Events Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6.tribe-events-cost, html .cmsms_color_scheme_first .recurringinfo, html .cmsms_color_scheme_first .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number .tribe-countdown-under, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events * { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:after { border-color:#ffffff; border-color:rgba(255, 255, 255, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_first #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a:hover, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_first .tribe-events-tooltip .entry-title, html .cmsms_color_scheme_first #tribe-events-footer > a:hover, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .cmsms_events_list_event_header .tribe-events-event-cost, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .time-details, html .cmsms_color_scheme_first .recurringinfo a:hover, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a:hover, html .cmsms_color_scheme_first ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder:hover, html .cmsms_color_scheme_first .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a:hover, html .cmsms_color_scheme_first .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a:hover, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap .tribe-events-event-details .tribe-events-event-meta .time-details, html .cmsms_color_scheme_first #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile .tribe-events-event-body .time-details, html .cmsms_color_scheme_first .tribe-events-countdown-widget .tribe-countdown-text a:hover, html .cmsms_color_scheme_first .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a:hover, html .cmsms_color_scheme_first .widget .vevent .entry-title a:hover, html .cmsms_color_scheme_first .widget.tribe-events-list-widget .tribe-event-title a:hover, html .cmsms_color_scheme_first .widget .vevent .cmsms_widget_event_info, html .cmsms_color_scheme_first .widget.tribe-this-week-events-widget .duration, html .cmsms_color_scheme_first .widget .tribe-events-widget-link a:hover, html .cmsms_color_scheme_first .widget.tribe-events-list-widget .tribe-event-duration, html .cmsms_color_scheme_first .widget.tribe-this-week-events-widget .tribe-events-viewmore a:hover, html .cmsms_color_scheme_first .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a:hover, html .cmsms_color_scheme_first .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events:hover *, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a:hover { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button { border-color:#ffffff; border-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_first .tribe-bar-views-open label.button, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a:hover, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present, html .cmsms_color_scheme_first .widget .list-date span.list-daynumber, html .cmsms_color_scheme_first .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:hover { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_first #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth:hover * { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_first #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } /* Finish Primary Color */ /* Start Highlight Color */ @media only screen and (max-width: 767px) { html .cmsms_color_scheme_first #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_first #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item .cmsms_event_meta_info_item_title, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item dt, html .cmsms_color_scheme_first #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-date-filter .label-tribe-bar-date, html .cmsms_color_scheme_first #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-search-filter label, html .cmsms_color_scheme_first #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-geoloc-filter label, html .cmsms_color_scheme_first #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-submit label, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_first .tribe-events-tooltip .tribe-events-event-body .tribe-event-duration, html .cmsms_color_scheme_first #tribe-events-footer > a, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_first #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_first #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_first .recurringinfo a, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details .author, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_first .tribe-events-notices, html .cmsms_color_scheme_first ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_first .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a, html .cmsms_color_scheme_first .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title a, html .cmsms_color_scheme_first .tribe-events-countdown-widget .tribe-countdown-text a, html .cmsms_color_scheme_first .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number, html .cmsms_color_scheme_first .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-colon, html .cmsms_color_scheme_first .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name, html .cmsms_color_scheme_first .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a, html .cmsms_color_scheme_first .widget.tribe-events-list-widget .tribe-event-title, html .cmsms_color_scheme_first .widget.tribe-events-list-widget .tribe-event-title a, html .cmsms_color_scheme_first .widget .vevent .entry-title, html .cmsms_color_scheme_first .widget .vevent .entry-title a, html .cmsms_color_scheme_first .widget .tribe-events-widget-link a, html .cmsms_color_scheme_first .widget.tribe-this-week-events-widget .tribe-events-viewmore a, html .cmsms_color_scheme_first .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a, html .cmsms_color_scheme_first .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a:hover, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_first .tribe-events-sub-nav li a span, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today, html .cmsms_color_scheme_first .widget .list-date span.list-dayname { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_first .tribe-events-sub-nav li a span:before, html .cmsms_color_scheme_first .tribe-events-sub-nav li a span:after { border-color:#ffffff; border-color:rgba(255, 255, 255, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_first #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth * { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_first #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child a, html .cmsms_color_scheme_first .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present *, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present:hover *, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today *, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today:hover *, html .cmsms_color_scheme_first .widget .list-date span.list-dayname, html .cmsms_color_scheme_first .widget .list-date span.list-daynumber { color:#3d3d3d; color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar, html .cmsms_color_scheme_first .tribe-events-tooltip, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today div .tribe-mini-calendar-day-link:before { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:before, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:after, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:after, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:before, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:before, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:after { border-color:#3d3d3d; border-color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_first .tribe-events-tooltip:after { border-top-color:#3d3d3d; border-top-color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_first .recurringinfo .recurring-info-tooltip:after { border-bottom-color:#3d3d3d; border-bottom-color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:after { border-right-color:#3d3d3d; border-right-color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:after { border-left-color:#3d3d3d; border-left-color:rgba(61, 61, 61, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_first #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active *, html .cmsms_color_scheme_first #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present * { color:#3d3d3d; color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_first #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events.mobile-active:before, html .cmsms_color_scheme_first #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present:before { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 1); } } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-event-"]:hover, html .cmsms_color_scheme_first #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_first #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_first .tribe-events-notices, html .cmsms_color_scheme_first ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-today, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-othermonth { background-color:#414141; background-color:rgba(65, 65, 65, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_first #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth { background-color:#414141; background-color:rgba(65, 65, 65, 1); } } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_first .bd_font_color { color:#5a5a5a; color:rgba(90, 90, 90, 0); } html .cmsms_color_scheme_first #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_first .widget.tribe-this-week-events-widget .tribe-this-week-widget-day, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_first #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-single .cmsms_single_event_header, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item, html .cmsms_color_scheme_first .tribe-bar-filters, html .cmsms_color_scheme_first .tribe-events-sub-nav li a, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_first .tribe-events-tooltip, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-list .vevent, html .cmsms_color_scheme_first .tribe-events-notices, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td .tribe-events-viewmore, html .cmsms_color_scheme_first .tribe-events-venue .cmsms_events_venue_header, html .cmsms_color_scheme_first .tribe-events-organizer .cmsms_events_organizer_header, html .cmsms_color_scheme_first .tribe-events-photo #tribe-events-header, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .slimScrollDiv, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-content-wrap .column, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-grid-outer-wrap .tribe-week-grid-inner-wrap .tribe-week-grid-block div, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_first #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile, html .cmsms_color_scheme_first .widget .vevent, html .cmsms_color_scheme_first .tribe-events-list-widget ol li, html .cmsms_color_scheme_first .tribe-events-adv-list-widget ol li, html .cmsms_color_scheme_first .tribe-events-sub-nav li a:hover span:before, html .cmsms_color_scheme_first .tribe-events-sub-nav li a:hover span:after, html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th, html .cmsms_color_scheme_first .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar td { border-color:#5a5a5a; border-color:rgba(90, 90, 90, 0); } html .cmsms_color_scheme_first .tribe-events-sub-nav li a:hover span { background-color:#5a5a5a; background-color:rgba(90, 90, 90, 0); } html .cmsms_color_scheme_first .tribe-events-tooltip:before { border-top-color:#5a5a5a; border-top-color:rgba(90, 90, 90, 0); } html .cmsms_color_scheme_first .recurringinfo .recurring-info-tooltip:before { border-bottom-color:#5a5a5a; border-bottom-color:rgba(90, 90, 90, 0); } html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:before { border-right-color:#5a5a5a; border-right-color:rgba(90, 90, 90, 0); } html .cmsms_color_scheme_first #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:before { border-left-color:#5a5a5a; border-left-color:rgba(90, 90, 90, 0); } /* Finish Borders Color */ /***************** Finish Custom 1 Events Color Scheme Rules ******************/ /***************** Start Custom 2 WooCommerce Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_cat, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price del, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a, html .cmsms_color_scheme_second .cmsms_single_product .cmsms_product_right_column .price del, html .cmsms_color_scheme_second #order_review .shop_table td.product-name, html .cmsms_color_scheme_second #order_review .shop_table td.product-name *, html .cmsms_color_scheme_second .shop_table.order_details td.product-name, html .cmsms_color_scheme_second .shop_table.order_details td.product-name *, html .cmsms_color_scheme_second .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_second .widget_shopping_cart_content .cart_list li .quantity, html .cmsms_color_scheme_second .product_list_widget li del .amount, html .cmsms_color_scheme_second .quantity .text { color:#3d3d3d; color:rgba(61, 61, 61, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a:hover, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover:before, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading:before, html .cmsms_color_scheme_second .cmsms_single_product .cmsms_product_right_column .price, html .cmsms_color_scheme_second .required, html .cmsms_color_scheme_second .shop_table .product-name a:hover, html .cmsms_color_scheme_second .shop_table td.product-subtotal, html .cmsms_color_scheme_second .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_second .cart_totals table tr.order-total td, html .cmsms_color_scheme_second #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_second #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_second .shop_table.order_details td.product-name a:hover, html .cmsms_color_scheme_second .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_second .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_second .cmsms_dynamic_cart .cmsms_dynamic_cart_button:hover, html .cmsms_color_scheme_second .cmsms_dynamic_cart:hover .cmsms_dynamic_cart_button, html .cmsms_color_scheme_second .widget_shopping_cart_content .cart_list li a:hover, html .cmsms_color_scheme_second .widget_shopping_cart_content .cart_list li .quantity .amount, html .cmsms_color_scheme_second .widget_shopping_cart_content .total .amount, html .cmsms_color_scheme_second .product_list_widget li > a:hover, html .cmsms_color_scheme_second .product_list_widget li .amount { color:#9e9e9e; color:rgba(158, 158, 158, 1); } html .cmsms_color_scheme_second .onsale { background-color:#9e9e9e; background-color:rgba(158, 158, 158, 1); } /* Finish Primary Color */ /* Start Highlight Color */ html .cmsms_color_scheme_second .input-checkbox + label:after, html .cmsms_color_scheme_second .input-radio + label:after, html .cmsms_color_scheme_second .shipping_method + label:after { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 1); } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_second .cmsms_single_product .cmsms_product_right_column .product_meta strong, html .cmsms_color_scheme_second .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_second .shop_table thead th, html .cmsms_color_scheme_second .shop_table td.product-remove .remove, html .cmsms_color_scheme_second .shop_table td.product-name, html .cmsms_color_scheme_second .shop_table td.product-name a, html .cmsms_color_scheme_second .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_second .cart_totals table tr.order-total th, html .cmsms_color_scheme_second #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_second #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_second ul.order_details li > span, html .cmsms_color_scheme_second .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_second .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_second .widget_shopping_cart_content .cart_list li a, html .cmsms_color_scheme_second .widget_shopping_cart_content .total strong, html .cmsms_color_scheme_second .cmsms_added_product_info .cmsms_added_product_info_text, html .cmsms_color_scheme_second .product_list_widget li > a { color:#3d3d3d; color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_second .out-of-stock { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_second .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb:hover { border-color:#3d3d3d; border-color:rgba(61, 61, 61, 1); } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_second .onsale, html .cmsms_color_scheme_second .out-of-stock { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_second .quantity .text, html .cmsms_color_scheme_second .woocommerce-message, html .cmsms_color_scheme_second .woocommerce-info, html .cmsms_color_scheme_second #order_review #payment, html .cmsms_color_scheme_second .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_second .cmsms_added_product_info, html .cmsms_color_scheme_second .widget_price_filter .price_slider_wrapper .price_slider { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_second .cmsms_dynamic_cart .widget_shopping_cart_content:after, html .cmsms_color_scheme_second .cmsms_added_product_info:after { border-left-color:#ffffff; border-left-color:rgba(255, 255, 255, 1); } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_second .shop_table thead th, html .cmsms_color_scheme_second .shop_table td.product-remove .remove, html .cmsms_color_scheme_second .shop_table td.actions, html .cmsms_color_scheme_second .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_second .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_second .cart_totals table tr.order-total th, html .cmsms_color_scheme_second .cart_totals table tr.order-total td, html .cmsms_color_scheme_second .input-checkbox + label:before, html .cmsms_color_scheme_second .input-radio + label:before, html .cmsms_color_scheme_second .shipping_method + label:before, html .cmsms_color_scheme_second #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_second #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_second #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_second #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_second #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_second ul.order_details li > span, html .cmsms_color_scheme_second .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_second .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_second .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_second .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_second .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_second .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-range { background-color:#fbfbfb; background-color:rgba(251, 251, 251, 1); } html .cmsms_color_scheme_second #order_review #payment .payment_methods .payment_box:after { border-bottom-color:#fbfbfb; border-bottom-color:rgba(251, 251, 251, 1); } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_second .cmsms_star_rating .cmsms_star, html .cmsms_color_scheme_second .comment-form-rating .stars > span, html .cmsms_color_scheme_second .comment-form-rating .stars > span a:hover, html .cmsms_color_scheme_second .comment-form-rating .stars > span a.active, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:before { color:#ebebeb; color:rgba(235, 235, 235, 0); } html .cmsms_color_scheme_second .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle { background-color:#ebebeb; background-color:rgba(235, 235, 235, 0); } html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_footer, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button + .cmsms_details_button, html .cmsms_color_scheme_second .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.added_to_cart + .cmsms_details_button, html .cmsms_color_scheme_second .cmsms_single_product .cmsms_product_images .cmsms_product_image, html .cmsms_color_scheme_second .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb, html .cmsms_color_scheme_second .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_second .cmsms_single_product .cmsms_woo_tabs .shop_attributes td, html .cmsms_color_scheme_second .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist, html .cmsms_color_scheme_second .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist .comment .comment_container .comment-text, html .cmsms_color_scheme_second .woocommerce-message, html .cmsms_color_scheme_second .woocommerce-info, html .cmsms_color_scheme_second .shop_table, html .cmsms_color_scheme_second .shop_table th, html .cmsms_color_scheme_second .shop_table td, html .cmsms_color_scheme_second .shop_table td.product-remove .remove, html .cmsms_color_scheme_second .shop_table td.product-thumbnail img, html .cmsms_color_scheme_second .cart_totals table, html .cmsms_color_scheme_second .cart_totals table tr th, html .cmsms_color_scheme_second .cart_totals table tr td, html .cmsms_color_scheme_second .input-checkbox + label:before, html .cmsms_color_scheme_second .input-radio + label:before, html .cmsms_color_scheme_second .shipping_method + label:before, html .cmsms_color_scheme_second #order_review #payment, html .cmsms_color_scheme_second #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_second ul.order_details, html .cmsms_color_scheme_second ul.order_details li, html .cmsms_color_scheme_second ul.order_details li > span, html .cmsms_color_scheme_second .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_second .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_second .cmsms_added_product_info, html .cmsms_color_scheme_second .widget_shopping_cart_content .cart_list li, html .cmsms_color_scheme_second .cmsms_added_product_info .cmsms_added_product_info_img, html .cmsms_color_scheme_second .widget_price_filter .price_slider_wrapper .price_slider, html .cmsms_color_scheme_second .product_list_widget li, html .cmsms_color_scheme_second .product_list_widget li img, html .cmsms_color_scheme_second .quantity .text { border-color:#ebebeb; border-color:rgba(235, 235, 235, 0); } html .cmsms_color_scheme_second #order_review #payment .payment_methods .payment_box:before { border-bottom-color:#ebebeb; border-bottom-color:rgba(235, 235, 235, 0); } html .cmsms_color_scheme_second .cmsms_dynamic_cart .widget_shopping_cart_content:before, html .cmsms_color_scheme_second .cmsms_added_product_info:before { border-left-color:#ebebeb; border-left-color:rgba(235, 235, 235, 0); } /* Finish Borders Color */ /***************** Finish Custom 2 WooCommerce Color Scheme Rules ******************/ /***************** Start Custom 2 Events Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6.tribe-events-cost, html .cmsms_color_scheme_second .recurringinfo, html .cmsms_color_scheme_second .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number .tribe-countdown-under, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events * { color:#3d3d3d; color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:after { border-color:#3d3d3d; border-color:rgba(61, 61, 61, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_second #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a:hover, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_second .tribe-events-tooltip .entry-title, html .cmsms_color_scheme_second #tribe-events-footer > a:hover, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .cmsms_events_list_event_header .tribe-events-event-cost, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .time-details, html .cmsms_color_scheme_second .recurringinfo a:hover, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a:hover, html .cmsms_color_scheme_second ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder:hover, html .cmsms_color_scheme_second .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a:hover, html .cmsms_color_scheme_second .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a:hover, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap .tribe-events-event-details .tribe-events-event-meta .time-details, html .cmsms_color_scheme_second #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile .tribe-events-event-body .time-details, html .cmsms_color_scheme_second .tribe-events-countdown-widget .tribe-countdown-text a:hover, html .cmsms_color_scheme_second .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a:hover, html .cmsms_color_scheme_second .widget .vevent .entry-title a:hover, html .cmsms_color_scheme_second .widget.tribe-events-list-widget .tribe-event-title a:hover, html .cmsms_color_scheme_second .widget .vevent .cmsms_widget_event_info, html .cmsms_color_scheme_second .widget.tribe-this-week-events-widget .duration, html .cmsms_color_scheme_second .widget .tribe-events-widget-link a:hover, html .cmsms_color_scheme_second .widget.tribe-events-list-widget .tribe-event-duration, html .cmsms_color_scheme_second .widget.tribe-this-week-events-widget .tribe-events-viewmore a:hover, html .cmsms_color_scheme_second .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a:hover, html .cmsms_color_scheme_second .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events:hover *, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a:hover { color:#9e9e9e; color:rgba(158, 158, 158, 1); } html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button { border-color:#9e9e9e; border-color:rgba(158, 158, 158, 1); } html .cmsms_color_scheme_second .tribe-bar-views-open label.button, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a:hover, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present, html .cmsms_color_scheme_second .widget .list-date span.list-daynumber, html .cmsms_color_scheme_second .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:hover { background-color:#9e9e9e; background-color:rgba(158, 158, 158, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_second #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth:hover * { color:#9e9e9e; color:rgba(158, 158, 158, 1); } html .cmsms_color_scheme_second #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present { background-color:#9e9e9e; background-color:rgba(158, 158, 158, 1); } } /* Finish Primary Color */ /* Start Highlight Color */ @media only screen and (max-width: 767px) { html .cmsms_color_scheme_second #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events:before { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 1); } } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_second #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item .cmsms_event_meta_info_item_title, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item dt, html .cmsms_color_scheme_second #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-date-filter .label-tribe-bar-date, html .cmsms_color_scheme_second #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-search-filter label, html .cmsms_color_scheme_second #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-geoloc-filter label, html .cmsms_color_scheme_second #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-submit label, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_second .tribe-events-tooltip .tribe-events-event-body .tribe-event-duration, html .cmsms_color_scheme_second #tribe-events-footer > a, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_second #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_second #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_second .recurringinfo a, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details .author, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_second .tribe-events-notices, html .cmsms_color_scheme_second ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_second .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a, html .cmsms_color_scheme_second .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title a, html .cmsms_color_scheme_second .tribe-events-countdown-widget .tribe-countdown-text a, html .cmsms_color_scheme_second .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number, html .cmsms_color_scheme_second .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-colon, html .cmsms_color_scheme_second .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name, html .cmsms_color_scheme_second .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a, html .cmsms_color_scheme_second .widget.tribe-events-list-widget .tribe-event-title, html .cmsms_color_scheme_second .widget.tribe-events-list-widget .tribe-event-title a, html .cmsms_color_scheme_second .widget .vevent .entry-title, html .cmsms_color_scheme_second .widget .vevent .entry-title a, html .cmsms_color_scheme_second .widget .tribe-events-widget-link a, html .cmsms_color_scheme_second .widget.tribe-this-week-events-widget .tribe-events-viewmore a, html .cmsms_color_scheme_second .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a, html .cmsms_color_scheme_second .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a:hover, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a { color:#3d3d3d; color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_second .tribe-events-sub-nav li a span, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today, html .cmsms_color_scheme_second .widget .list-date span.list-dayname { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_second .tribe-events-sub-nav li a span:before, html .cmsms_color_scheme_second .tribe-events-sub-nav li a span:after { border-color:#3d3d3d; border-color:rgba(61, 61, 61, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_second #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth * { color:#3d3d3d; color:rgba(61, 61, 61, 1); } html .cmsms_color_scheme_second #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 1); } } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child a, html .cmsms_color_scheme_second .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present *, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present:hover *, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today *, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today:hover *, html .cmsms_color_scheme_second .widget .list-date span.list-dayname, html .cmsms_color_scheme_second .widget .list-date span.list-daynumber { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar, html .cmsms_color_scheme_second .tribe-events-tooltip, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today div .tribe-mini-calendar-day-link:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:before, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:after, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:after, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:before, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:before, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:after { border-color:#ffffff; border-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_second .tribe-events-tooltip:after { border-top-color:#ffffff; border-top-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_second .recurringinfo .recurring-info-tooltip:after { border-bottom-color:#ffffff; border-bottom-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:after { border-right-color:#ffffff; border-right-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:after { border-left-color:#ffffff; border-left-color:rgba(255, 255, 255, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_second #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active *, html .cmsms_color_scheme_second #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present * { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_second #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events.mobile-active:before, html .cmsms_color_scheme_second #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-event-"]:hover, html .cmsms_color_scheme_second #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_second #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_second .tribe-events-notices, html .cmsms_color_scheme_second ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-today, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-othermonth { background-color:#fbfbfb; background-color:rgba(251, 251, 251, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_second #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth { background-color:#fbfbfb; background-color:rgba(251, 251, 251, 1); } } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_second .bd_font_color { color:#ebebeb; color:rgba(235, 235, 235, 0); } html .cmsms_color_scheme_second #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_second .widget.tribe-this-week-events-widget .tribe-this-week-widget-day, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_second #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-single .cmsms_single_event_header, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item, html .cmsms_color_scheme_second .tribe-bar-filters, html .cmsms_color_scheme_second .tribe-events-sub-nav li a, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_second .tribe-events-tooltip, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-list .vevent, html .cmsms_color_scheme_second .tribe-events-notices, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td .tribe-events-viewmore, html .cmsms_color_scheme_second .tribe-events-venue .cmsms_events_venue_header, html .cmsms_color_scheme_second .tribe-events-organizer .cmsms_events_organizer_header, html .cmsms_color_scheme_second .tribe-events-photo #tribe-events-header, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .slimScrollDiv, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-content-wrap .column, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-grid-outer-wrap .tribe-week-grid-inner-wrap .tribe-week-grid-block div, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_second #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile, html .cmsms_color_scheme_second .widget .vevent, html .cmsms_color_scheme_second .tribe-events-list-widget ol li, html .cmsms_color_scheme_second .tribe-events-adv-list-widget ol li, html .cmsms_color_scheme_second .tribe-events-sub-nav li a:hover span:before, html .cmsms_color_scheme_second .tribe-events-sub-nav li a:hover span:after, html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th, html .cmsms_color_scheme_second .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar td { border-color:#ebebeb; border-color:rgba(235, 235, 235, 0); } html .cmsms_color_scheme_second .tribe-events-sub-nav li a:hover span { background-color:#ebebeb; background-color:rgba(235, 235, 235, 0); } html .cmsms_color_scheme_second .tribe-events-tooltip:before { border-top-color:#ebebeb; border-top-color:rgba(235, 235, 235, 0); } html .cmsms_color_scheme_second .recurringinfo .recurring-info-tooltip:before { border-bottom-color:#ebebeb; border-bottom-color:rgba(235, 235, 235, 0); } html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:before { border-right-color:#ebebeb; border-right-color:rgba(235, 235, 235, 0); } html .cmsms_color_scheme_second #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:before { border-left-color:#ebebeb; border-left-color:rgba(235, 235, 235, 0); } /* Finish Borders Color */ /***************** Finish Custom 2 Events Color Scheme Rules ******************/ /***************** Start Custom 3 WooCommerce Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_cat, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price del, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a, html .cmsms_color_scheme_third .cmsms_single_product .cmsms_product_right_column .price del, html .cmsms_color_scheme_third #order_review .shop_table td.product-name, html .cmsms_color_scheme_third #order_review .shop_table td.product-name *, html .cmsms_color_scheme_third .shop_table.order_details td.product-name, html .cmsms_color_scheme_third .shop_table.order_details td.product-name *, html .cmsms_color_scheme_third .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_third .widget_shopping_cart_content .cart_list li .quantity, html .cmsms_color_scheme_third .product_list_widget li del .amount, html .cmsms_color_scheme_third .quantity .text { color:#9c9c9c; color:rgba(156, 156, 156, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a:hover, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover:before, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading:before, html .cmsms_color_scheme_third .cmsms_single_product .cmsms_product_right_column .price, html .cmsms_color_scheme_third .required, html .cmsms_color_scheme_third .shop_table .product-name a:hover, html .cmsms_color_scheme_third .shop_table td.product-subtotal, html .cmsms_color_scheme_third .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_third .cart_totals table tr.order-total td, html .cmsms_color_scheme_third #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_third #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_third .shop_table.order_details td.product-name a:hover, html .cmsms_color_scheme_third .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_third .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_third .cmsms_dynamic_cart .cmsms_dynamic_cart_button:hover, html .cmsms_color_scheme_third .cmsms_dynamic_cart:hover .cmsms_dynamic_cart_button, html .cmsms_color_scheme_third .widget_shopping_cart_content .cart_list li a:hover, html .cmsms_color_scheme_third .widget_shopping_cart_content .cart_list li .quantity .amount, html .cmsms_color_scheme_third .widget_shopping_cart_content .total .amount, html .cmsms_color_scheme_third .product_list_widget li > a:hover, html .cmsms_color_scheme_third .product_list_widget li .amount { color:#838383; color:rgba(131, 131, 131, 1); } html .cmsms_color_scheme_third .onsale { background-color:#838383; background-color:rgba(131, 131, 131, 1); } /* Finish Primary Color */ /* Start Highlight Color */ html .cmsms_color_scheme_third .input-checkbox + label:after, html .cmsms_color_scheme_third .input-radio + label:after, html .cmsms_color_scheme_third .shipping_method + label:after { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_third .cmsms_single_product .cmsms_product_right_column .product_meta strong, html .cmsms_color_scheme_third .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_third .shop_table thead th, html .cmsms_color_scheme_third .shop_table td.product-remove .remove, html .cmsms_color_scheme_third .shop_table td.product-name, html .cmsms_color_scheme_third .shop_table td.product-name a, html .cmsms_color_scheme_third .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_third .cart_totals table tr.order-total th, html .cmsms_color_scheme_third #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_third #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_third ul.order_details li > span, html .cmsms_color_scheme_third .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_third .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_third .widget_shopping_cart_content .cart_list li a, html .cmsms_color_scheme_third .widget_shopping_cart_content .total strong, html .cmsms_color_scheme_third .cmsms_added_product_info .cmsms_added_product_info_text, html .cmsms_color_scheme_third .product_list_widget li > a { color:#838383; color:rgba(131, 131, 131, 1); } html .cmsms_color_scheme_third .out-of-stock { background-color:#838383; background-color:rgba(131, 131, 131, 1); } html .cmsms_color_scheme_third .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb:hover { border-color:#838383; border-color:rgba(131, 131, 131, 1); } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_third .onsale, html .cmsms_color_scheme_third .out-of-stock { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_third .quantity .text, html .cmsms_color_scheme_third .woocommerce-message, html .cmsms_color_scheme_third .woocommerce-info, html .cmsms_color_scheme_third #order_review #payment, html .cmsms_color_scheme_third .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_third .cmsms_added_product_info, html .cmsms_color_scheme_third .widget_price_filter .price_slider_wrapper .price_slider { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_third .cmsms_dynamic_cart .widget_shopping_cart_content:after, html .cmsms_color_scheme_third .cmsms_added_product_info:after { border-left-color:#ffffff; border-left-color:rgba(255, 255, 255, 1); } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_third .shop_table thead th, html .cmsms_color_scheme_third .shop_table td.product-remove .remove, html .cmsms_color_scheme_third .shop_table td.actions, html .cmsms_color_scheme_third .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_third .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_third .cart_totals table tr.order-total th, html .cmsms_color_scheme_third .cart_totals table tr.order-total td, html .cmsms_color_scheme_third .input-checkbox + label:before, html .cmsms_color_scheme_third .input-radio + label:before, html .cmsms_color_scheme_third .shipping_method + label:before, html .cmsms_color_scheme_third #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_third #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_third #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_third #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_third #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_third ul.order_details li > span, html .cmsms_color_scheme_third .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_third .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_third .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_third .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_third .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_third .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-range { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_third #order_review #payment .payment_methods .payment_box:after { border-bottom-color:#ffffff; border-bottom-color:rgba(255, 255, 255, 1); } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_third .cmsms_star_rating .cmsms_star, html .cmsms_color_scheme_third .comment-form-rating .stars > span, html .cmsms_color_scheme_third .comment-form-rating .stars > span a:hover, html .cmsms_color_scheme_third .comment-form-rating .stars > span a.active, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:before { color:#eaedf0; color:rgba(234, 237, 240, 1); } html .cmsms_color_scheme_third .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle { background-color:#eaedf0; background-color:rgba(234, 237, 240, 1); } html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_footer, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button + .cmsms_details_button, html .cmsms_color_scheme_third .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.added_to_cart + .cmsms_details_button, html .cmsms_color_scheme_third .cmsms_single_product .cmsms_product_images .cmsms_product_image, html .cmsms_color_scheme_third .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb, html .cmsms_color_scheme_third .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_third .cmsms_single_product .cmsms_woo_tabs .shop_attributes td, html .cmsms_color_scheme_third .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist, html .cmsms_color_scheme_third .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist .comment .comment_container .comment-text, html .cmsms_color_scheme_third .woocommerce-message, html .cmsms_color_scheme_third .woocommerce-info, html .cmsms_color_scheme_third .shop_table, html .cmsms_color_scheme_third .shop_table th, html .cmsms_color_scheme_third .shop_table td, html .cmsms_color_scheme_third .shop_table td.product-remove .remove, html .cmsms_color_scheme_third .shop_table td.product-thumbnail img, html .cmsms_color_scheme_third .cart_totals table, html .cmsms_color_scheme_third .cart_totals table tr th, html .cmsms_color_scheme_third .cart_totals table tr td, html .cmsms_color_scheme_third .input-checkbox + label:before, html .cmsms_color_scheme_third .input-radio + label:before, html .cmsms_color_scheme_third .shipping_method + label:before, html .cmsms_color_scheme_third #order_review #payment, html .cmsms_color_scheme_third #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_third ul.order_details, html .cmsms_color_scheme_third ul.order_details li, html .cmsms_color_scheme_third ul.order_details li > span, html .cmsms_color_scheme_third .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_third .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_third .cmsms_added_product_info, html .cmsms_color_scheme_third .widget_shopping_cart_content .cart_list li, html .cmsms_color_scheme_third .cmsms_added_product_info .cmsms_added_product_info_img, html .cmsms_color_scheme_third .widget_price_filter .price_slider_wrapper .price_slider, html .cmsms_color_scheme_third .product_list_widget li, html .cmsms_color_scheme_third .product_list_widget li img, html .cmsms_color_scheme_third .quantity .text { border-color:#eaedf0; border-color:rgba(234, 237, 240, 1); } html .cmsms_color_scheme_third #order_review #payment .payment_methods .payment_box:before { border-bottom-color:#eaedf0; border-bottom-color:rgba(234, 237, 240, 1); } html .cmsms_color_scheme_third .cmsms_dynamic_cart .widget_shopping_cart_content:before, html .cmsms_color_scheme_third .cmsms_added_product_info:before { border-left-color:#eaedf0; border-left-color:rgba(234, 237, 240, 1); } /* Finish Borders Color */ /***************** Finish Custom 3 WooCommerce Color Scheme Rules ******************/ /***************** Start Custom 3 Events Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6.tribe-events-cost, html .cmsms_color_scheme_third .recurringinfo, html .cmsms_color_scheme_third .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number .tribe-countdown-under, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events * { color:#9c9c9c; color:rgba(156, 156, 156, 1); } html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow { background-color:#9c9c9c; background-color:rgba(156, 156, 156, 1); } html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:after { border-color:#9c9c9c; border-color:rgba(156, 156, 156, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_third #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a:hover, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_third .tribe-events-tooltip .entry-title, html .cmsms_color_scheme_third #tribe-events-footer > a:hover, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .cmsms_events_list_event_header .tribe-events-event-cost, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .time-details, html .cmsms_color_scheme_third .recurringinfo a:hover, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a:hover, html .cmsms_color_scheme_third ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder:hover, html .cmsms_color_scheme_third .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a:hover, html .cmsms_color_scheme_third .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a:hover, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap .tribe-events-event-details .tribe-events-event-meta .time-details, html .cmsms_color_scheme_third #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile .tribe-events-event-body .time-details, html .cmsms_color_scheme_third .tribe-events-countdown-widget .tribe-countdown-text a:hover, html .cmsms_color_scheme_third .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a:hover, html .cmsms_color_scheme_third .widget .vevent .entry-title a:hover, html .cmsms_color_scheme_third .widget.tribe-events-list-widget .tribe-event-title a:hover, html .cmsms_color_scheme_third .widget .vevent .cmsms_widget_event_info, html .cmsms_color_scheme_third .widget.tribe-this-week-events-widget .duration, html .cmsms_color_scheme_third .widget .tribe-events-widget-link a:hover, html .cmsms_color_scheme_third .widget.tribe-events-list-widget .tribe-event-duration, html .cmsms_color_scheme_third .widget.tribe-this-week-events-widget .tribe-events-viewmore a:hover, html .cmsms_color_scheme_third .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a:hover, html .cmsms_color_scheme_third .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events:hover *, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a:hover { color:#838383; color:rgba(131, 131, 131, 1); } html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button { border-color:#838383; border-color:rgba(131, 131, 131, 1); } html .cmsms_color_scheme_third .tribe-bar-views-open label.button, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a:hover, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present, html .cmsms_color_scheme_third .widget .list-date span.list-daynumber, html .cmsms_color_scheme_third .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:hover { background-color:#838383; background-color:rgba(131, 131, 131, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_third #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth:hover * { color:#838383; color:rgba(131, 131, 131, 1); } html .cmsms_color_scheme_third #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present { background-color:#838383; background-color:rgba(131, 131, 131, 1); } } /* Finish Primary Color */ /* Start Highlight Color */ @media only screen and (max-width: 767px) { html .cmsms_color_scheme_third #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_third #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item .cmsms_event_meta_info_item_title, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item dt, html .cmsms_color_scheme_third #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-date-filter .label-tribe-bar-date, html .cmsms_color_scheme_third #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-search-filter label, html .cmsms_color_scheme_third #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-geoloc-filter label, html .cmsms_color_scheme_third #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-submit label, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_third .tribe-events-tooltip .tribe-events-event-body .tribe-event-duration, html .cmsms_color_scheme_third #tribe-events-footer > a, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_third #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_third #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_third .recurringinfo a, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details .author, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_third .tribe-events-notices, html .cmsms_color_scheme_third ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_third .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a, html .cmsms_color_scheme_third .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title a, html .cmsms_color_scheme_third .tribe-events-countdown-widget .tribe-countdown-text a, html .cmsms_color_scheme_third .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number, html .cmsms_color_scheme_third .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-colon, html .cmsms_color_scheme_third .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name, html .cmsms_color_scheme_third .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a, html .cmsms_color_scheme_third .widget.tribe-events-list-widget .tribe-event-title, html .cmsms_color_scheme_third .widget.tribe-events-list-widget .tribe-event-title a, html .cmsms_color_scheme_third .widget .vevent .entry-title, html .cmsms_color_scheme_third .widget .vevent .entry-title a, html .cmsms_color_scheme_third .widget .tribe-events-widget-link a, html .cmsms_color_scheme_third .widget.tribe-this-week-events-widget .tribe-events-viewmore a, html .cmsms_color_scheme_third .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a, html .cmsms_color_scheme_third .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a:hover, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a { color:#838383; color:rgba(131, 131, 131, 1); } html .cmsms_color_scheme_third .tribe-events-sub-nav li a span, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today, html .cmsms_color_scheme_third .widget .list-date span.list-dayname { background-color:#838383; background-color:rgba(131, 131, 131, 1); } html .cmsms_color_scheme_third .tribe-events-sub-nav li a span:before, html .cmsms_color_scheme_third .tribe-events-sub-nav li a span:after { border-color:#838383; border-color:rgba(131, 131, 131, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_third #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth * { color:#838383; color:rgba(131, 131, 131, 1); } html .cmsms_color_scheme_third #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active { background-color:#838383; background-color:rgba(131, 131, 131, 1); } } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child a, html .cmsms_color_scheme_third .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present *, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present:hover *, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today *, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today:hover *, html .cmsms_color_scheme_third .widget .list-date span.list-dayname, html .cmsms_color_scheme_third .widget .list-date span.list-daynumber { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar, html .cmsms_color_scheme_third .tribe-events-tooltip, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today div .tribe-mini-calendar-day-link:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:before, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:after, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:after, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:before, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:before, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:after { border-color:#ffffff; border-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_third .tribe-events-tooltip:after { border-top-color:#ffffff; border-top-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_third .recurringinfo .recurring-info-tooltip:after { border-bottom-color:#ffffff; border-bottom-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:after { border-right-color:#ffffff; border-right-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:after { border-left-color:#ffffff; border-left-color:rgba(255, 255, 255, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_third #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active *, html .cmsms_color_scheme_third #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present * { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_third #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events.mobile-active:before, html .cmsms_color_scheme_third #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-event-"]:hover, html .cmsms_color_scheme_third #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_third #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_third .tribe-events-notices, html .cmsms_color_scheme_third ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-today, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-othermonth { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_third #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_third .bd_font_color { color:#eaedf0; color:rgba(234, 237, 240, 1); } html .cmsms_color_scheme_third #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_third .widget.tribe-this-week-events-widget .tribe-this-week-widget-day, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_third #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-single .cmsms_single_event_header, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item, html .cmsms_color_scheme_third .tribe-bar-filters, html .cmsms_color_scheme_third .tribe-events-sub-nav li a, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_third .tribe-events-tooltip, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-list .vevent, html .cmsms_color_scheme_third .tribe-events-notices, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td .tribe-events-viewmore, html .cmsms_color_scheme_third .tribe-events-venue .cmsms_events_venue_header, html .cmsms_color_scheme_third .tribe-events-organizer .cmsms_events_organizer_header, html .cmsms_color_scheme_third .tribe-events-photo #tribe-events-header, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .slimScrollDiv, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-content-wrap .column, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-grid-outer-wrap .tribe-week-grid-inner-wrap .tribe-week-grid-block div, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_third #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile, html .cmsms_color_scheme_third .widget .vevent, html .cmsms_color_scheme_third .tribe-events-list-widget ol li, html .cmsms_color_scheme_third .tribe-events-adv-list-widget ol li, html .cmsms_color_scheme_third .tribe-events-sub-nav li a:hover span:before, html .cmsms_color_scheme_third .tribe-events-sub-nav li a:hover span:after, html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th, html .cmsms_color_scheme_third .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar td { border-color:#eaedf0; border-color:rgba(234, 237, 240, 1); } html .cmsms_color_scheme_third .tribe-events-sub-nav li a:hover span { background-color:#eaedf0; background-color:rgba(234, 237, 240, 1); } html .cmsms_color_scheme_third .tribe-events-tooltip:before { border-top-color:#eaedf0; border-top-color:rgba(234, 237, 240, 1); } html .cmsms_color_scheme_third .recurringinfo .recurring-info-tooltip:before { border-bottom-color:#eaedf0; border-bottom-color:rgba(234, 237, 240, 1); } html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:before { border-right-color:#eaedf0; border-right-color:rgba(234, 237, 240, 1); } html .cmsms_color_scheme_third #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:before { border-left-color:#eaedf0; border-left-color:rgba(234, 237, 240, 1); } /* Finish Borders Color */ /***************** Finish Custom 3 Events Color Scheme Rules ******************/ /***************** Start Custom 4 WooCommerce Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_cat, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price del, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a, html .cmsms_color_scheme_fourth .cmsms_single_product .cmsms_product_right_column .price del, html .cmsms_color_scheme_fourth #order_review .shop_table td.product-name, html .cmsms_color_scheme_fourth #order_review .shop_table td.product-name *, html .cmsms_color_scheme_fourth .shop_table.order_details td.product-name, html .cmsms_color_scheme_fourth .shop_table.order_details td.product-name *, html .cmsms_color_scheme_fourth .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_fourth .widget_shopping_cart_content .cart_list li .quantity, html .cmsms_color_scheme_fourth .product_list_widget li del .amount, html .cmsms_color_scheme_fourth .quantity .text { color:#707070; color:rgba(112, 112, 112, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a:hover, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover:before, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading:before, html .cmsms_color_scheme_fourth .cmsms_single_product .cmsms_product_right_column .price, html .cmsms_color_scheme_fourth .required, html .cmsms_color_scheme_fourth .shop_table .product-name a:hover, html .cmsms_color_scheme_fourth .shop_table td.product-subtotal, html .cmsms_color_scheme_fourth .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_fourth .cart_totals table tr.order-total td, html .cmsms_color_scheme_fourth #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_fourth #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_fourth .shop_table.order_details td.product-name a:hover, html .cmsms_color_scheme_fourth .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_fourth .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_fourth .cmsms_dynamic_cart .cmsms_dynamic_cart_button:hover, html .cmsms_color_scheme_fourth .cmsms_dynamic_cart:hover .cmsms_dynamic_cart_button, html .cmsms_color_scheme_fourth .widget_shopping_cart_content .cart_list li a:hover, html .cmsms_color_scheme_fourth .widget_shopping_cart_content .cart_list li .quantity .amount, html .cmsms_color_scheme_fourth .widget_shopping_cart_content .total .amount, html .cmsms_color_scheme_fourth .product_list_widget li > a:hover, html .cmsms_color_scheme_fourth .product_list_widget li .amount { color:#94e95d; color:rgba(148, 233, 93, 1); } html .cmsms_color_scheme_fourth .onsale { background-color:#94e95d; background-color:rgba(148, 233, 93, 1); } /* Finish Primary Color */ /* Start Highlight Color */ html .cmsms_color_scheme_fourth .input-checkbox + label:after, html .cmsms_color_scheme_fourth .input-radio + label:after, html .cmsms_color_scheme_fourth .shipping_method + label:after { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 1); } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_fourth .cmsms_single_product .cmsms_product_right_column .product_meta strong, html .cmsms_color_scheme_fourth .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_fourth .shop_table thead th, html .cmsms_color_scheme_fourth .shop_table td.product-remove .remove, html .cmsms_color_scheme_fourth .shop_table td.product-name, html .cmsms_color_scheme_fourth .shop_table td.product-name a, html .cmsms_color_scheme_fourth .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_fourth .cart_totals table tr.order-total th, html .cmsms_color_scheme_fourth #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_fourth #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_fourth ul.order_details li > span, html .cmsms_color_scheme_fourth .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_fourth .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_fourth .widget_shopping_cart_content .cart_list li a, html .cmsms_color_scheme_fourth .widget_shopping_cart_content .total strong, html .cmsms_color_scheme_fourth .cmsms_added_product_info .cmsms_added_product_info_text, html .cmsms_color_scheme_fourth .product_list_widget li > a { color:#979ca4; color:rgba(151, 156, 164, 1); } html .cmsms_color_scheme_fourth .out-of-stock { background-color:#979ca4; background-color:rgba(151, 156, 164, 1); } html .cmsms_color_scheme_fourth .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb:hover { border-color:#979ca4; border-color:rgba(151, 156, 164, 1); } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_fourth .onsale, html .cmsms_color_scheme_fourth .out-of-stock { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_fourth .quantity .text, html .cmsms_color_scheme_fourth .woocommerce-message, html .cmsms_color_scheme_fourth .woocommerce-info, html .cmsms_color_scheme_fourth #order_review #payment, html .cmsms_color_scheme_fourth .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_fourth .cmsms_added_product_info, html .cmsms_color_scheme_fourth .widget_price_filter .price_slider_wrapper .price_slider { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_fourth .cmsms_dynamic_cart .widget_shopping_cart_content:after, html .cmsms_color_scheme_fourth .cmsms_added_product_info:after { border-left-color:#ffffff; border-left-color:rgba(255, 255, 255, 1); } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_fourth .shop_table thead th, html .cmsms_color_scheme_fourth .shop_table td.product-remove .remove, html .cmsms_color_scheme_fourth .shop_table td.actions, html .cmsms_color_scheme_fourth .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_fourth .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_fourth .cart_totals table tr.order-total th, html .cmsms_color_scheme_fourth .cart_totals table tr.order-total td, html .cmsms_color_scheme_fourth .input-checkbox + label:before, html .cmsms_color_scheme_fourth .input-radio + label:before, html .cmsms_color_scheme_fourth .shipping_method + label:before, html .cmsms_color_scheme_fourth #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_fourth #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_fourth #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_fourth #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_fourth #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_fourth ul.order_details li > span, html .cmsms_color_scheme_fourth .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_fourth .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_fourth .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_fourth .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_fourth .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_fourth .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-range { background-color:#fdfdfd; background-color:rgba(253, 253, 253, 1); } html .cmsms_color_scheme_fourth #order_review #payment .payment_methods .payment_box:after { border-bottom-color:#fdfdfd; border-bottom-color:rgba(253, 253, 253, 1); } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_fourth .cmsms_star_rating .cmsms_star, html .cmsms_color_scheme_fourth .comment-form-rating .stars > span, html .cmsms_color_scheme_fourth .comment-form-rating .stars > span a:hover, html .cmsms_color_scheme_fourth .comment-form-rating .stars > span a.active, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:before { color:#c8ccce; color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_fourth .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle { background-color:#c8ccce; background-color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button + .cmsms_details_button, html .cmsms_color_scheme_fourth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.added_to_cart + .cmsms_details_button, html .cmsms_color_scheme_fourth .cmsms_single_product .cmsms_product_images .cmsms_product_image, html .cmsms_color_scheme_fourth .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb, html .cmsms_color_scheme_fourth .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_fourth .cmsms_single_product .cmsms_woo_tabs .shop_attributes td, html .cmsms_color_scheme_fourth .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist, html .cmsms_color_scheme_fourth .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist .comment .comment_container .comment-text, html .cmsms_color_scheme_fourth .woocommerce-message, html .cmsms_color_scheme_fourth .woocommerce-info, html .cmsms_color_scheme_fourth .shop_table, html .cmsms_color_scheme_fourth .shop_table th, html .cmsms_color_scheme_fourth .shop_table td, html .cmsms_color_scheme_fourth .shop_table td.product-remove .remove, html .cmsms_color_scheme_fourth .shop_table td.product-thumbnail img, html .cmsms_color_scheme_fourth .cart_totals table, html .cmsms_color_scheme_fourth .cart_totals table tr th, html .cmsms_color_scheme_fourth .cart_totals table tr td, html .cmsms_color_scheme_fourth .input-checkbox + label:before, html .cmsms_color_scheme_fourth .input-radio + label:before, html .cmsms_color_scheme_fourth .shipping_method + label:before, html .cmsms_color_scheme_fourth #order_review #payment, html .cmsms_color_scheme_fourth #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_fourth ul.order_details, html .cmsms_color_scheme_fourth ul.order_details li, html .cmsms_color_scheme_fourth ul.order_details li > span, html .cmsms_color_scheme_fourth .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_fourth .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_fourth .cmsms_added_product_info, html .cmsms_color_scheme_fourth .widget_shopping_cart_content .cart_list li, html .cmsms_color_scheme_fourth .cmsms_added_product_info .cmsms_added_product_info_img, html .cmsms_color_scheme_fourth .widget_price_filter .price_slider_wrapper .price_slider, html .cmsms_color_scheme_fourth .product_list_widget li, html .cmsms_color_scheme_fourth .product_list_widget li img, html .cmsms_color_scheme_fourth .quantity .text { border-color:#c8ccce; border-color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_fourth #order_review #payment .payment_methods .payment_box:before { border-bottom-color:#c8ccce; border-bottom-color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_fourth .cmsms_dynamic_cart .widget_shopping_cart_content:before, html .cmsms_color_scheme_fourth .cmsms_added_product_info:before { border-left-color:#c8ccce; border-left-color:rgba(200, 204, 206, 1); } /* Finish Borders Color */ /***************** Finish Custom 4 WooCommerce Color Scheme Rules ******************/ /***************** Start Custom 4 Events Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6.tribe-events-cost, html .cmsms_color_scheme_fourth .recurringinfo, html .cmsms_color_scheme_fourth .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number .tribe-countdown-under, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events * { color:#707070; color:rgba(112, 112, 112, 1); } html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow { background-color:#707070; background-color:rgba(112, 112, 112, 1); } html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:after { border-color:#707070; border-color:rgba(112, 112, 112, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a:hover, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_fourth .tribe-events-tooltip .entry-title, html .cmsms_color_scheme_fourth #tribe-events-footer > a:hover, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .cmsms_events_list_event_header .tribe-events-event-cost, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .time-details, html .cmsms_color_scheme_fourth .recurringinfo a:hover, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a:hover, html .cmsms_color_scheme_fourth ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder:hover, html .cmsms_color_scheme_fourth .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a:hover, html .cmsms_color_scheme_fourth .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a:hover, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap .tribe-events-event-details .tribe-events-event-meta .time-details, html .cmsms_color_scheme_fourth #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile .tribe-events-event-body .time-details, html .cmsms_color_scheme_fourth .tribe-events-countdown-widget .tribe-countdown-text a:hover, html .cmsms_color_scheme_fourth .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a:hover, html .cmsms_color_scheme_fourth .widget .vevent .entry-title a:hover, html .cmsms_color_scheme_fourth .widget.tribe-events-list-widget .tribe-event-title a:hover, html .cmsms_color_scheme_fourth .widget .vevent .cmsms_widget_event_info, html .cmsms_color_scheme_fourth .widget.tribe-this-week-events-widget .duration, html .cmsms_color_scheme_fourth .widget .tribe-events-widget-link a:hover, html .cmsms_color_scheme_fourth .widget.tribe-events-list-widget .tribe-event-duration, html .cmsms_color_scheme_fourth .widget.tribe-this-week-events-widget .tribe-events-viewmore a:hover, html .cmsms_color_scheme_fourth .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a:hover, html .cmsms_color_scheme_fourth .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events:hover *, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a:hover { color:#94e95d; color:rgba(148, 233, 93, 1); } html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button { border-color:#94e95d; border-color:rgba(148, 233, 93, 1); } html .cmsms_color_scheme_fourth .tribe-bar-views-open label.button, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a:hover, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present, html .cmsms_color_scheme_fourth .widget .list-date span.list-daynumber, html .cmsms_color_scheme_fourth .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:hover { background-color:#94e95d; background-color:rgba(148, 233, 93, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_fourth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth:hover * { color:#94e95d; color:rgba(148, 233, 93, 1); } html .cmsms_color_scheme_fourth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present { background-color:#94e95d; background-color:rgba(148, 233, 93, 1); } } /* Finish Primary Color */ /* Start Highlight Color */ @media only screen and (max-width: 767px) { html .cmsms_color_scheme_fourth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events:before { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 1); } } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item .cmsms_event_meta_info_item_title, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item dt, html .cmsms_color_scheme_fourth #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-date-filter .label-tribe-bar-date, html .cmsms_color_scheme_fourth #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-search-filter label, html .cmsms_color_scheme_fourth #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-geoloc-filter label, html .cmsms_color_scheme_fourth #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-submit label, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_fourth .tribe-events-tooltip .tribe-events-event-body .tribe-event-duration, html .cmsms_color_scheme_fourth #tribe-events-footer > a, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_fourth #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_fourth #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_fourth .recurringinfo a, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details .author, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_fourth .tribe-events-notices, html .cmsms_color_scheme_fourth ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_fourth .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a, html .cmsms_color_scheme_fourth .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title a, html .cmsms_color_scheme_fourth .tribe-events-countdown-widget .tribe-countdown-text a, html .cmsms_color_scheme_fourth .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number, html .cmsms_color_scheme_fourth .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-colon, html .cmsms_color_scheme_fourth .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name, html .cmsms_color_scheme_fourth .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a, html .cmsms_color_scheme_fourth .widget.tribe-events-list-widget .tribe-event-title, html .cmsms_color_scheme_fourth .widget.tribe-events-list-widget .tribe-event-title a, html .cmsms_color_scheme_fourth .widget .vevent .entry-title, html .cmsms_color_scheme_fourth .widget .vevent .entry-title a, html .cmsms_color_scheme_fourth .widget .tribe-events-widget-link a, html .cmsms_color_scheme_fourth .widget.tribe-this-week-events-widget .tribe-events-viewmore a, html .cmsms_color_scheme_fourth .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a, html .cmsms_color_scheme_fourth .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a:hover, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a { color:#979ca4; color:rgba(151, 156, 164, 1); } html .cmsms_color_scheme_fourth .tribe-events-sub-nav li a span, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today, html .cmsms_color_scheme_fourth .widget .list-date span.list-dayname { background-color:#979ca4; background-color:rgba(151, 156, 164, 1); } html .cmsms_color_scheme_fourth .tribe-events-sub-nav li a span:before, html .cmsms_color_scheme_fourth .tribe-events-sub-nav li a span:after { border-color:#979ca4; border-color:rgba(151, 156, 164, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_fourth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth * { color:#979ca4; color:rgba(151, 156, 164, 1); } html .cmsms_color_scheme_fourth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active { background-color:#979ca4; background-color:rgba(151, 156, 164, 1); } } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child a, html .cmsms_color_scheme_fourth .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present *, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present:hover *, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today *, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today:hover *, html .cmsms_color_scheme_fourth .widget .list-date span.list-dayname, html .cmsms_color_scheme_fourth .widget .list-date span.list-daynumber { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar, html .cmsms_color_scheme_fourth .tribe-events-tooltip, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today div .tribe-mini-calendar-day-link:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:before, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:after, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:after, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:before, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:before, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:after { border-color:#ffffff; border-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_fourth .tribe-events-tooltip:after { border-top-color:#ffffff; border-top-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_fourth .recurringinfo .recurring-info-tooltip:after { border-bottom-color:#ffffff; border-bottom-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:after { border-right-color:#ffffff; border-right-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:after { border-left-color:#ffffff; border-left-color:rgba(255, 255, 255, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_fourth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active *, html .cmsms_color_scheme_fourth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present * { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_fourth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events.mobile-active:before, html .cmsms_color_scheme_fourth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present:before { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-event-"]:hover, html .cmsms_color_scheme_fourth #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_fourth #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_fourth .tribe-events-notices, html .cmsms_color_scheme_fourth ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-today, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-othermonth { background-color:#fdfdfd; background-color:rgba(253, 253, 253, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_fourth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth { background-color:#fdfdfd; background-color:rgba(253, 253, 253, 1); } } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_fourth .bd_font_color { color:#c8ccce; color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_fourth .widget.tribe-this-week-events-widget .tribe-this-week-widget-day, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_fourth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-single .cmsms_single_event_header, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item, html .cmsms_color_scheme_fourth .tribe-bar-filters, html .cmsms_color_scheme_fourth .tribe-events-sub-nav li a, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_fourth .tribe-events-tooltip, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-list .vevent, html .cmsms_color_scheme_fourth .tribe-events-notices, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td .tribe-events-viewmore, html .cmsms_color_scheme_fourth .tribe-events-venue .cmsms_events_venue_header, html .cmsms_color_scheme_fourth .tribe-events-organizer .cmsms_events_organizer_header, html .cmsms_color_scheme_fourth .tribe-events-photo #tribe-events-header, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .slimScrollDiv, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-content-wrap .column, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-grid-outer-wrap .tribe-week-grid-inner-wrap .tribe-week-grid-block div, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_fourth #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile, html .cmsms_color_scheme_fourth .widget .vevent, html .cmsms_color_scheme_fourth .tribe-events-list-widget ol li, html .cmsms_color_scheme_fourth .tribe-events-adv-list-widget ol li, html .cmsms_color_scheme_fourth .tribe-events-sub-nav li a:hover span:before, html .cmsms_color_scheme_fourth .tribe-events-sub-nav li a:hover span:after, html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th, html .cmsms_color_scheme_fourth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar td { border-color:#c8ccce; border-color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_fourth .tribe-events-sub-nav li a:hover span { background-color:#c8ccce; background-color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_fourth .tribe-events-tooltip:before { border-top-color:#c8ccce; border-top-color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_fourth .recurringinfo .recurring-info-tooltip:before { border-bottom-color:#c8ccce; border-bottom-color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:before { border-right-color:#c8ccce; border-right-color:rgba(200, 204, 206, 1); } html .cmsms_color_scheme_fourth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:before { border-left-color:#c8ccce; border-left-color:rgba(200, 204, 206, 1); } /* Finish Borders Color */ /***************** Finish Custom 4 Events Color Scheme Rules ******************/ /***************** Start Custom 5 WooCommerce Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_cat, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price del, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a, html .cmsms_color_scheme_fifth .cmsms_single_product .cmsms_product_right_column .price del, html .cmsms_color_scheme_fifth #order_review .shop_table td.product-name, html .cmsms_color_scheme_fifth #order_review .shop_table td.product-name *, html .cmsms_color_scheme_fifth .shop_table.order_details td.product-name, html .cmsms_color_scheme_fifth .shop_table.order_details td.product-name *, html .cmsms_color_scheme_fifth .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_fifth .widget_shopping_cart_content .cart_list li .quantity, html .cmsms_color_scheme_fifth .product_list_widget li del .amount, html .cmsms_color_scheme_fifth .quantity .text { color:#ffffff; color:rgba(255, 255, 255, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_cat a:hover, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_info .price, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover:before, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button.loading:before, html .cmsms_color_scheme_fifth .cmsms_single_product .cmsms_product_right_column .price, html .cmsms_color_scheme_fifth .required, html .cmsms_color_scheme_fifth .shop_table .product-name a:hover, html .cmsms_color_scheme_fifth .shop_table td.product-subtotal, html .cmsms_color_scheme_fifth .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_fifth .cart_totals table tr.order-total td, html .cmsms_color_scheme_fifth #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_fifth #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_fifth .shop_table.order_details td.product-name a:hover, html .cmsms_color_scheme_fifth .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_fifth .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_fifth .cmsms_dynamic_cart .cmsms_dynamic_cart_button:hover, html .cmsms_color_scheme_fifth .cmsms_dynamic_cart:hover .cmsms_dynamic_cart_button, html .cmsms_color_scheme_fifth .widget_shopping_cart_content .cart_list li a:hover, html .cmsms_color_scheme_fifth .widget_shopping_cart_content .cart_list li .quantity .amount, html .cmsms_color_scheme_fifth .widget_shopping_cart_content .total .amount, html .cmsms_color_scheme_fifth .product_list_widget li > a:hover, html .cmsms_color_scheme_fifth .product_list_widget li .amount { color:#58cf90; color:rgba(88, 207, 144, 1); } html .cmsms_color_scheme_fifth .onsale { background-color:#58cf90; background-color:rgba(88, 207, 144, 1); } /* Finish Primary Color */ /* Start Highlight Color */ html .cmsms_color_scheme_fifth .input-checkbox + label:after, html .cmsms_color_scheme_fifth .input-radio + label:after, html .cmsms_color_scheme_fifth .shipping_method + label:after { background-color:#d0f275; background-color:rgba(208, 242, 117, 1); } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_fifth .cmsms_single_product .cmsms_product_right_column .product_meta strong, html .cmsms_color_scheme_fifth .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_fifth .shop_table thead th, html .cmsms_color_scheme_fifth .shop_table td.product-remove .remove, html .cmsms_color_scheme_fifth .shop_table td.product-name, html .cmsms_color_scheme_fifth .shop_table td.product-name a, html .cmsms_color_scheme_fifth .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_fifth .cart_totals table tr.order-total th, html .cmsms_color_scheme_fifth #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_fifth #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_fifth ul.order_details li > span, html .cmsms_color_scheme_fifth .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_fifth .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_fifth .widget_shopping_cart_content .cart_list li a, html .cmsms_color_scheme_fifth .widget_shopping_cart_content .total strong, html .cmsms_color_scheme_fifth .cmsms_added_product_info .cmsms_added_product_info_text, html .cmsms_color_scheme_fifth .product_list_widget li > a { color:#fcfcfc; color:rgba(252, 252, 252, 1); } html .cmsms_color_scheme_fifth .out-of-stock { background-color:#fcfcfc; background-color:rgba(252, 252, 252, 1); } html .cmsms_color_scheme_fifth .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb:hover { border-color:#fcfcfc; border-color:rgba(252, 252, 252, 1); } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_fifth .onsale, html .cmsms_color_scheme_fifth .out-of-stock { color:#5b5b5b; color:rgba(91, 91, 91, 1); } html .cmsms_color_scheme_fifth .quantity .text, html .cmsms_color_scheme_fifth .woocommerce-message, html .cmsms_color_scheme_fifth .woocommerce-info, html .cmsms_color_scheme_fifth #order_review #payment, html .cmsms_color_scheme_fifth .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_fifth .cmsms_added_product_info, html .cmsms_color_scheme_fifth .widget_price_filter .price_slider_wrapper .price_slider { background-color:#5b5b5b; background-color:rgba(91, 91, 91, 1); } html .cmsms_color_scheme_fifth .cmsms_dynamic_cart .widget_shopping_cart_content:after, html .cmsms_color_scheme_fifth .cmsms_added_product_info:after { border-left-color:#5b5b5b; border-left-color:rgba(91, 91, 91, 1); } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:hover, html .cmsms_color_scheme_fifth .shop_table thead th, html .cmsms_color_scheme_fifth .shop_table td.product-remove .remove, html .cmsms_color_scheme_fifth .shop_table td.actions, html .cmsms_color_scheme_fifth .cart_totals table tr.cart-subtotal th, html .cmsms_color_scheme_fifth .cart_totals table tr.cart-subtotal td, html .cmsms_color_scheme_fifth .cart_totals table tr.order-total th, html .cmsms_color_scheme_fifth .cart_totals table tr.order-total td, html .cmsms_color_scheme_fifth .input-checkbox + label:before, html .cmsms_color_scheme_fifth .input-radio + label:before, html .cmsms_color_scheme_fifth .shipping_method + label:before, html .cmsms_color_scheme_fifth #order_review .shop_table tr.cart-subtotal th, html .cmsms_color_scheme_fifth #order_review .shop_table tr.cart-subtotal td, html .cmsms_color_scheme_fifth #order_review .shop_table tr.order-total th, html .cmsms_color_scheme_fifth #order_review .shop_table tr.order-total td, html .cmsms_color_scheme_fifth #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_fifth ul.order_details li > span, html .cmsms_color_scheme_fifth .shop_table.order_details tfoot tr:first-child th, html .cmsms_color_scheme_fifth .shop_table.order_details tfoot tr:last-child th, html .cmsms_color_scheme_fifth .shop_table.order_details tfoot tr:first-child td, html .cmsms_color_scheme_fifth .shop_table.order_details tfoot tr:last-child td, html .cmsms_color_scheme_fifth .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_fifth .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-range { background-color:#fdfdfd; background-color:rgba(253, 253, 253, 1); } html .cmsms_color_scheme_fifth #order_review #payment .payment_methods .payment_box:after { border-bottom-color:#fdfdfd; border-bottom-color:rgba(253, 253, 253, 1); } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_fifth .cmsms_star_rating .cmsms_star, html .cmsms_color_scheme_fifth .comment-form-rating .stars > span, html .cmsms_color_scheme_fifth .comment-form-rating .stars > span a:hover, html .cmsms_color_scheme_fifth .comment-form-rating .stars > span a.active, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a:before { color:#b5b5b5; color:rgba(181, 181, 181, 1); } html .cmsms_color_scheme_fifth .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle { background-color:#b5b5b5; background-color:rgba(181, 181, 181, 1); } html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.cmsms_add_to_cart_button + .cmsms_details_button, html .cmsms_color_scheme_fifth .cmsms_products .product .product_outer .product_inner .cmsms_product_footer > a.added_to_cart + .cmsms_details_button, html .cmsms_color_scheme_fifth .cmsms_single_product .cmsms_product_images .cmsms_product_image, html .cmsms_color_scheme_fifth .cmsms_single_product .cmsms_product_images .cmsms_product_thumbs .cmsms_product_thumb, html .cmsms_color_scheme_fifth .cmsms_single_product .cmsms_woo_tabs .shop_attributes th, html .cmsms_color_scheme_fifth .cmsms_single_product .cmsms_woo_tabs .shop_attributes td, html .cmsms_color_scheme_fifth .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist, html .cmsms_color_scheme_fifth .cmsms_single_product .cmsms_woo_tabs #reviews #comments .commentlist .comment .comment_container .comment-text, html .cmsms_color_scheme_fifth .woocommerce-message, html .cmsms_color_scheme_fifth .woocommerce-info, html .cmsms_color_scheme_fifth .shop_table, html .cmsms_color_scheme_fifth .shop_table th, html .cmsms_color_scheme_fifth .shop_table td, html .cmsms_color_scheme_fifth .shop_table td.product-remove .remove, html .cmsms_color_scheme_fifth .shop_table td.product-thumbnail img, html .cmsms_color_scheme_fifth .cart_totals table, html .cmsms_color_scheme_fifth .cart_totals table tr th, html .cmsms_color_scheme_fifth .cart_totals table tr td, html .cmsms_color_scheme_fifth .input-checkbox + label:before, html .cmsms_color_scheme_fifth .input-radio + label:before, html .cmsms_color_scheme_fifth .shipping_method + label:before, html .cmsms_color_scheme_fifth #order_review #payment, html .cmsms_color_scheme_fifth #order_review #payment .payment_methods .payment_box, html .cmsms_color_scheme_fifth ul.order_details, html .cmsms_color_scheme_fifth ul.order_details li, html .cmsms_color_scheme_fifth ul.order_details li > span, html .cmsms_color_scheme_fifth .cmsms_dynamic_cart .cmsms_dynamic_cart_button, html .cmsms_color_scheme_fifth .cmsms_dynamic_cart .widget_shopping_cart_content, html .cmsms_color_scheme_fifth .cmsms_added_product_info, html .cmsms_color_scheme_fifth .widget_shopping_cart_content .cart_list li, html .cmsms_color_scheme_fifth .cmsms_added_product_info .cmsms_added_product_info_img, html .cmsms_color_scheme_fifth .widget_price_filter .price_slider_wrapper .price_slider, html .cmsms_color_scheme_fifth .product_list_widget li, html .cmsms_color_scheme_fifth .product_list_widget li img, html .cmsms_color_scheme_fifth .quantity .text { border-color:#b5b5b5; border-color:rgba(181, 181, 181, 1); } html .cmsms_color_scheme_fifth #order_review #payment .payment_methods .payment_box:before { border-bottom-color:#b5b5b5; border-bottom-color:rgba(181, 181, 181, 1); } html .cmsms_color_scheme_fifth .cmsms_dynamic_cart .widget_shopping_cart_content:before, html .cmsms_color_scheme_fifth .cmsms_added_product_info:before { border-left-color:#b5b5b5; border-left-color:rgba(181, 181, 181, 1); } /* Finish Borders Color */ /***************** Finish Custom 5 WooCommerce Color Scheme Rules ******************/ /***************** Start Custom 5 Events Color Scheme Rules ******************/ /* Start Main Content Font Color */ html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6.tribe-events-cost, html .cmsms_color_scheme_fifth .recurringinfo, html .cmsms_color_scheme_fifth .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number .tribe-countdown-under, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events * { color:#ffffff; color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button .cmsms_next_arrow:after { border-color:#ffffff; border-color:rgba(255, 255, 255, 1); } /* Finish Main Content Font Color */ /* Start Primary Color */ html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_left .tribe-events-schedule > h6, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a:hover, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_fifth .tribe-events-tooltip .entry-title, html .cmsms_color_scheme_fifth #tribe-events-footer > a:hover, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .cmsms_events_list_event_header .tribe-events-event-cost, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .time-details, html .cmsms_color_scheme_fifth .recurringinfo a:hover, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a:hover, html .cmsms_color_scheme_fifth ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder:hover, html .cmsms_color_scheme_fifth .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a:hover, html .cmsms_color_scheme_fifth .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a:hover, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap .tribe-events-event-details .tribe-events-event-meta .time-details, html .cmsms_color_scheme_fifth #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile .tribe-events-event-body .time-details, html .cmsms_color_scheme_fifth .tribe-events-countdown-widget .tribe-countdown-text a:hover, html .cmsms_color_scheme_fifth .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a:hover, html .cmsms_color_scheme_fifth .widget .vevent .entry-title a:hover, html .cmsms_color_scheme_fifth .widget.tribe-events-list-widget .tribe-event-title a:hover, html .cmsms_color_scheme_fifth .widget .vevent .cmsms_widget_event_info, html .cmsms_color_scheme_fifth .widget.tribe-this-week-events-widget .duration, html .cmsms_color_scheme_fifth .widget .tribe-events-widget-link a:hover, html .cmsms_color_scheme_fifth .widget.tribe-events-list-widget .tribe-event-duration, html .cmsms_color_scheme_fifth .widget.tribe-this-week-events-widget .tribe-events-viewmore a:hover, html .cmsms_color_scheme_fifth .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a:hover, html .cmsms_color_scheme_fifth .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events:hover *, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a:hover { color:#58cf90; color:rgba(88, 207, 144, 1); } html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button { border-color:#58cf90; border-color:rgba(88, 207, 144, 1); } html .cmsms_color_scheme_fifth .tribe-bar-views-open label.button, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a:hover, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-has-events div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present, html .cmsms_color_scheme_fifth .widget .list-date span.list-daynumber, html .cmsms_color_scheme_fifth .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:hover { background-color:#58cf90; background-color:rgba(88, 207, 144, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_fifth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth:hover * { color:#58cf90; color:rgba(88, 207, 144, 1); } html .cmsms_color_scheme_fifth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present { background-color:#58cf90; background-color:rgba(88, 207, 144, 1); } } /* Finish Primary Color */ /* Start Highlight Color */ @media only screen and (max-width: 767px) { html .cmsms_color_scheme_fifth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events:before { background-color:#d0f275; background-color:rgba(208, 242, 117, 1); } } /* Finish Highlight Color */ /* Start Headings Color */ html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-single .cmsms_single_event_header .cmsms_single_event_header_right .tribe-events-cal-links a, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item .cmsms_event_meta_info_item_title, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item dt, html .cmsms_color_scheme_fifth #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-date-filter .label-tribe-bar-date, html .cmsms_color_scheme_fifth #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-search-filter label, html .cmsms_color_scheme_fifth #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-geoloc-filter label, html .cmsms_color_scheme_fifth #tribe-events-bar .tribe-bar-filters .tribe-bar-filters-inner .tribe-bar-submit label, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_fifth .tribe-events-tooltip .tribe-events-event-body .tribe-event-duration, html .cmsms_color_scheme_fifth #tribe-events-footer > a, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_fifth #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_fifth #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_fifth .recurringinfo a, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details .author, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-list .vevent .cmsms_events_list_event_wrap .tribe-events-event-meta .tribe-events-venue-details a, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_fifth .tribe-events-notices, html .cmsms_color_scheme_fifth ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_fifth .tribe-events-venue .cmsms_events_venue_header .cmsms_events_venue_header_right a, html .cmsms_color_scheme_fifth .tribe-events-organizer .cmsms_events_organizer_header .cmsms_events_organizer_header_right a, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child > .entry-title a, html .cmsms_color_scheme_fifth .tribe-events-countdown-widget .tribe-countdown-text a, html .cmsms_color_scheme_fifth .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-number, html .cmsms_color_scheme_fifth .tribe-events-countdown-widget .tribe-countdown-time .tribe-countdown-timer .tribe-countdown-colon, html .cmsms_color_scheme_fifth .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name, html .cmsms_color_scheme_fifth .tribe-events-venue-widget .tribe-venue-widget-wrapper .tribe-venue-widget-venue .tribe-venue-widget-venue-name a, html .cmsms_color_scheme_fifth .widget.tribe-events-list-widget .tribe-event-title, html .cmsms_color_scheme_fifth .widget.tribe-events-list-widget .tribe-event-title a, html .cmsms_color_scheme_fifth .widget .vevent .entry-title, html .cmsms_color_scheme_fifth .widget .vevent .entry-title a, html .cmsms_color_scheme_fifth .widget .tribe-events-widget-link a, html .cmsms_color_scheme_fifth .widget.tribe-this-week-events-widget .tribe-events-viewmore a, html .cmsms_color_scheme_fifth .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_info a, html .cmsms_color_scheme_fifth .widget .vevent .cmsms_widget_event_venue_info_loc .cmsms_widget_event_venue_loc a:hover, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-list-wrapper .tribe-events-loop .vevent .tribe-mini-calendar-event .list-info .tribe-mini-calendar-event-venue a { color:#fcfcfc; color:rgba(252, 252, 252, 1); } html .cmsms_color_scheme_fifth .tribe-events-sub-nav li a span, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today, html .cmsms_color_scheme_fifth .widget .list-date span.list-dayname { background-color:#fcfcfc; background-color:rgba(252, 252, 252, 1); } html .cmsms_color_scheme_fifth .tribe-events-sub-nav li a span:before, html .cmsms_color_scheme_fifth .tribe-events-sub-nav li a span:after { border-color:#fcfcfc; border-color:rgba(252, 252, 252, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_fifth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth * { color:#fcfcfc; color:rgba(252, 252, 252, 1); } html .cmsms_color_scheme_fifth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active { background-color:#fcfcfc; background-color:rgba(252, 252, 252, 1); } } /* Finish Headings Color */ /* Start Main Background Color */ html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a:hover, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option.tribe-bar-active a, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*="tribe-events-daynum-"] a:hover, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-header .tribe-grid-content-wrap .column a, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event:hover > div:first-child a, html .cmsms_color_scheme_fifth .tribe-this-week-events-widget .this-week-today .tribe-this-week-widget-header-date, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th.tribe-mini-calendar-dayofweek, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present *, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present:hover *, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today *, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today:hover *, html .cmsms_color_scheme_fifth .widget .list-date span.list-dayname, html .cmsms_color_scheme_fifth .widget .list-date span.list-daynumber { color:#5b5b5b; color:rgba(91, 91, 91, 1); } html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar, html .cmsms_color_scheme_fifth .tribe-events-tooltip, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-present div .tribe-mini-calendar-day-link:before, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-mini-calendar-today div .tribe-mini-calendar-day-link:before { background-color:#5b5b5b; background-color:rgba(91, 91, 91, 1); } html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:before, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:before, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views.tribe-bar-views-open .tribe-bar-views-inner label.button .cmsms_next_arrow:after, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner label.button:hover .cmsms_next_arrow:after, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link:before, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:before, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar .tribe-mini-calendar-nav div .tribe-mini-calendar-nav-link span:after { border-color:#5b5b5b; border-color:rgba(91, 91, 91, 1); } html .cmsms_color_scheme_fifth .tribe-events-tooltip:after { border-top-color:#5b5b5b; border-top-color:rgba(91, 91, 91, 1); } html .cmsms_color_scheme_fifth .recurringinfo .recurring-info-tooltip:after { border-bottom-color:#5b5b5b; border-bottom-color:rgba(91, 91, 91, 1); } html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:after { border-right-color:#5b5b5b; border-right-color:rgba(91, 91, 91, 1); } html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:after { border-left-color:#5b5b5b; border-left-color:rgba(91, 91, 91, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_fifth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.mobile-active *, html .cmsms_color_scheme_fifth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth.tribe-events-present * { color:#5b5b5b; color:rgba(91, 91, 91, 1); } html .cmsms_color_scheme_fifth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events.mobile-active:before, html .cmsms_color_scheme_fifth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present:before { background-color:#5b5b5b; background-color:rgba(91, 91, 91, 1); } } /* Finish Main Background Color */ /* Start Alternate Background Color */ html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-event-"]:hover, html .cmsms_color_scheme_fifth #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-heading, html .cmsms_color_scheme_fifth #tribe-mobile-container .tribe-mobile-day .tribe-mobile-day-date, html .cmsms_color_scheme_fifth .tribe-events-notices, html .cmsms_color_scheme_fifth ul.tribe-related-events > li .tribe-related-events-thumbnail .cmsms_events_img_placeholder, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-today, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar tbody td.tribe-events-othermonth { background-color:#fdfdfd; background-color:rgba(253, 253, 253, 1); } @media only screen and (max-width: 767px) { html .cmsms_color_scheme_fifth #main #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-thismonth { background-color:#fdfdfd; background-color:rgba(253, 253, 253, 1); } } /* Finish Alternate Background Color */ /* Start Borders Color */ html .cmsms_color_scheme_fifth .bd_font_color { color:#b5b5b5; color:rgba(181, 181, 181, 1); } html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-day .tribe-events-day-time-slot > h5, html .cmsms_color_scheme_fifth .widget.tribe-this-week-events-widget .tribe-this-week-widget-day, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-list .tribe-events-list-separator-month, html .cmsms_color_scheme_fifth #tribe-events-bar #tribe-bar-views .tribe-bar-views-inner ul.tribe-bar-views-list li.tribe-bar-views-option a, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-single .cmsms_single_event_header, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-single .cmsms_single_event_meta .tribe-events-meta-group .cmsms_event_meta_info .cmsms_event_meta_info_item, html .cmsms_color_scheme_fifth .tribe-bar-filters, html .cmsms_color_scheme_fifth .tribe-events-sub-nav li a, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*="tribe-events-daynum-"], html .cmsms_color_scheme_fifth .tribe-events-tooltip, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-list .vevent, html .cmsms_color_scheme_fifth .tribe-events-notices, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td .tribe-events-viewmore, html .cmsms_color_scheme_fifth .tribe-events-venue .cmsms_events_venue_header, html .cmsms_color_scheme_fifth .tribe-events-organizer .cmsms_events_organizer_header, html .cmsms_color_scheme_fifth .tribe-events-photo #tribe-events-header, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-photo #tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .slimScrollDiv, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-content-wrap .column, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-allday, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-week-grid-outer-wrap .tribe-week-grid-inner-wrap .tribe-week-grid-block div, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-grid-wrapper .tribe-grid-body .tribe-week-grid-hours div, html .cmsms_color_scheme_fifth #tribe-mobile-container .tribe-mobile-day .tribe-events-mobile, html .cmsms_color_scheme_fifth .widget .vevent, html .cmsms_color_scheme_fifth .tribe-events-list-widget ol li, html .cmsms_color_scheme_fifth .tribe-events-adv-list-widget ol li, html .cmsms_color_scheme_fifth .tribe-events-sub-nav li a:hover span:before, html .cmsms_color_scheme_fifth .tribe-events-sub-nav li a:hover span:after, html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-week-event > div:first-child, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar th, html .cmsms_color_scheme_fifth .widget.tribe_mini_calendar_widget .tribe-mini-calendar-wrapper .tribe-mini-calendar-grid-wrapper .tribe-mini-calendar td { border-color:#b5b5b5; border-color:rgba(181, 181, 181, 1); } html .cmsms_color_scheme_fifth .tribe-events-sub-nav li a:hover span { background-color:#b5b5b5; background-color:rgba(181, 181, 181, 1); } html .cmsms_color_scheme_fifth .tribe-events-tooltip:before { border-top-color:#b5b5b5; border-top-color:rgba(181, 181, 181, 1); } html .cmsms_color_scheme_fifth .recurringinfo .recurring-info-tooltip:before { border-bottom-color:#b5b5b5; border-bottom-color:rgba(181, 181, 181, 1); } html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-tooltip:before { border-right-color:#b5b5b5; border-right-color:rgba(181, 181, 181, 1); } html .cmsms_color_scheme_fifth #tribe-events-content.tribe-events-week-grid .tribe-events-grid .tribe-grid-body .tribe-events-right .tribe-events-tooltip:before { border-left-color:#b5b5b5; border-left-color:rgba(181, 181, 181, 1); } /* Finish Borders Color */ /***************** Finish Custom 5 Events Color Scheme Rules ******************/ /***************** Start Header Color Scheme Rules ******************/ /* Start Header Content Color */ .header_mid, .header_bot, .header_mid_inner .social_wrap a { color:#979ca4; color:rgba(151, 156, 164, 1); } /* Finish Header Content Color */ /* Start Header Primary Color */ .header_mid a, .header_mid h1 a:hover, .header_mid h2 a:hover, .header_mid h3 a:hover, .header_mid h4 a:hover, .header_mid h5 a:hover, .header_mid h6 a:hover, .header_mid .color_2, .header_bot a, .header_bot h1 a:hover, .header_bot h2 a:hover, .header_bot h3 a:hover, .header_bot h4 a:hover, .header_bot h5 a:hover, .header_bot h6 a:hover, .header_bot .color_2, .header_mid h1, .header_mid h2, .header_mid h3, .header_mid h4, .header_mid h5, .header_mid h6, .header_mid h1 a, .header_mid h2 a, .header_mid h3 a, .header_mid h4 a, .header_mid h5 a, .header_mid h6 a, .header_bot h1, .header_bot h2, .header_bot h3, .header_bot h4, .header_bot h5, .header_bot h6, .header_bot h1 a, .header_bot h2 a, .header_bot h3 a, .header_bot h4 a, .header_bot h5 a, .header_bot h6 a, #navigation > li > a, .header_mid_outer .header_mid_inner .search_wrap .search_bar_wrap button[type=submit][class^="cmsms-icon-"], .header_mid_outer .header_mid_inner .search_wrap .search_bar_wrap button[type=submit][class*=" cmsms-icon-"], .header_mid_outer .header_mid_inner .search_wrap .search_but, .header_mid .search_bar_wrap button[type=submit][class^="cmsms-icon-"], .header_mid .search_bar_wrap button[type=submit][class*=" cmsms-icon-"], .header_bot .search_bar_wrap button[type=submit][class^="cmsms-icon-"], .header_bot .search_bar_wrap button[type=submit][class*=" cmsms-icon-"], .header_mid_inner .social_wrap a:hover { color:#323943; color:rgba(50, 57, 67, 1); } .header_mid .cmsms_button, .header_mid .button:hover, .header_bot .cmsms_button, .header_bot .button:hover, .header_mid .button, .header_bot .button { background-color:#323943; background-color:rgba(50, 57, 67, 1); } .header_mid input[type=text]:focus, .header_mid input[type=email]:focus, .header_mid input[type=password]:focus, .header_mid textarea:focus, .header_top input[type=text]:focus, .header_top input[type=email]:focus, .header_top input[type=password]:focus, .header_top textarea:focus { border-color:#323943; border-color:rgba(50, 57, 67, 1); } /* Finish Header Primary Color */ /* Start Header Rollover Color */ .header_mid a:hover, .header_bot a:hover, #navigation > li > a:hover, #navigation > li.current-menu-item > a, #navigation > li.current_page_item > a, #navigation > li.current-menu-ancestor > a, #navigation > li.menu-item-highlight > a { color:#58cf90; color:rgba(88, 207, 144, 1); } @media only screen and (min-width: 1024px) { #navigation > li:hover > a { color:#58cf90; color:rgba(88, 207, 144, 1); } } /* Finish Header Rollover Color */ /* Start Header Background Color */ .header_mid .cmsms_button, .header_mid .cmsms_button:hover, .header_bot .cmsms_button, .header_bot .cmsms_button:hover { color:#ffffff; color:rgba(255, 255, 255, 0.95); } .header_mid input[type=text]:focus, .header_mid input[type=number]:focus, .header_mid input[type=email]:focus, .header_mid input[type=password]:focus, .header_mid textarea:focus, .header_bot input[type=text]:focus, .header_bot input[type=number]:focus, .header_bot input[type=email]:focus, .header_bot input[type=password]:focus, .header_bot textarea:focus, .header_mid_outer, .header_bot_outer, .header_mid_outer .header_mid_inner .search_wrap.search_opened .search_but { background-color:#ffffff; background-color:rgba(255, 255, 255, 0.95); } /* Finish Header Background Color */ /* Start Header Rollover Background Color */ #navigation > li > a:hover, #navigation > li.current-menu-item > a, #navigation > li.current_page_item > a, #navigation > li.current-menu-ancestor > a, #navigation > li > a > span.nav_bg_clr, #navigation > li.menu-item-highlight > a > span.nav_bg_clr { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 0); } @media only screen and (min-width: 1024px) { #navigation > li:hover > a { background-color:#3d3d3d; background-color:rgba(61, 61, 61, 0); } } /* Finish Header Rollover Background Color */ /* Start Header Borders Color */ .header_mid input[type=text], .header_mid input[type=number], .header_mid input[type=email], .header_mid input[type=password], .header_mid input[type=submit], .header_mid button, .header_mid textarea, .header_mid select, .header_mid option, .header_bot input[type=text], .header_bot input[type=number], .header_bot input[type=email], .header_bot input[type=password], .header_bot input[type=submit], .header_bot button, .header_bot textarea, .header_bot select, .header_bot option, .header_mid_outer .header_mid_inner .search_wrap.search_opened .search_but, .header_mid .search_bar_wrap, .header_bot .search_bar_wrap, #navigation li a { border-color:#ebebeb; border-color:rgba(235, 235, 235, 1); } .header_mid_outer, .header_bot_outer, .header_mid hr, .header_mid .cmsms_divider, .header_bot hr, .header_bot .cmsms_divider { border-bottom-color:#ebebeb; border-bottom-color:rgba(235, 235, 235, 1); } /* Finish Header Borders Color */ /* Start Header Dropdown Link Color */ .header_mid .button, .header_mid .button:hover, .header_bot .button, .header_bot .button:hover, #navigation ul li a { color:#9e9e9e; color:rgba(158, 158, 158, 1); } @media only screen and (max-width: 1024px) { #navigation > li > a { color:#9e9e9e; color:rgba(158, 158, 158, 1); } } /* Finish Header Dropdown Link Color */ /* Start Header Dropdown Rollover Color */ #navigation ul li > a:hover, #navigation ul li.current-menu-item > a, #navigation ul li.current_page_item > a, #navigation ul li.current-menu-ancestor > a, #navigation > li li.menu-item-highlight > a, #navigation > li li.menu-item-highlight > a:hover, #navigation > li.menu-item-mega li > a:hover, #navigation > li.menu-item-mega li.current-menu-ancestor > a, #navigation > li.menu-item-mega li li > a:hover, #navigation > li.menu-item-mega > ul > li > a, #navigation > li.menu-item-mega > ul > li > a:hover, #navigation > li.menu-item-mega > div.menu-item-mega-container li > a:hover, #navigation > li.menu-item-mega > div.menu-item-mega-container li.current-menu-item > a, #navigation > li.menu-item-mega > div.menu-item-mega-container li.current_page_item > a, #navigation > li.menu-item-mega > div.menu-item-mega-container li.menu-item-highlight > a, #navigation > li.menu-item-mega > div.menu-item-mega-container li.menu-item-highlight > a:hover, #navigation > li.menu-item-mega > div.menu-item-mega-container li.menu-item-highlight:hover > a:hover, #navigation > li.menu-item-mega > div.menu-item-mega-container > ul > li > a, #navigation > li.menu-item-mega > div.menu-item-mega-container > ul > li > a:hover, #navigation > li.menu-item-mega > div.menu-item-mega-container > ul > li > a[href]:hover, #navigation > li.menu-item-mega > div.menu-item-mega-container > ul li li > a:hover, #navigation > li.menu-item-mega > div.menu-item-mega-container > ul li li:hover > a:hover { color:#3d3d3d; color:rgba(61, 61, 61, 1); } @media only screen and (max-width: 1024px) { #navigation > li > a:hover, #navigation > li.current-menu-item > a, #navigation > li.current_page_item > a, #navigation > li.current-menu-ancestor > a, #navigation > li.menu-item-highlight > a { color:#3d3d3d; color:rgba(61, 61, 61, 1); } } @media only screen and (min-width: 1024px) { #navigation ul li:hover > a, #navigation > li li.menu-item-highlight:hover > a, #navigation > li.menu-item-mega li:hover > a, #navigation > li.menu-item-mega > ul > li:hover > a, #navigation > li.menu-item-mega > div.menu-item-mega-container li:hover > a, #navigation > li.menu-item-mega > div.menu-item-mega-container > ul li li:hover > a, #navigation > li.menu-item-mega > div.menu-item-mega-container li.menu-item-highlight:hover > a { color:#3d3d3d; color:rgba(61, 61, 61, 1); } } /* Finish Header Dropdown Rollover Color */ /* Start Header Dropdown Background Color */ .header_mid input[type=text], .header_mid input[type=number], .header_mid input[type=email], .header_mid input[type=password], .header_mid input[type=submit], .header_mid button, .header_mid textarea, .header_mid select, .header_mid option, .header_bot input[type=text], .header_bot input[type=number], .header_bot input[type=email], .header_bot input[type=password], .header_bot input[type=submit], .header_bot button, .header_bot textarea, .header_bot select, .header_bot option, #navigation ul, #navigation > li.menu-item-mega li > a:hover, #navigation > li.menu-item-mega > div.menu-item-mega-container { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } @media only screen and (max-width: 1024px) { #navigation { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } @media only screen and (min-width: 1024px) { #navigation > li.menu-item-mega li:hover > a { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } } #navigation > li.menu-item-has-children > a:before, #navigation > li.menu-item-has-children > a > span.nav_bg_clr:before { border-bottom-color:#ffffff; border-bottom-color:rgba(255, 255, 255, 1); } /* Finish Header Dropdown Background Color */ /* Start Header Dropdown Rollover Background Color */ #navigation ul li > a:hover, #navigation ul li.current-menu-item > a, #navigation ul li.current_page_item > a, #navigation ul li.current-menu-ancestor > a, #navigation > li.menu-item-mega li li:hover > a:hover, #navigation > li.menu-item-mega li li.current-menu-item > a, #navigation > li.menu-item-mega li li.current_page_item > a, .header_mid .search_bar_wrap, .header_mid .search_bar_wrap input[type=text], .header_mid .search_bar_wrap input[type=text]:focus, .header_bot .search_bar_wrap, .header_bot .search_bar_wrap input[type=text], .header_bot .search_bar_wrap input[type=text]:focus { background-color:#fbfbfb; background-color:rgba(251, 251, 251, 1); } @media only screen and (max-width: 1024px) { #navigation > li > a:hover, #navigation > li.current-menu-item > a, #navigation > li.current_page_item > a, #navigation > li.current-menu-ancestor > a, #navigation > li > a > span.nav_bg_clr, #navigation > li.menu-item-highlight > a > span.nav_bg_clr { background-color:#fbfbfb; background-color:rgba(251, 251, 251, 1); } } @media only screen and (min-width: 1024px) { #navigation ul li:hover > a { background-color:#fbfbfb; background-color:rgba(251, 251, 251, 1); } } /* Finish Header Dropdown Rollover Background Color */ /* Start Header Dropdown Borders Color */ #navigation > li.menu-item-mega > div.menu-item-mega-container > ul:after { background-color:#ebebeb; background-color:rgba(235, 235, 235, 1); } #navigation ul, #navigation > li.menu-item-mega > div.menu-item-mega-container { border-color:#ebebeb; border-color:rgba(235, 235, 235, 1); } @media only screen and (max-width: 1024px) { #navigation li a { border-color:#ebebeb; border-color:rgba(235, 235, 235, 1); } .header_mid_outer, .header_bot_outer { border-bottom-color:#ebebeb; border-bottom-color:rgba(235, 235, 235, 1); } } #navigation ul li, #navigation > li.menu-item-mega > div.menu-item-mega-container li li li:first-child { border-top-color:#ebebeb; border-top-color:rgba(235, 235, 235, 1); } /* Finish Header Dropdown Borders Color */ /* Start Header Custom Rules */ .header_mid ::selection, .header_bot ::selection { background:#323943; background:rgba(50, 57, 67, 1); color:#ffffff; color:rgba(255, 255, 255, 0.95); } .header_mid ::-moz-selection, .header_bot ::-moz-selection { background:#323943; background:rgba(50, 57, 67, 1); color:#ffffff; color:rgba(255, 255, 255, 0.95); } #page.fixed_header .header_mid_outer, #page.fixed_header .header_bot_outer { background-color:rgba(255, 255, 255, 0.95); } #navigation ul, #navigation > li.menu-item-mega > div.menu-item-mega-container { -webkit-box-shadow:0 5px 15px 0 rgba(255, 255, 255, 0.02); -moz-box-shadow:0 5px 15px 0 rgba(255, 255, 255, 0.02); box-shadow:0 5px 15px 0 rgba(255, 255, 255, 0.02); } /* Finish Header Custom Rules */ /***************** Finish Header Color Scheme Rules ******************/ /***************** Start Header Top Color Scheme Rules ******************/ /* Start Header Top Content Color */ .header_top, .header_top_outer .meta_wrap, .header_top_inner .social_wrap a { color:#979ca4; color:rgba(151, 156, 164, 1); } /* Finish Header Top Content Color */ /* Start Header Top Primary Color */ .header_top a, .header_top .color_2, .header_top_outer nav > div > ul > li a, .header_top_outer .meta_wrap a, .header_top h1, .header_top h2, .header_top h3, .header_top h4, .header_top h5, .header_top h6, .header_top h1 a, .header_top h2 a, .header_top h3 a, .header_top h4 a, .header_top h5 a, .header_top h6 a, .header_top h1 a:hover, .header_top h2 a:hover, .header_top h3 a:hover, .header_top h4 a:hover, .header_top h5 a:hover, .header_top h6 a:hover, .header_top .search_bar_wrap button[type=submit][class^="cmsms-icon-"], .header_top .search_bar_wrap button[type=submit][class*=" cmsms-icon-"] { color:#979ca4; color:rgba(151, 156, 164, 1); } @media only screen and (max-width: 1024px) { html #page #header .header_top .header_top_outer .header_top_inner .header_top_right .nav_wrap nav #top_line_nav li > a { color:#979ca4; color:rgba(151, 156, 164, 1); } } .header_top .cmsms_button, .header_top .button:hover, .header_top_outer nav > div > ul > li > a > span.cmsms_count, .header_top .button { background-color:#979ca4; background-color:rgba(151, 156, 164, 1); } .header_top input[type=text]:focus, .header_top input[type=number]:focus, .header_top input[type=email]:focus, .header_top input[type=password]:focus, .header_top textarea:focus { border-color:#979ca4; border-color:rgba(151, 156, 164, 1); } /* Finish Header Top Primary Color */ /* Start Header Top Rollover Color */ .header_top a:hover, .header_top_outer nav > div > ul > li:hover > a, .header_top_outer nav > div > ul > li.current-menu-item > a, .header_top_outer nav > div > ul > li.current-menu-ancestor > a, .header_top_outer .meta_wrap a:hover, .header_top_inner .social_wrap a:hover { color:#c8ccce; color:rgba(200, 204, 206, 1); } @media only screen and (max-width: 1024px) { html #page #header .header_top .header_top_outer .header_top_inner .header_top_right .nav_wrap nav #top_line_nav li > a:hover, html #page #header .header_top .header_top_outer .header_top_inner .header_top_right .nav_wrap nav #top_line_nav li.current-menu-item > a { color:#c8ccce; color:rgba(200, 204, 206, 1); } } .header_top_but .cmsms_top_arrow, .header_top_but .cmsms_bot_arrow { background-color:#c8ccce; background-color:rgba(200, 204, 206, 1); } .header_top_but .cmsms_top_arrow:before, .header_top_but .cmsms_top_arrow:after, .header_top_but .cmsms_top_arrow span:before, .header_top_but .cmsms_top_arrow span:after, .header_top_but .cmsms_bot_arrow:before, .header_top_but .cmsms_bot_arrow:after, .header_top_but .cmsms_bot_arrow span:before, .header_top_but .cmsms_bot_arrow span:after { border-color:#c8ccce; border-color:rgba(200, 204, 206, 1); } /* Finish Header Top Rollover Color */ /* Start Header Top Background Color */ .header_top_outer nav > div > ul > li > a > span.cmsms_count, .header_top .cmsms_button, .header_top .cmsms_button:hover { color:#ffffff; color:rgba(255, 255, 255, 1); } .header_top, .header_top input[type=text]:focus, .header_top input[type=number]:focus, .header_top input[type=email]:focus, .header_top input[type=password]:focus, .header_top textarea:focus, .header_top_outer { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } /* Finish Header Top Background Color */ /* Start Header Top Borders Color */ .header_top input[type=text], .header_top input[type=number], .header_top input[type=email], .header_top input[type=password], .header_top input[type=submit], .header_top button, .header_top textarea, .header_top select, .header_top option, .header_top .search_bar_wrap { border-color:#eaedf0; border-color:rgba(234, 237, 240, 1); } .header_top hr, .header_top .cmsms_divider { border-bottom-color:#eaedf0; border-bottom-color:rgba(234, 237, 240, 1); } @media only screen and (max-width: 1024px) { html #page #header .header_top .header_top_outer .header_top_inner .header_top_left, html #page #header .header_top .header_top_outer .header_top_inner .header_top_right { border-bottom-color:#eaedf0; border-bottom-color:rgba(234, 237, 240, 1); } html #page #header .header_top .header_top_outer .header_top_inner .header_top_right .nav_wrap nav #top_line_nav li > a { border-top-color:#eaedf0; border-top-color:rgba(234, 237, 240, 1); } } /* Finish Header Top Borders Color */ /* Start Header Top Dropdown Link Color */ .header_top_outer nav > div > ul > li a, .header_top_outer nav > div > ul > li ul li > a, .header_top .button, .header_top .button:hover, html #page #header .header_top .header_top_outer .header_top_inner .header_top_right .nav_wrap .responsive_top_nav:hover, html #page #header .header_top .header_top_outer .header_top_inner .header_top_right .nav_wrap .responsive_top_nav.active { color:#979ca4; color:rgba(151, 156, 164, 1); } html #page #header .header_top .header_top_outer .header_top_inner .header_top_right .nav_wrap .responsive_top_nav { background-color:#979ca4; background-color:rgba(151, 156, 164, 1); } /* Finish Header Top Dropdown Link Color */ /* Start Header Top Dropdown Rollover Color */ .header_top_outer nav > div > ul > li ul li:hover > a, .header_top_outer nav > div > ul > li ul li.current-menu-item > a, .header_top_outer nav > div > ul > li ul li.current-menu-ancestor > a, html #page #header .header_top .header_top_outer .header_top_inner .header_top_right .nav_wrap .responsive_top_nav { color:#58cf90; color:rgba(88, 207, 144, 1); } /* Finish Header Top Dropdown Rollover Color */ /* Start Header Top Dropdown Background Color */ .header_top input[type=text], .header_top input[type=number], .header_top input[type=email], .header_top input[type=password], .header_top input[type=submit], .header_top button, .header_top textarea, .header_top select, .header_top option, .header_top_outer nav > div > ul > li ul, .header_top .search_bar_wrap, .header_top .search_bar_wrap input[type=text], .header_top .search_bar_wrap input[type=text]:focus { background-color:#ffffff; background-color:rgba(255, 255, 255, 1); } /* Finish Header Top Dropdown Background Color */ /* Start Header Top Dropdown Border Color */ .header_top_outer nav > div > ul > li.menu-item-has-children > a:before { border-bottom-color:#e5e8ec; border-bottom-color:rgba(229, 232, 236, 1); } html #page #header .header_top .header_top_outer .header_top_inner .header_top_right .nav_wrap .responsive_top_nav:hover, html #page #header .header_top .header_top_outer .header_top_inner .header_top_right .nav_wrap .responsive_top_nav.active { background-color:#e5e8ec; background-color:rgba(229, 232, 236, 1); } /* Finish Header Top Dropdown Border Color */ /* Start Header Top Custom Rules */ .header_top ::selection { background:#979ca4; background:rgba(151, 156, 164, 1); color:#ffffff; color:rgba(255, 255, 255, 1); } .header_top ::-moz-selection { background:#979ca4; background:rgba(151, 156, 164, 1); color:#ffffff; color:rgba(255, 255, 255, 1); } .header_top_outer { -webkit-box-shadow:inset 0 -1px 0 0 rgba(234, 237, 240, 1); -moz-box-shadow:inset 0 -1px 0 0 rgba(234, 237, 240, 1); box-shadow:inset 0 -1px 0 0 rgba(234, 237, 240, 1); } .header_top_outer nav > div > ul > li ul { -webkit-box-shadow:0 0 2px 0 rgba(234, 237, 240, 0.1); -moz-box-shadow:0 0 2px 0 rgba(234, 237, 240, 0.1); box-shadow:0 0 2px 0 rgba(234, 237, 240, 0.1); } /* Finish Header Top Custom Rules */ /***************** Finish Header Top Color Scheme Rules ******************/
0.221519
0.037082
body{ margin: 0; font-family: 'Open Sans', sans-serif; color: #f0f0f0; margin-top: 35px; background-color: #2a292e; } header.top{ position: absolute; left: 0; right: 0; top: 0; padding: 10px 15px; box-sizing: border-box; display: flex; justify-content: space-between; box-shadow: 0 0 20px rgba(0,0,0,1); } header.top .logo{ width: 70px; position: relative; } header.top .logo img{ width: 100%; height: auto; display: block; } header.top h1{ margin: 0; font-weight: 100; letter-spacing: 2px; margin-left: 10px; color: #d9f3f4; text-transform: uppercase; font-size: 1em; } header.top .spacer{ flex: auto; width: 100%; } .wrap{ width: 100%; padding: 0; box-sizing: border-box; margin: 0 auto; } /** obs ***/ a.obs{ font-size: 12px; font-weight: normal; border: 1px solid white; color: #ffffff; text-decoration: none; padding: 10px 5px; border-radius: 30px; background-color: transparent; display: block; margin-top: 10px; text-align: center; transition: 1s all; } a.obs:hover{ border: 1px solid #0089ff; color: #00ceff; } /*** FORM ***/ form{ margin: 0; padding: 10px; } form input, form select, form textarea{ border: 1px solid #5d5a65; padding: 8px 20px; border-radius: 30px; box-sizing: border-box; background-color: transparent; font-size: 14px; color: #cecece; font-family: 'Open Sans', sans-serif; max-width: 100%; transition: all .3s; } form select{ border-radius: 5px; padding-left: 10px; } form select option{ background-color: #2a292e; border-radius: 10px; margin: 0; } form input:focus, form select:focus, form textarea:focus{ outline: none; border: 1px solid #049698; color: #00dde0; } form input:disabled, form select:disabled, form textarea:disabled{ border: 1px solid #242424; color: #818990; } form > div div{ margin-bottom: 10px; } form label{ font-weight: normal; color: #a2c9c9; display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-left: 10px; } form button{ background-color: darkcyan; padding: 10px 20px; text-align: center; color: white; border: 0; -webkit-appearance:none; font-size: 16px; letter-spacing: 1px; text-transform: uppercase; border-radius: 30px; transition: .3s all ease-in; cursor: pointer; } form button:focus{ outline: none; border: 1px solid darkcyan; } form button:hover{ background-color: #005757; } form button[type=submit], form button.ok{ background-color: #00c1ab; } form button[type=submit]:hover, form button.ok:hover{ background-color: #00ad6b; } form button:disabled, form button[type=submit]:disabled, form button.ok:disabled{ background-color: #537775; color: #a0afbc; opacity: .5; } form button.file{ background-color: #0080ed; width: 100%; cursor: pointer; color: azure; } form button.file:hover{ background-color: #0066f0; color: white; } /*** CURR_PANEL ***/ .form_email{ display: flex; justify-content: space-between; padding-bottom: 0; } .form_email > div{ width: 35%; box-sizing: border-box; padding: 20px; height: 100%; } .form_email > div:nth-child(2){ background-color: #333336; } .form_email .buttons{ width: 30%; } .form_email .buttons button{ width: 100%; } .form_email input, .form_email textarea, .form_email select{ width: 100%; } /*** FRONT PANEL ***/ .panel{ background-color: #2a2c2f; position: absolute; z-index: 10; border-radius: 20px; box-sizing: border-box; box-shadow: 0 0 60px rgba(0,0,0,.85); left: 40px; top: 130px; right: 40px; opacity: 0; pointer-events: none; transition: all .5s ease; } .panel.show{ opacity: 1; pointer-events: all; } .panel form{ position: relative; display: flex; justify-content: space-between; padding: 0; } .panel form > div{ margin-bottom: 0; } .panel form button, .panel form input, .panel form select{ width: 100%; } .panel form > div{ width: 38%; box-sizing: border-box; padding: 20px; } .panel form > div:nth-child(2){ background-color: #232324; } .panel form > div.buttons{ width: 24%; } .panel form > div h2{ margin: 0; font-weight: 300; margin-top: -10px; margin-bottom: 10px; border-bottom: 1px solid #ccc; } /*Adv form*/ .advanced{ position: absolute; z-index: 1; right: 15px; top: 7.5px; margin: 0; padding: 0; } .advanced button.show_ad{ color: #d4c47e; border: 1px solid #d4c47e; background-color: transparent; font-size: 14px; padding: 5px 10px; } .advanced button.show_ad:hover{ color: yellow; } /** Status Bar **/ .statusbar{ position: fixed; z-index: 1; bottom: 0; left: 0; right: 0; box-sizing: border-box; padding: 0; background-color: #e3e3e3; color: #666; text-align: center; font-size: 11px; max-height: 0; transition: all .5s ease; } .statusbar.on{ padding: 5px; background-color: #0086f8; color: white; max-height: 200px; } .template_area{ background-color: #222529; box-sizing: border-box; padding: 5px; display: flex; flex-wrap: wrap; } .template_area > div{ width: 70px; height: 100px; position: relative; margin: 2%; border: 1px solid transparent; } .template_area > div.selected{ border: 2px solid #00ffeb; } .template_area > div img{ width: auto; height: 100%; display: block; pointer-events: none; } .template_area > div.no_template{ background-color: black; } /*** MODAL ***/ .modal{ pointer-events: none; opacity: 0; left: 0; right: 0; bottom: 0; top: 0; background-color: rgba(0,0,0,.75); position: absolute; transition: .3s opacity; } .modal.show{ opacity: 1; pointer-events: all; } .modal.show.loading{ background-image: url(assets/loading.gif); background-position: center center; background-repeat: no-repeat; } /*** LANGUAGE ***/ .language{ margin-right: 200px; display: flex; } .language button{ background-color: transparent; color: #d1d1d1; border-radius: 40px; border: 1px solid #585858; margin-right: 10px; letter-spacing: 1px; padding: 3px 10px; } .language button:focus{ outline: none; } .language button.select{ border: 1px solid white; color: white; }
style.css
body{ margin: 0; font-family: 'Open Sans', sans-serif; color: #f0f0f0; margin-top: 35px; background-color: #2a292e; } header.top{ position: absolute; left: 0; right: 0; top: 0; padding: 10px 15px; box-sizing: border-box; display: flex; justify-content: space-between; box-shadow: 0 0 20px rgba(0,0,0,1); } header.top .logo{ width: 70px; position: relative; } header.top .logo img{ width: 100%; height: auto; display: block; } header.top h1{ margin: 0; font-weight: 100; letter-spacing: 2px; margin-left: 10px; color: #d9f3f4; text-transform: uppercase; font-size: 1em; } header.top .spacer{ flex: auto; width: 100%; } .wrap{ width: 100%; padding: 0; box-sizing: border-box; margin: 0 auto; } /** obs ***/ a.obs{ font-size: 12px; font-weight: normal; border: 1px solid white; color: #ffffff; text-decoration: none; padding: 10px 5px; border-radius: 30px; background-color: transparent; display: block; margin-top: 10px; text-align: center; transition: 1s all; } a.obs:hover{ border: 1px solid #0089ff; color: #00ceff; } /*** FORM ***/ form{ margin: 0; padding: 10px; } form input, form select, form textarea{ border: 1px solid #5d5a65; padding: 8px 20px; border-radius: 30px; box-sizing: border-box; background-color: transparent; font-size: 14px; color: #cecece; font-family: 'Open Sans', sans-serif; max-width: 100%; transition: all .3s; } form select{ border-radius: 5px; padding-left: 10px; } form select option{ background-color: #2a292e; border-radius: 10px; margin: 0; } form input:focus, form select:focus, form textarea:focus{ outline: none; border: 1px solid #049698; color: #00dde0; } form input:disabled, form select:disabled, form textarea:disabled{ border: 1px solid #242424; color: #818990; } form > div div{ margin-bottom: 10px; } form label{ font-weight: normal; color: #a2c9c9; display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-left: 10px; } form button{ background-color: darkcyan; padding: 10px 20px; text-align: center; color: white; border: 0; -webkit-appearance:none; font-size: 16px; letter-spacing: 1px; text-transform: uppercase; border-radius: 30px; transition: .3s all ease-in; cursor: pointer; } form button:focus{ outline: none; border: 1px solid darkcyan; } form button:hover{ background-color: #005757; } form button[type=submit], form button.ok{ background-color: #00c1ab; } form button[type=submit]:hover, form button.ok:hover{ background-color: #00ad6b; } form button:disabled, form button[type=submit]:disabled, form button.ok:disabled{ background-color: #537775; color: #a0afbc; opacity: .5; } form button.file{ background-color: #0080ed; width: 100%; cursor: pointer; color: azure; } form button.file:hover{ background-color: #0066f0; color: white; } /*** CURR_PANEL ***/ .form_email{ display: flex; justify-content: space-between; padding-bottom: 0; } .form_email > div{ width: 35%; box-sizing: border-box; padding: 20px; height: 100%; } .form_email > div:nth-child(2){ background-color: #333336; } .form_email .buttons{ width: 30%; } .form_email .buttons button{ width: 100%; } .form_email input, .form_email textarea, .form_email select{ width: 100%; } /*** FRONT PANEL ***/ .panel{ background-color: #2a2c2f; position: absolute; z-index: 10; border-radius: 20px; box-sizing: border-box; box-shadow: 0 0 60px rgba(0,0,0,.85); left: 40px; top: 130px; right: 40px; opacity: 0; pointer-events: none; transition: all .5s ease; } .panel.show{ opacity: 1; pointer-events: all; } .panel form{ position: relative; display: flex; justify-content: space-between; padding: 0; } .panel form > div{ margin-bottom: 0; } .panel form button, .panel form input, .panel form select{ width: 100%; } .panel form > div{ width: 38%; box-sizing: border-box; padding: 20px; } .panel form > div:nth-child(2){ background-color: #232324; } .panel form > div.buttons{ width: 24%; } .panel form > div h2{ margin: 0; font-weight: 300; margin-top: -10px; margin-bottom: 10px; border-bottom: 1px solid #ccc; } /*Adv form*/ .advanced{ position: absolute; z-index: 1; right: 15px; top: 7.5px; margin: 0; padding: 0; } .advanced button.show_ad{ color: #d4c47e; border: 1px solid #d4c47e; background-color: transparent; font-size: 14px; padding: 5px 10px; } .advanced button.show_ad:hover{ color: yellow; } /** Status Bar **/ .statusbar{ position: fixed; z-index: 1; bottom: 0; left: 0; right: 0; box-sizing: border-box; padding: 0; background-color: #e3e3e3; color: #666; text-align: center; font-size: 11px; max-height: 0; transition: all .5s ease; } .statusbar.on{ padding: 5px; background-color: #0086f8; color: white; max-height: 200px; } .template_area{ background-color: #222529; box-sizing: border-box; padding: 5px; display: flex; flex-wrap: wrap; } .template_area > div{ width: 70px; height: 100px; position: relative; margin: 2%; border: 1px solid transparent; } .template_area > div.selected{ border: 2px solid #00ffeb; } .template_area > div img{ width: auto; height: 100%; display: block; pointer-events: none; } .template_area > div.no_template{ background-color: black; } /*** MODAL ***/ .modal{ pointer-events: none; opacity: 0; left: 0; right: 0; bottom: 0; top: 0; background-color: rgba(0,0,0,.75); position: absolute; transition: .3s opacity; } .modal.show{ opacity: 1; pointer-events: all; } .modal.show.loading{ background-image: url(assets/loading.gif); background-position: center center; background-repeat: no-repeat; } /*** LANGUAGE ***/ .language{ margin-right: 200px; display: flex; } .language button{ background-color: transparent; color: #d1d1d1; border-radius: 40px; border: 1px solid #585858; margin-right: 10px; letter-spacing: 1px; padding: 3px 10px; } .language button:focus{ outline: none; } .language button.select{ border: 1px solid white; color: white; }
0.415136
0.080864
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap'); *{ font-family: 'Raleway', sans-serif; } body{ margin: 0px; padding: 0px; background: #e8f1f2; min-height: 100vh; } header nav{ color: #e8f1f2 ; display: flex; font-size: 18px; gap: 24px; font-family: 'Spectral', Arial, Helvetica, sans-serif; font-weight:300; padding: 0px 16px; align-items: center; height: 100%; justify-content: center; position: relative; z-index: 2; background: rgb(48, 48, 48); padding: 8px 0px; } header nav h1{ display: inline-block; font-size: 40px; margin: 0px 72px; } header a{ color: #e8f1f2; text-decoration: none; opacity: 0.5; text-transform: uppercase; font-size: 14px; } header a:hover{ text-decoration: underline; } header a.atual{ color: white; opacity: 1; font-weight: 800; } header img.banner{ width: 100%; height: 400px; object-fit: cover; } input[type="submit"], input[type="reset"]{ color: rgb(0, 102, 255); border-color: rgb(0, 102, 255); border-radius: 8px; text-transform: uppercase; height: 32px; padding: 0 16px; transition: 250ms; cursor: pointer; outline: none; width: fit-content; } input[type="submit"]:hover, input[type="reset"]:hover{ background: rgb(0, 102, 255); color: white; } input[type="submit"]:active, input[type="reset"]:active{ transform: scale(0.9); opacity: 0.8; } main{ padding: 24px 40px; } form{ display: flex; flex-direction: column; width: fit-content; gap: 16px; } input[type="text"], input[type="number"], input[type="email"], input[type="date"], select, textarea{ background: white; width: 300px; padding: 4px 16px; border-radius: 4px; } textarea{ resize: none; height: 80px; } div label{ display: inline-block; min-width: 150px; /* text-align: right; */ } label.widthauto{ min-width: auto; } table{ width: 100%; border: 2px solid #EEEEEE; } td{ border: none; text-align: center; } thead{ background: rgb(27, 27, 27); color: #f0f0f0; text-transform: uppercase; } thead tr th{ min-width: 200px; height: 60px; } tbody tr{ background: white; } tbody tr:hover{ background: #ff5404 !important; } tbody tr:nth-child(odd){ background: #EEEEEE; } tbody tr td:hover{ background: #fd6721 ; } tbody tr td{ height: 100px; } tfoot tr td{ background: rgb(27, 27, 27); color: #f0f0f0; height: 32px; text-align: center; } a.voltar{ color: white; text-decoration: none; text-transform: uppercase; background: rgb(48, 48, 48); border-radius: 8px; padding: 8px 16px; transition: 250ms; } a.voltar:hover{ background: rgb(0, 102, 255); }
Atividades/exercicios/exercicio-2/styles/global.css
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap'); *{ font-family: 'Raleway', sans-serif; } body{ margin: 0px; padding: 0px; background: #e8f1f2; min-height: 100vh; } header nav{ color: #e8f1f2 ; display: flex; font-size: 18px; gap: 24px; font-family: 'Spectral', Arial, Helvetica, sans-serif; font-weight:300; padding: 0px 16px; align-items: center; height: 100%; justify-content: center; position: relative; z-index: 2; background: rgb(48, 48, 48); padding: 8px 0px; } header nav h1{ display: inline-block; font-size: 40px; margin: 0px 72px; } header a{ color: #e8f1f2; text-decoration: none; opacity: 0.5; text-transform: uppercase; font-size: 14px; } header a:hover{ text-decoration: underline; } header a.atual{ color: white; opacity: 1; font-weight: 800; } header img.banner{ width: 100%; height: 400px; object-fit: cover; } input[type="submit"], input[type="reset"]{ color: rgb(0, 102, 255); border-color: rgb(0, 102, 255); border-radius: 8px; text-transform: uppercase; height: 32px; padding: 0 16px; transition: 250ms; cursor: pointer; outline: none; width: fit-content; } input[type="submit"]:hover, input[type="reset"]:hover{ background: rgb(0, 102, 255); color: white; } input[type="submit"]:active, input[type="reset"]:active{ transform: scale(0.9); opacity: 0.8; } main{ padding: 24px 40px; } form{ display: flex; flex-direction: column; width: fit-content; gap: 16px; } input[type="text"], input[type="number"], input[type="email"], input[type="date"], select, textarea{ background: white; width: 300px; padding: 4px 16px; border-radius: 4px; } textarea{ resize: none; height: 80px; } div label{ display: inline-block; min-width: 150px; /* text-align: right; */ } label.widthauto{ min-width: auto; } table{ width: 100%; border: 2px solid #EEEEEE; } td{ border: none; text-align: center; } thead{ background: rgb(27, 27, 27); color: #f0f0f0; text-transform: uppercase; } thead tr th{ min-width: 200px; height: 60px; } tbody tr{ background: white; } tbody tr:hover{ background: #ff5404 !important; } tbody tr:nth-child(odd){ background: #EEEEEE; } tbody tr td:hover{ background: #fd6721 ; } tbody tr td{ height: 100px; } tfoot tr td{ background: rgb(27, 27, 27); color: #f0f0f0; height: 32px; text-align: center; } a.voltar{ color: white; text-decoration: none; text-transform: uppercase; background: rgb(48, 48, 48); border-radius: 8px; padding: 8px 16px; transition: 250ms; } a.voltar:hover{ background: rgb(0, 102, 255); }
0.437103
0.067454
.mw-bs .container { width: 100%; height: 100%; padding:0; margin: 0; } .mw-bs .main:first-of-type { margin: 0; } .nav-header { position: absolute; width:100%; height: 80px; top:0; border-bottom: 3px groove #cec2c2; display: flex; align-items: center; background-color: #242b39; } .nav-header-icon { display: inline-flex; align-items: center; width: 4vw; text-align: center; height: 100%; } .nav-header-icon-img { height: 2vw; width: 2vw; margin-left: 1vw; margin-right: auto; } .nav-header-title-old { display: inline-flex; align-items: center; margin-left: 30px; height: 100%; } .nav-header-title { display: flex; align-items: center; margin-left: 10px; height: 100%; } .nav-header-user { display: flex; align-items: center; margin-left: 30px; height: 100%; margin-left: 50px; } .user-name { color: #ccc; font-size: 14pt; line-height: 0.5; vertical-align: text-bottom; } .user-summary { color: #ccc; font-size: 10pt; line-height: 0.5; vertical-align: middle; } .nav-header-avatar { border-radius: 100%; } .nav-header-text { font-family: tahoma; color: #ccc; font-size: 20pt; white-space: nowrap; } .nav-header-sub-text { font-family: tahoma; color: #fefefe; font-size: 12pt; white-space: nowrap; } .nav-header-controls { height: 100%; display: inline-flex; align-items: center; margin-left: auto; padding: 10px; } .nav-header-controls-button { color: #ccc !important; font-size: 18pt !important; padding-left: 15px; padding-right: 20px; font-weight: normal !important; cursor: pointer; } .nav-header-controls-button:hover { color: #fefefe !important; text-decoration: underline; } .nav-header-link { color: #ccc !important; font-size: 14pt !important; padding-left: 15px; padding-right: 20px; font-weight: normal !important; cursor: pointer; white-space: nowrap; } .nav-header-link:hover { color: #fefefe !important; text-decoration: underline; } .nav-menu { color: #ccc !important; font-size: 14pt !important; padding-left: 6px; padding-right: 20px; font-weight: normal !important; cursor: pointer; white-space: nowrap; } .nav-sub-menu:hover { color: #fefefe !important; text-decoration: underline; } .nav-sub-menu { margin-left: 20px; background-color: #242b39; padding-left: 20px; padding-right: 20px; color: #ccc; /* overflow: visible; */ z-index: 1000; font-size: 14pt; white-space: nowrap; } .hot { color: #f07979 !important; }
src/navigation-menu/NavigationMenu.css
.mw-bs .container { width: 100%; height: 100%; padding:0; margin: 0; } .mw-bs .main:first-of-type { margin: 0; } .nav-header { position: absolute; width:100%; height: 80px; top:0; border-bottom: 3px groove #cec2c2; display: flex; align-items: center; background-color: #242b39; } .nav-header-icon { display: inline-flex; align-items: center; width: 4vw; text-align: center; height: 100%; } .nav-header-icon-img { height: 2vw; width: 2vw; margin-left: 1vw; margin-right: auto; } .nav-header-title-old { display: inline-flex; align-items: center; margin-left: 30px; height: 100%; } .nav-header-title { display: flex; align-items: center; margin-left: 10px; height: 100%; } .nav-header-user { display: flex; align-items: center; margin-left: 30px; height: 100%; margin-left: 50px; } .user-name { color: #ccc; font-size: 14pt; line-height: 0.5; vertical-align: text-bottom; } .user-summary { color: #ccc; font-size: 10pt; line-height: 0.5; vertical-align: middle; } .nav-header-avatar { border-radius: 100%; } .nav-header-text { font-family: tahoma; color: #ccc; font-size: 20pt; white-space: nowrap; } .nav-header-sub-text { font-family: tahoma; color: #fefefe; font-size: 12pt; white-space: nowrap; } .nav-header-controls { height: 100%; display: inline-flex; align-items: center; margin-left: auto; padding: 10px; } .nav-header-controls-button { color: #ccc !important; font-size: 18pt !important; padding-left: 15px; padding-right: 20px; font-weight: normal !important; cursor: pointer; } .nav-header-controls-button:hover { color: #fefefe !important; text-decoration: underline; } .nav-header-link { color: #ccc !important; font-size: 14pt !important; padding-left: 15px; padding-right: 20px; font-weight: normal !important; cursor: pointer; white-space: nowrap; } .nav-header-link:hover { color: #fefefe !important; text-decoration: underline; } .nav-menu { color: #ccc !important; font-size: 14pt !important; padding-left: 6px; padding-right: 20px; font-weight: normal !important; cursor: pointer; white-space: nowrap; } .nav-sub-menu:hover { color: #fefefe !important; text-decoration: underline; } .nav-sub-menu { margin-left: 20px; background-color: #242b39; padding-left: 20px; padding-right: 20px; color: #ccc; /* overflow: visible; */ z-index: 1000; font-size: 14pt; white-space: nowrap; } .hot { color: #f07979 !important; }
0.44746
0.061678
@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@400;500;700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Cabin&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap'); :root { --vertical-space: 2rem; --horizontal-space: 3rem; --light-color: #F0B7A4; --body-color: #000000; --heading-color: #305F72; --contrast-color: #F18C8E; } @font-face { font-family: MyFont; src: url(815a980c8a014b26f5d0ff7407d7de17.woff) format('woff') } nav { font-weight: 500; /*font-family: MyFont, sans-serif;*/ } body { font-size: 18px; line-height: 1.5; font-family: 'Open Sans', sans-serif; color: var(--body-color); background-color: #f0f0f0; background-image: url("https://www.transparenttextures.com/patterns/axiom-pattern.png"); } main { background-color: white; } h1, h2, h3 { line-height: 1.2; font-family: '<NAME>', serif; font-weight: 700; color: (var(--heading-color)) } a { color: var(--body-color); text-decoration-color: var(--light-color); } a:hover { color: var(--contrast-color); } h2, h3 { font-family: '<NAME>', serif; font-weight: 500; } #aboutImg { padding:0px; margin: 0px; max-width: 90%; float: center; } p { max-width: 60em; } body { display: grid; grid-template-areas: "head head" "nav nav" "main main" "foot foot"; grid-template-columns: 1fr 4fr; grid-template-rows: auto auto 1fr auto; } body>nav ul{ list-style-type: none; padding: 0; } body>nav ul li { display: inline-block; } body>* { padding-left: var(--horizontal-space); padding-right: var(--horizontal-space); padding-bottom: var(--vertical-space); } body>header { grid-area: head; } body>nav { grid-area: nav; } body>main { grid-area: main; } body>footer { grid-area: foot; } header, footer { padding-top: var(--vertical-space); padding-bottom: var(--vertical-space); } header h1, footer h1 { margin: 0; } header { padding-bottom: 0; } #portText{ margin-left: -1em; } #portfolioItems { display: flex; flex-wrap: wrap; flex: 1; list-style-type: none; padding: 0; } #portImg { max-width: 100%; float: center; padding: 0px; margin-left: auto; margin-right: auto; display: block; text-align: justify; } nav{ padding-bottom: 1rem; } nav ul, #name { margin-left: auto; margin-right: auto; padding: 0px; text-align: center; } #navLi{ margin-left: 0.75rem; margin-right: 0.75rem; } #reveal1 { opacity: 0; -webkit-transform: scale(0.9); -moz-transform: scale(0.9); -ms-transform: scale(0.9); -o-transform: scale(0.9); transform: scale(0.9); -webkit-transition: all 1s ease-in-out; -moz-transition: all 1s ease-in-out; -ms-transition: all 1s ease-in-out; -o-transition: all 1s ease-in-out; transition: all 1s ease-in-out; } #reveal1.visible { opacity: 1; -webkit-transform: none; -moz-transform: none; -ms-transform: none; -o-transform: none; transform: none; } @media screen and (min-width: 640px) { #portfolioItems li{ flex-basis: 48%; padding-right: 2%; max-width: 100%; } #portfolioItems li img{ max-width: 100%; } #aboutImg{ display: block; float: left; height: 15em; margin-right: 32px; margin-bottom: 10px; } } @media screen and (min-width: 769px) { #name{ text-align: left; padding-bottom: 2rem; } body { display: grid; grid-template-areas: "head head" "nav main" "foot foot"; grid-template-columns: auto 4fr; grid-template-rows: auto auto 1fr auto; } body>nav ul { list-style-type: none; padding: 0; } body>nav ul li { display: block; } header h1{ padding-bottom: 1em; } #portfolioItems li img{ max-height: 280px; max-width: 100%; flex-basis: 48%; } }
styles/main.css
@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@400;500;700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Cabin&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap'); :root { --vertical-space: 2rem; --horizontal-space: 3rem; --light-color: #F0B7A4; --body-color: #000000; --heading-color: #305F72; --contrast-color: #F18C8E; } @font-face { font-family: MyFont; src: url(815a980c8a014b26f5d0ff7407d7de17.woff) format('woff') } nav { font-weight: 500; /*font-family: MyFont, sans-serif;*/ } body { font-size: 18px; line-height: 1.5; font-family: 'Open Sans', sans-serif; color: var(--body-color); background-color: #f0f0f0; background-image: url("https://www.transparenttextures.com/patterns/axiom-pattern.png"); } main { background-color: white; } h1, h2, h3 { line-height: 1.2; font-family: '<NAME>', serif; font-weight: 700; color: (var(--heading-color)) } a { color: var(--body-color); text-decoration-color: var(--light-color); } a:hover { color: var(--contrast-color); } h2, h3 { font-family: '<NAME>', serif; font-weight: 500; } #aboutImg { padding:0px; margin: 0px; max-width: 90%; float: center; } p { max-width: 60em; } body { display: grid; grid-template-areas: "head head" "nav nav" "main main" "foot foot"; grid-template-columns: 1fr 4fr; grid-template-rows: auto auto 1fr auto; } body>nav ul{ list-style-type: none; padding: 0; } body>nav ul li { display: inline-block; } body>* { padding-left: var(--horizontal-space); padding-right: var(--horizontal-space); padding-bottom: var(--vertical-space); } body>header { grid-area: head; } body>nav { grid-area: nav; } body>main { grid-area: main; } body>footer { grid-area: foot; } header, footer { padding-top: var(--vertical-space); padding-bottom: var(--vertical-space); } header h1, footer h1 { margin: 0; } header { padding-bottom: 0; } #portText{ margin-left: -1em; } #portfolioItems { display: flex; flex-wrap: wrap; flex: 1; list-style-type: none; padding: 0; } #portImg { max-width: 100%; float: center; padding: 0px; margin-left: auto; margin-right: auto; display: block; text-align: justify; } nav{ padding-bottom: 1rem; } nav ul, #name { margin-left: auto; margin-right: auto; padding: 0px; text-align: center; } #navLi{ margin-left: 0.75rem; margin-right: 0.75rem; } #reveal1 { opacity: 0; -webkit-transform: scale(0.9); -moz-transform: scale(0.9); -ms-transform: scale(0.9); -o-transform: scale(0.9); transform: scale(0.9); -webkit-transition: all 1s ease-in-out; -moz-transition: all 1s ease-in-out; -ms-transition: all 1s ease-in-out; -o-transition: all 1s ease-in-out; transition: all 1s ease-in-out; } #reveal1.visible { opacity: 1; -webkit-transform: none; -moz-transform: none; -ms-transform: none; -o-transform: none; transform: none; } @media screen and (min-width: 640px) { #portfolioItems li{ flex-basis: 48%; padding-right: 2%; max-width: 100%; } #portfolioItems li img{ max-width: 100%; } #aboutImg{ display: block; float: left; height: 15em; margin-right: 32px; margin-bottom: 10px; } } @media screen and (min-width: 769px) { #name{ text-align: left; padding-bottom: 2rem; } body { display: grid; grid-template-areas: "head head" "nav main" "foot foot"; grid-template-columns: auto 4fr; grid-template-rows: auto auto 1fr auto; } body>nav ul { list-style-type: none; padding: 0; } body>nav ul li { display: block; } header h1{ padding-bottom: 1em; } #portfolioItems li img{ max-height: 280px; max-width: 100%; flex-basis: 48%; } }
0.41182
0.105487
[data-md-color-scheme="slate"][data-md-color-primary=hedgedoc] { --md-hue: 8; --md-default-fg-color: hsla(var(--md-hue), 20%, 80%, 1); --md-default-fg-color--light: hsla(var(--md-hue), 20%, 80%, 1); --md-default-fg-color--lighter: hsla(var(--md-hue), 20%, 80%, 0.5); --md-default-fg-color--lightest: hsla(var(--md-hue), 20%, 80%, 0.2); --md-default-bg-color: hsla(var(--md-hue), 0%, 5%, 1); --md-default-bg-color--light: hsla(var(--md-hue), 0%, 5%, 0.54); --md-default-bg-color--lighter: hsla(var(--md-hue), 0%, 5%, 0.26); --md-default-bg-color--lightest: hsla(var(--md-hue), 0%, 5%, 0.07); --md-typeset-color: hsl(var(--md-hue), 5%, 80%); --md-typeset-a-color: hsl(var(--md-hue), 92%, 67%, 1); --md-primary-fg-color: hsl(var(--md-hue), 92%, 25%, 1); --md-table-header-fg-color: var(--md-typeset-color); --md-table-header-bg-color: hsla(var(--md-hue), 0%, 20%, 1); --md-code-fg-color: hsla(var(--md-hue),0%,86%,1); --md-code-bg-color: hsla(var(--md-hue),0%,15%,1); } [data-md-color-primary=hedgedoc] .md-typeset table:not([class]) th { background-color: var(--md-table-header-bg-color); color: var(--md-table-header-fg-color); } [data-md-color-primary=hedgedoc] { --md-hue: 8; --md-primary-fg-color: hsl(var(--md-hue), 92%, 37%, 1); --md-primary-fg-color--dark: var(--md-primary-fg-color); --md-primary-fg-color--light: var(--md-primary-fg-color); --md-primary-bg-color: hsla(0, 15%, 100%, 1); --md-footer-bg-color: hsla(var(--md-hue), 0%, 12%, 1); --md-footer-bg-color--dark: hsla(var(--md-hue), 0%, 16%, 1); --md-table-header-fg-color: var(--md-default-bg-color); --md-table-header-bg-color: var(--md-default-fg-color--light); } [data-md-color-accent=hedgedoc] { --md-accent-fg-color: #b51f08; --md-accent-fg-color--transparent: hsla(348, 100%, 55%, 0.1); --md-accent-bg-color: hsla(0, 0%, 100%, 1); --md-accent-bg-color--light: hsla(0, 0%, 100%, 0.7); } .md-grid { max-width: 1440px; } .twitter { color: #1DA1F2; } .mastodon { color: #2b90d9; } [data-md-color-scheme="slate"] .light-mode-only { display: none; } [data-md-color-scheme="light"] .dark-mode-only { display: none; }
docs/content/theme/styles/hedgedoc-custom.css
[data-md-color-scheme="slate"][data-md-color-primary=hedgedoc] { --md-hue: 8; --md-default-fg-color: hsla(var(--md-hue), 20%, 80%, 1); --md-default-fg-color--light: hsla(var(--md-hue), 20%, 80%, 1); --md-default-fg-color--lighter: hsla(var(--md-hue), 20%, 80%, 0.5); --md-default-fg-color--lightest: hsla(var(--md-hue), 20%, 80%, 0.2); --md-default-bg-color: hsla(var(--md-hue), 0%, 5%, 1); --md-default-bg-color--light: hsla(var(--md-hue), 0%, 5%, 0.54); --md-default-bg-color--lighter: hsla(var(--md-hue), 0%, 5%, 0.26); --md-default-bg-color--lightest: hsla(var(--md-hue), 0%, 5%, 0.07); --md-typeset-color: hsl(var(--md-hue), 5%, 80%); --md-typeset-a-color: hsl(var(--md-hue), 92%, 67%, 1); --md-primary-fg-color: hsl(var(--md-hue), 92%, 25%, 1); --md-table-header-fg-color: var(--md-typeset-color); --md-table-header-bg-color: hsla(var(--md-hue), 0%, 20%, 1); --md-code-fg-color: hsla(var(--md-hue),0%,86%,1); --md-code-bg-color: hsla(var(--md-hue),0%,15%,1); } [data-md-color-primary=hedgedoc] .md-typeset table:not([class]) th { background-color: var(--md-table-header-bg-color); color: var(--md-table-header-fg-color); } [data-md-color-primary=hedgedoc] { --md-hue: 8; --md-primary-fg-color: hsl(var(--md-hue), 92%, 37%, 1); --md-primary-fg-color--dark: var(--md-primary-fg-color); --md-primary-fg-color--light: var(--md-primary-fg-color); --md-primary-bg-color: hsla(0, 15%, 100%, 1); --md-footer-bg-color: hsla(var(--md-hue), 0%, 12%, 1); --md-footer-bg-color--dark: hsla(var(--md-hue), 0%, 16%, 1); --md-table-header-fg-color: var(--md-default-bg-color); --md-table-header-bg-color: var(--md-default-fg-color--light); } [data-md-color-accent=hedgedoc] { --md-accent-fg-color: #b51f08; --md-accent-fg-color--transparent: hsla(348, 100%, 55%, 0.1); --md-accent-bg-color: hsla(0, 0%, 100%, 1); --md-accent-bg-color--light: hsla(0, 0%, 100%, 0.7); } .md-grid { max-width: 1440px; } .twitter { color: #1DA1F2; } .mastodon { color: #2b90d9; } [data-md-color-scheme="slate"] .light-mode-only { display: none; } [data-md-color-scheme="light"] .dark-mode-only { display: none; }
0.400984
0.071203
.myclass-container{ width:100%; background-color: #EEEEEE; min-height:1000px; margin: 0 auto; } .myclass-container .class-info{ margin-left: 74px; margin-top:116px; text-align: center; width:254px; height:500px; display: inline-block; } .myclass-container .class-info .semester{ width:254px; height: 40px; background-color: white; font-size:17px; color:#EF5350; border:1px solid #EF5350; border-radius: 20px; margin-bottom: 36px; } .myclass-container .class-info h2{ font-size:8px; color:#231F20; text-align: left; opacity: 0.3; margin:0 auto; } .myclass-container .class-info .input-group{ margin-top:10px; } input[class="search-form"]::-webkit-input-placeholder{ color:white !important; opacity: 0.38; } .myclass-container .class-info .divider{ margin-top:7px; margin-bottom:16px; width:254px; height:1px; background-color:#231F20; opacity: 0.3; } .myclass-container .class-info .class-list ul li{ font-size:12px; background-color: inherit; border:none; border-bottom:1px solid rgba(0,0,0,0.18); color:black; width:210px; display:inline-block; cursor: pointer; line-height: 38px; } .myclass-container .class-info .class-list ul li:hover{ background-color:#FFFFFf; color:#EF5350; cursor: pointer; font-weight: bold; } .myclass-container .class-info .finish{ margin-top:68px; background-color: #EF5350; color:white; font-size: 13px; height:40px; width:220px; border-radius: 5px; border:none; } .myclass-container .time-table{ background-color: white; margin-top:23px; margin-left: 44px; text-align: center; height:665px; width:786px; border-radius: 20px; display: inline-block; } .myclass-container .time-table .contents{ margin-left: 44px; margin-top:23px; } .myclass-container .time-table tr th{ width:117px; text-align:center; font-size:21px; font-weight: bold; height:36px; border-right:1px solid rgba(0,0,0,0.22); vertical-align: center; padding-top:0px; } .myclass-container .time-table tr td{ width:117px; text-align: center; font-size:18px; border:1px solid rgba(0,0,0,0.22); margin: 0 auto; } .myclass-container .time-table h2{ font-size:9px; color:black; opacity:0.54; margin:0 auto; display: inline-block; } .myclass-container .time-table tr{ height:18px; } .myclass-container .time-table .contents tr .first{ border:none; border-bottom: 1px solid rgba(0,0,0,0.22); } .myclass-container .time-table .contents tr .first.very{ border-top:1px solid rgba(0,0,0,0.22); } .myclass-container .time-table .contents tr .last{ border:none; border-bottom: 1px solid rgba(0,0,0,0.22); } .myclass-container .time-table .contents .green.o{ font-size:12px; color:black; font-weight: bold; } .myclass-container .time-table .contents .green.t{ font-size:12px; color:black; } .myclass-container .time-table .contents .purple.o{ font-size:10px; color:#3A52A4; font-weight: bold; } .myclass-container .time-table .contents .purple.t{ font-size:12px; color:#3A52A4; } .myclass-container .time-table .contents .pink.o{ font-size:12px; color:#C04D9C; font-weight: bold; } .myclass-container .time-table .contents .pink.t{ font-size:12px; color:#C04D9C; } .myclass-container .time-table .contents .orange.o{ font-size:12px; color:#F26721; font-weight: bold; } .myclass-container .time-table .contents .orange.t{ font-size:12px; color:#F26721; } .myclass-container .time-table .contents .s-green.o{ font-size:12px; color:#ACD036; font-weight: bold; } .myclass-container .time-table .contents .s-green.t{ font-size:12px; color:#ACD036; } .myclass-container .time-table .contents .red.o{ font-size:12px; color:#ED1D2E; font-weight: bold; } .myclass-container .time-table .contents .red.t{ font-size:12px; color:#ED1D2E; } .myclass-container .time-table .contents .green{ background-color:#ACDBCA; border:none; margin:0 auto; } .myclass-container .time-table .contents .purple{ background-color: #CAC7E4; border:none; margin:0 auto; } .myclass-container .time-table .contents .pink{ background-color: #E5CBE2; border:none; margin:0 auto; } .myclass-container .time-table .contents .orange{ background-color: #FCD2B6; border:none; margin:0 auto; } .myclass-container .time-table .contents .s-green{ background-color: #E1EFD4; border:none; margin:0 auto; } .myclass-container .time-table .contents .red{ background-color: #F48A94; border:none; margin:0 auto; }
client/module/landing/css/myclass.css
.myclass-container{ width:100%; background-color: #EEEEEE; min-height:1000px; margin: 0 auto; } .myclass-container .class-info{ margin-left: 74px; margin-top:116px; text-align: center; width:254px; height:500px; display: inline-block; } .myclass-container .class-info .semester{ width:254px; height: 40px; background-color: white; font-size:17px; color:#EF5350; border:1px solid #EF5350; border-radius: 20px; margin-bottom: 36px; } .myclass-container .class-info h2{ font-size:8px; color:#231F20; text-align: left; opacity: 0.3; margin:0 auto; } .myclass-container .class-info .input-group{ margin-top:10px; } input[class="search-form"]::-webkit-input-placeholder{ color:white !important; opacity: 0.38; } .myclass-container .class-info .divider{ margin-top:7px; margin-bottom:16px; width:254px; height:1px; background-color:#231F20; opacity: 0.3; } .myclass-container .class-info .class-list ul li{ font-size:12px; background-color: inherit; border:none; border-bottom:1px solid rgba(0,0,0,0.18); color:black; width:210px; display:inline-block; cursor: pointer; line-height: 38px; } .myclass-container .class-info .class-list ul li:hover{ background-color:#FFFFFf; color:#EF5350; cursor: pointer; font-weight: bold; } .myclass-container .class-info .finish{ margin-top:68px; background-color: #EF5350; color:white; font-size: 13px; height:40px; width:220px; border-radius: 5px; border:none; } .myclass-container .time-table{ background-color: white; margin-top:23px; margin-left: 44px; text-align: center; height:665px; width:786px; border-radius: 20px; display: inline-block; } .myclass-container .time-table .contents{ margin-left: 44px; margin-top:23px; } .myclass-container .time-table tr th{ width:117px; text-align:center; font-size:21px; font-weight: bold; height:36px; border-right:1px solid rgba(0,0,0,0.22); vertical-align: center; padding-top:0px; } .myclass-container .time-table tr td{ width:117px; text-align: center; font-size:18px; border:1px solid rgba(0,0,0,0.22); margin: 0 auto; } .myclass-container .time-table h2{ font-size:9px; color:black; opacity:0.54; margin:0 auto; display: inline-block; } .myclass-container .time-table tr{ height:18px; } .myclass-container .time-table .contents tr .first{ border:none; border-bottom: 1px solid rgba(0,0,0,0.22); } .myclass-container .time-table .contents tr .first.very{ border-top:1px solid rgba(0,0,0,0.22); } .myclass-container .time-table .contents tr .last{ border:none; border-bottom: 1px solid rgba(0,0,0,0.22); } .myclass-container .time-table .contents .green.o{ font-size:12px; color:black; font-weight: bold; } .myclass-container .time-table .contents .green.t{ font-size:12px; color:black; } .myclass-container .time-table .contents .purple.o{ font-size:10px; color:#3A52A4; font-weight: bold; } .myclass-container .time-table .contents .purple.t{ font-size:12px; color:#3A52A4; } .myclass-container .time-table .contents .pink.o{ font-size:12px; color:#C04D9C; font-weight: bold; } .myclass-container .time-table .contents .pink.t{ font-size:12px; color:#C04D9C; } .myclass-container .time-table .contents .orange.o{ font-size:12px; color:#F26721; font-weight: bold; } .myclass-container .time-table .contents .orange.t{ font-size:12px; color:#F26721; } .myclass-container .time-table .contents .s-green.o{ font-size:12px; color:#ACD036; font-weight: bold; } .myclass-container .time-table .contents .s-green.t{ font-size:12px; color:#ACD036; } .myclass-container .time-table .contents .red.o{ font-size:12px; color:#ED1D2E; font-weight: bold; } .myclass-container .time-table .contents .red.t{ font-size:12px; color:#ED1D2E; } .myclass-container .time-table .contents .green{ background-color:#ACDBCA; border:none; margin:0 auto; } .myclass-container .time-table .contents .purple{ background-color: #CAC7E4; border:none; margin:0 auto; } .myclass-container .time-table .contents .pink{ background-color: #E5CBE2; border:none; margin:0 auto; } .myclass-container .time-table .contents .orange{ background-color: #FCD2B6; border:none; margin:0 auto; } .myclass-container .time-table .contents .s-green{ background-color: #E1EFD4; border:none; margin:0 auto; } .myclass-container .time-table .contents .red{ background-color: #F48A94; border:none; margin:0 auto; }
0.362743
0.05715
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Roboto+Slab:wght@300;700&display=swap'); html, body { font-size: 16px; /* overflow-x: hidden; */ background-color: #f5f5f5; font-family: 'Montserrat', sans-serif; } root { --black-three: #121212; } /* imges */ img { object-fit: cover; } /* navbar */ .navbar { padding: 1rem 3rem; } .bg-light { background-color: white !important; } .navbar-brand { color: #0290ff !important; font-weight: bold; font-size: 26px; } .nav-link { font-weight: bold; font-size: 12px; letter-spacing: 2px; } /* BooksForm */ .lbl-anb { font-weight: bold; color: rgba(0, 0, 0, 0.5); } .app { width: 100vw; background-color: #fafafa; box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05); } .cat-section { opacity: 0.5; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: normal; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: 1.9px; border: none; } .cat-section:hover { outline: none; } .panel { width: 80%; margin: 1rem auto; border-radius: 4px; background-color: #fff; border: 1px solid rgba(0, 0, 0, 0.125); font-family: 'Roboto Slab', serif; display: flex; padding: 1rem; justify-content: space-between; align-items: center; } .left { width: 75%; display: flex; align-items: center; justify-content: space-between; padding-right: 5rem; } .title { font-size: 22px; font-weight: bold; letter-spacing: -0.2px; color: #121212; font-family: 'Roboto Slab', serif; text-transform: capitalize; padding-bottom: 0.3rem; } .category { font-size: 14px; font-weight: 700; color: #adadad; font-family: 'Montserrat', sans-serif; text-transform: capitalize; } .author { font-size: 14px; font-weight: 300; font-family: 'Roboto Slab', serif; color: #4386bf; } .actions { margin: 1rem 0 0.3rem; } .actions > button { height: 19px; font-size: 14px; font-weight: 400; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; color: #4386bf; font-family: 'Roboto Slab', serif; border: none; background-color: transparent; } .actions > button:hover { cursor: pointer; color: #adadad; outline: none; border: none; } .actions > button:first-child { padding-right: 0.8rem; } .actions > button:nth-child(2) { border-left: solid 1px #e8e8e8; border-right: solid 1px #e8e8e8; text-align: center; padding: 0 0.8rem; } .actions > button:last-child { padding-left: 0.8rem; } .chapter-details { display: flex; flex-direction: column; margin: auto; font-family: 'Roboto Slab', serif; } .current-chapter { height: 18px; opacity: 0.5; font-family: 'Roboto Slab', serif; font-size: 13px; font-weight: 300; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; color: var(--black-three); } .border { height: 70px; border: solid 2px #e8e8e8; background-color: #e8e8e8; } .progress-bar { width: 68px; height: 68px; background-color: transparent; } .stats { display: flex; align-items: center; } .percentage-value { display: flex; flex-direction: column; align-items: center; justify-content: center; margin-left: 1.5rem; font-family: 'Montserrat', sans-serif; } .progress-bar-text { color: #121212; font-weight: 400; font-size: 32px; } .percentage-status { color: #adadad; } .chapter-details div:first-child { font-weight: 300; font-size: 13px; opacity: 0.5; text-transform: uppercase; margin-bottom: 0.3rem; } .chapter-details div:nth-child(2) { text-transform: capitalize; font-size: 16px; letter-spacing: -0.4px; font-weight: 300; margin-bottom: 1rem; } .update-progress { background-color: #0290ff !important; padding: 0.25rem 1.35rem !important; font-size: 13px; text-transform: uppercase; }
src/assets/styles/index.css
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Roboto+Slab:wght@300;700&display=swap'); html, body { font-size: 16px; /* overflow-x: hidden; */ background-color: #f5f5f5; font-family: 'Montserrat', sans-serif; } root { --black-three: #121212; } /* imges */ img { object-fit: cover; } /* navbar */ .navbar { padding: 1rem 3rem; } .bg-light { background-color: white !important; } .navbar-brand { color: #0290ff !important; font-weight: bold; font-size: 26px; } .nav-link { font-weight: bold; font-size: 12px; letter-spacing: 2px; } /* BooksForm */ .lbl-anb { font-weight: bold; color: rgba(0, 0, 0, 0.5); } .app { width: 100vw; background-color: #fafafa; box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05); } .cat-section { opacity: 0.5; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: normal; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: 1.9px; border: none; } .cat-section:hover { outline: none; } .panel { width: 80%; margin: 1rem auto; border-radius: 4px; background-color: #fff; border: 1px solid rgba(0, 0, 0, 0.125); font-family: 'Roboto Slab', serif; display: flex; padding: 1rem; justify-content: space-between; align-items: center; } .left { width: 75%; display: flex; align-items: center; justify-content: space-between; padding-right: 5rem; } .title { font-size: 22px; font-weight: bold; letter-spacing: -0.2px; color: #121212; font-family: 'Roboto Slab', serif; text-transform: capitalize; padding-bottom: 0.3rem; } .category { font-size: 14px; font-weight: 700; color: #adadad; font-family: 'Montserrat', sans-serif; text-transform: capitalize; } .author { font-size: 14px; font-weight: 300; font-family: 'Roboto Slab', serif; color: #4386bf; } .actions { margin: 1rem 0 0.3rem; } .actions > button { height: 19px; font-size: 14px; font-weight: 400; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; color: #4386bf; font-family: 'Roboto Slab', serif; border: none; background-color: transparent; } .actions > button:hover { cursor: pointer; color: #adadad; outline: none; border: none; } .actions > button:first-child { padding-right: 0.8rem; } .actions > button:nth-child(2) { border-left: solid 1px #e8e8e8; border-right: solid 1px #e8e8e8; text-align: center; padding: 0 0.8rem; } .actions > button:last-child { padding-left: 0.8rem; } .chapter-details { display: flex; flex-direction: column; margin: auto; font-family: 'Roboto Slab', serif; } .current-chapter { height: 18px; opacity: 0.5; font-family: 'Roboto Slab', serif; font-size: 13px; font-weight: 300; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; color: var(--black-three); } .border { height: 70px; border: solid 2px #e8e8e8; background-color: #e8e8e8; } .progress-bar { width: 68px; height: 68px; background-color: transparent; } .stats { display: flex; align-items: center; } .percentage-value { display: flex; flex-direction: column; align-items: center; justify-content: center; margin-left: 1.5rem; font-family: 'Montserrat', sans-serif; } .progress-bar-text { color: #121212; font-weight: 400; font-size: 32px; } .percentage-status { color: #adadad; } .chapter-details div:first-child { font-weight: 300; font-size: 13px; opacity: 0.5; text-transform: uppercase; margin-bottom: 0.3rem; } .chapter-details div:nth-child(2) { text-transform: capitalize; font-size: 16px; letter-spacing: -0.4px; font-weight: 300; margin-bottom: 1rem; } .update-progress { background-color: #0290ff !important; padding: 0.25rem 1.35rem !important; font-size: 13px; text-transform: uppercase; }
0.376852
0.09782
* { box-sizing: border-box; margin: 0 auto; text-align: center; font-size: 1.1rem; font-family: Verdana, Geneva, Tahoma, sans-serif; } body { background-color: black; } .card-container { margin: 0 10px; display: flex; justify-content: center; flex-direction: column; } .mdl-card { width: 90%; margin: 0 auto 15px auto; } .card-inner { display: grid; grid-template: 1fr / repeat(3, 1fr); } .card-inner div, .card-inner button { display: flex; justify-self: center; } .card-inner div { align-items: center; } .form-control { width: 550px; padding: 10px; margin-bottom: 2vh; border-radius: 0.5vw; text-align: left; } .btn { padding: 10px; border-radius: 0.5vw; } .btn:hover { opacity: 50%; /* cursor: move; */ } #infologin { color: white; width: 550px; margin-top: 5vh; } #statuslogin{ margin-top: 20px; color:yellow; width:550px; font-size: 0.8em; font-weight: 500; } img{ width: 40%; height: auto; border: solid 1px white; margin-bottom: 20px; } .texto{ width:40%; color:white; text-align: justify; margin: 0 auto; padding: 5px 0px; } hr{ width: 40%; } h2{ color:white; } .logo { width:300px; margin-top: 5vh; border:none; margin-bottom: 0; } footer { position: static; text-align: center; bottom: 0; width: 100%; color: rgb(84, 186, 211); font-style: italic; } footer a{ color: rgb(84, 186, 211); /* text-decoration: none; */ font-size: inherit; } span#redefinir{ display: inline-block; margin-top: 20px; color:rgb(34, 176, 233); } span#redefinir:hover{ color:rgb(234, 238, 240); cursor:pointer } @media (max-width: 700px) { .logo { width:90vw; margin-top: 5vh; } img{ width: 90vw; height: auto; border: solid 1px white; margin-bottom: 20px; } .texto{ width:90vw; color:white; text-align: justify; margin: 0 auto; padding: 5px 0px; } hr{ width: 90vw; } .form-control { width: 90vw; padding: 10px; margin-bottom: 2vh; border-radius: 2vw; text-align: left; } #infologin { width: 90vw; color: white; margin-top: 5vh; } #statuslogin{ width: 90vw; color:yellow; margin-top: 5vh; } footer { font-size:2.5vw; position: static; text-align: center; bottom: 0; width: 100%; color: rgb(84, 186, 211); font-style: italic; } .btn { padding: 10px; border-radius: 2vw; } }
authentication/main.css
* { box-sizing: border-box; margin: 0 auto; text-align: center; font-size: 1.1rem; font-family: Verdana, Geneva, Tahoma, sans-serif; } body { background-color: black; } .card-container { margin: 0 10px; display: flex; justify-content: center; flex-direction: column; } .mdl-card { width: 90%; margin: 0 auto 15px auto; } .card-inner { display: grid; grid-template: 1fr / repeat(3, 1fr); } .card-inner div, .card-inner button { display: flex; justify-self: center; } .card-inner div { align-items: center; } .form-control { width: 550px; padding: 10px; margin-bottom: 2vh; border-radius: 0.5vw; text-align: left; } .btn { padding: 10px; border-radius: 0.5vw; } .btn:hover { opacity: 50%; /* cursor: move; */ } #infologin { color: white; width: 550px; margin-top: 5vh; } #statuslogin{ margin-top: 20px; color:yellow; width:550px; font-size: 0.8em; font-weight: 500; } img{ width: 40%; height: auto; border: solid 1px white; margin-bottom: 20px; } .texto{ width:40%; color:white; text-align: justify; margin: 0 auto; padding: 5px 0px; } hr{ width: 40%; } h2{ color:white; } .logo { width:300px; margin-top: 5vh; border:none; margin-bottom: 0; } footer { position: static; text-align: center; bottom: 0; width: 100%; color: rgb(84, 186, 211); font-style: italic; } footer a{ color: rgb(84, 186, 211); /* text-decoration: none; */ font-size: inherit; } span#redefinir{ display: inline-block; margin-top: 20px; color:rgb(34, 176, 233); } span#redefinir:hover{ color:rgb(234, 238, 240); cursor:pointer } @media (max-width: 700px) { .logo { width:90vw; margin-top: 5vh; } img{ width: 90vw; height: auto; border: solid 1px white; margin-bottom: 20px; } .texto{ width:90vw; color:white; text-align: justify; margin: 0 auto; padding: 5px 0px; } hr{ width: 90vw; } .form-control { width: 90vw; padding: 10px; margin-bottom: 2vh; border-radius: 2vw; text-align: left; } #infologin { width: 90vw; color: white; margin-top: 5vh; } #statuslogin{ width: 90vw; color:yellow; margin-top: 5vh; } footer { font-size:2.5vw; position: static; text-align: center; bottom: 0; width: 100%; color: rgb(84, 186, 211); font-style: italic; } .btn { padding: 10px; border-radius: 2vw; } }
0.431824
0.122418
.title { background: url(../images/main1.jpg) no-repeat center center fixed; /* Full height */ width: 100%; height: 100%; /* Center and scale the image nicely */ background-position: center; background-repeat: no-repeat; background-size: cover; position: relative; padding: 0; } body, html { height: 100%; overflow-x: hidden; } .navbar-brand { font-family: 'Mate SC', serif; font-size: 30px; } .nav-item { padding: 0 10px; } /*Title Buttons*/ .book-table-button { font-weight: bold; color: white; margin: 3% 3% 5% 0; border-radius: 5% } .order-button { font-weight: bold; color: white; margin: 3% 3% 5% 0; } /* title section*/ .titlecontent { padding: 3% 8%; } .titlecontent { width: 1200px; text-align: left; position: relative; top: 300px; } .title2content { color: white; font-family: 'Merriweather', sans-serif; font-size: 18px; } body { margin: 0; padding: 0 } h1 { color: white; margin-top: 0; font-family: 'Montserrat', sans-serif; font-size: 40px; } /*About Boxes*/ .about { background-color: white; /* Full height */ width: 100%; /* Center and scale the image nicely */ background-position: center; background-repeat: no-repeat; background-size: cover; position: relative; } .aboutfont { font-family: 'Mate SC', serif; color: white; font-size: 30px; text-align: center; font-weight: bold; } .row { padding: 0 10%; padding-bottom: 5%; } .box { text-align: center; } .aboutheading { padding: 4% 10%; text-align: center; } h3 { font-family: 'Lusitana', sans-serif; font-weight: bold; color: black; } p { color: #8f8f8f; } /*Menu*/ .menu { background-color: rgb(0 0 0); /* Full height */ width: 100%; /* Center and scale the image nicely */ background-position: center; background-repeat: no-repeat; background-size: cover; position: relative; } .menuheading { font-family: 'Mate SC', serif; font-size: 30px; text-align: center; padding: 0; } .pmenuhead { color: white; font-weight: bold; padding-top: 5%; } .pmenuheadcontent { font-family: 'Lusitana', serif; font-size: 16px; color: white; padding: 0; } .appi { display: block; max-width: 200px; max-height: 100px; width: auto; height: auto; /* border-radius: 50%; */ } .salads { display: block; max-width: 200px; max-height: 100px; width: auto; height: auto; /* border-radius: 50%; */ } .main-course { display: block; max-width: 200px; max-height: 100px; width: auto; height: auto; /* border-radius: 50%; */ } .desert { display: block; max-width: 200px; max-height: 100px; width: auto; height: auto; /* border-radius: 50%; */ } .image-resize { width: 150px; height: 150px; } .menucontent { padding: 2% 10%; padding-bottom: 5%; } .box1 img { border: 2px solid white; } .box1 img { width: 100%; height: auto; position: relative; } .appicontent { font-family: 'Lusitana', serif; color: white; padding: 0; } .saladscontent { font-family: 'Lusitana', serif; color: white; padding: 0; } .maincoursecontent { font-family: 'Lusitana', serif; color: white; padding: 0; } .desertcontent { font-family: 'Lusitana', serif; color: white; padding: 0; } /* Menu Pricing list */ .menulisting { padding: 0; margin: 0; /* background: url(../images/mc.jpg) no-repeat center center fixed; /* Full height */ /*width: 100%; height: 100%; Center and scale the image nicely background-position: center; background-repeat: no-repeat; background-size: cover; position: relative; padding: 0; margin: 0; */ } .listhead { top: 30px; text-align: center; color: black; font-family: 'Mate SC', serif; font-size: 40px; padding: 0; margin: 0; } .listcontent { top: 10px; padding: 0; margin: 0; text-align: center; color: black; font-family: 'Lusitana', sans-serif; font-size: 15px; margin-bottom: 20px; } .box2 img { width: 100%; height: auto; position: relative; display: inline-block; } .box2 img { text-align: center; display: inline-block; margin: 10px 10px 0 10px; margin-bottom: 0; width: 100px; height: 80px; } /* Testimonials */ .testimonials { text-align: center; margin: 0; color: white; /*background-color: #F4F9F9;#CDF0EA*/ background: rgb(0 0 0); font-family: 'Lusitana', serif; } .carousel-item { padding: 7% 15%; } /* .carousel-inner .active{ background-color: #f00; } */ .testi { color: white; font-size: 18px; } .testimonial-image { width: 150px; height: 100px; } .testimonial-image { width: 10%; border-radius: 100%; margin: 20px; } .gallery { background-color: white; padding: 10px; } .box3 img { width: 100%; height: auto; position: relative; display: inline-block; } .box3 img { text-align: center; padding-right: 10px; margin-bottom: 10px; display: block; width: 300px; height: 350px; } /* Gallery */ /* Press */ .press { background-color: black; text-align: center; padding-bottom: 3%; } .press-logo { width: 15%; margin: 10px 10px 20px; } /* Reservation Booking a table */ #reservation { background: url(../images/resimage.jpeg) no-repeat center center fixed; /* Full height */ width: 100%; height: 100%; /* Center and scale the image nicely */ background-position: center; background-repeat: no-repeat; background-size: cover; position: relative; padding: 0; } .total { position: relative; padding: 200px; } .form-group { padding-bottom: 8px; } .validate { display: none; color: red; margin: 0 0 15px 0; font-weight: 400; font-size: 13px; } .input { height: 44px; } .textarea { padding: 10px 12px; } .button[type="submit"] { border: 0; padding: 20px 35px; color: #fff; border-radius: 50px; } /* Footer Section */ #footer { background: black; background: url(../images/main1.jpg) no-repeat center center fixed; /* Full height */ width: 100%; height: auto; /* Center and scale the image nicely */ background-position: center; background-repeat: no-repeat; background-size: cover; position: relative; padding: 100px; padding-bottom: 0; margin: 0; } #footer h1 { font-size: 2rem; margin: 0; padding: 2rem 0; text-align: center; color: #fff; } #footer h1 span { font-family: "Lusitana"serif; color: white; } .foottitle { font-size: 22px; font-weight: bold; font-family: "Lusitana "serif; } .titles { font-family: "Lusitana"serif; color: white; font-size: 15px; } .footer-info { font-family: "Lusitana "serif; color: white; font-size: 15px; } .foot-head-content { font-family: "Lusitana"serif; color: white; font-size: 15px; } .footlinktitle { font-family: "Lusitana "serif; font-weight: bold; color: white; font-size: 22px; } .footnewstitle { font-family: "Lusitana "serif; font-weight: bold; color: white; text-align: center; font-size: 22px; } .footnewscontent { font-family: "Lusitana"serif; color: white; font-size: 15px; } .icons { left: 200px; } .social-icon { margin: 20px 10px; color: white; /* display: inline-block; */ left: 200px; } .copyright { text-align: center; font-family: "Lusitana "serif; margin: 0; color: white; font-size: 15px; padding-bottom: 20px; } @media (max-width:822px) { .titlecontent { width: auto; top: 30px; left: 30px; position: relative; } }
css/styles.css
.title { background: url(../images/main1.jpg) no-repeat center center fixed; /* Full height */ width: 100%; height: 100%; /* Center and scale the image nicely */ background-position: center; background-repeat: no-repeat; background-size: cover; position: relative; padding: 0; } body, html { height: 100%; overflow-x: hidden; } .navbar-brand { font-family: 'Mate SC', serif; font-size: 30px; } .nav-item { padding: 0 10px; } /*Title Buttons*/ .book-table-button { font-weight: bold; color: white; margin: 3% 3% 5% 0; border-radius: 5% } .order-button { font-weight: bold; color: white; margin: 3% 3% 5% 0; } /* title section*/ .titlecontent { padding: 3% 8%; } .titlecontent { width: 1200px; text-align: left; position: relative; top: 300px; } .title2content { color: white; font-family: 'Merriweather', sans-serif; font-size: 18px; } body { margin: 0; padding: 0 } h1 { color: white; margin-top: 0; font-family: 'Montserrat', sans-serif; font-size: 40px; } /*About Boxes*/ .about { background-color: white; /* Full height */ width: 100%; /* Center and scale the image nicely */ background-position: center; background-repeat: no-repeat; background-size: cover; position: relative; } .aboutfont { font-family: 'Mate SC', serif; color: white; font-size: 30px; text-align: center; font-weight: bold; } .row { padding: 0 10%; padding-bottom: 5%; } .box { text-align: center; } .aboutheading { padding: 4% 10%; text-align: center; } h3 { font-family: 'Lusitana', sans-serif; font-weight: bold; color: black; } p { color: #8f8f8f; } /*Menu*/ .menu { background-color: rgb(0 0 0); /* Full height */ width: 100%; /* Center and scale the image nicely */ background-position: center; background-repeat: no-repeat; background-size: cover; position: relative; } .menuheading { font-family: 'Mate SC', serif; font-size: 30px; text-align: center; padding: 0; } .pmenuhead { color: white; font-weight: bold; padding-top: 5%; } .pmenuheadcontent { font-family: 'Lusitana', serif; font-size: 16px; color: white; padding: 0; } .appi { display: block; max-width: 200px; max-height: 100px; width: auto; height: auto; /* border-radius: 50%; */ } .salads { display: block; max-width: 200px; max-height: 100px; width: auto; height: auto; /* border-radius: 50%; */ } .main-course { display: block; max-width: 200px; max-height: 100px; width: auto; height: auto; /* border-radius: 50%; */ } .desert { display: block; max-width: 200px; max-height: 100px; width: auto; height: auto; /* border-radius: 50%; */ } .image-resize { width: 150px; height: 150px; } .menucontent { padding: 2% 10%; padding-bottom: 5%; } .box1 img { border: 2px solid white; } .box1 img { width: 100%; height: auto; position: relative; } .appicontent { font-family: 'Lusitana', serif; color: white; padding: 0; } .saladscontent { font-family: 'Lusitana', serif; color: white; padding: 0; } .maincoursecontent { font-family: 'Lusitana', serif; color: white; padding: 0; } .desertcontent { font-family: 'Lusitana', serif; color: white; padding: 0; } /* Menu Pricing list */ .menulisting { padding: 0; margin: 0; /* background: url(../images/mc.jpg) no-repeat center center fixed; /* Full height */ /*width: 100%; height: 100%; Center and scale the image nicely background-position: center; background-repeat: no-repeat; background-size: cover; position: relative; padding: 0; margin: 0; */ } .listhead { top: 30px; text-align: center; color: black; font-family: 'Mate SC', serif; font-size: 40px; padding: 0; margin: 0; } .listcontent { top: 10px; padding: 0; margin: 0; text-align: center; color: black; font-family: 'Lusitana', sans-serif; font-size: 15px; margin-bottom: 20px; } .box2 img { width: 100%; height: auto; position: relative; display: inline-block; } .box2 img { text-align: center; display: inline-block; margin: 10px 10px 0 10px; margin-bottom: 0; width: 100px; height: 80px; } /* Testimonials */ .testimonials { text-align: center; margin: 0; color: white; /*background-color: #F4F9F9;#CDF0EA*/ background: rgb(0 0 0); font-family: 'Lusitana', serif; } .carousel-item { padding: 7% 15%; } /* .carousel-inner .active{ background-color: #f00; } */ .testi { color: white; font-size: 18px; } .testimonial-image { width: 150px; height: 100px; } .testimonial-image { width: 10%; border-radius: 100%; margin: 20px; } .gallery { background-color: white; padding: 10px; } .box3 img { width: 100%; height: auto; position: relative; display: inline-block; } .box3 img { text-align: center; padding-right: 10px; margin-bottom: 10px; display: block; width: 300px; height: 350px; } /* Gallery */ /* Press */ .press { background-color: black; text-align: center; padding-bottom: 3%; } .press-logo { width: 15%; margin: 10px 10px 20px; } /* Reservation Booking a table */ #reservation { background: url(../images/resimage.jpeg) no-repeat center center fixed; /* Full height */ width: 100%; height: 100%; /* Center and scale the image nicely */ background-position: center; background-repeat: no-repeat; background-size: cover; position: relative; padding: 0; } .total { position: relative; padding: 200px; } .form-group { padding-bottom: 8px; } .validate { display: none; color: red; margin: 0 0 15px 0; font-weight: 400; font-size: 13px; } .input { height: 44px; } .textarea { padding: 10px 12px; } .button[type="submit"] { border: 0; padding: 20px 35px; color: #fff; border-radius: 50px; } /* Footer Section */ #footer { background: black; background: url(../images/main1.jpg) no-repeat center center fixed; /* Full height */ width: 100%; height: auto; /* Center and scale the image nicely */ background-position: center; background-repeat: no-repeat; background-size: cover; position: relative; padding: 100px; padding-bottom: 0; margin: 0; } #footer h1 { font-size: 2rem; margin: 0; padding: 2rem 0; text-align: center; color: #fff; } #footer h1 span { font-family: "Lusitana"serif; color: white; } .foottitle { font-size: 22px; font-weight: bold; font-family: "Lusitana "serif; } .titles { font-family: "Lusitana"serif; color: white; font-size: 15px; } .footer-info { font-family: "Lusitana "serif; color: white; font-size: 15px; } .foot-head-content { font-family: "Lusitana"serif; color: white; font-size: 15px; } .footlinktitle { font-family: "Lusitana "serif; font-weight: bold; color: white; font-size: 22px; } .footnewstitle { font-family: "Lusitana "serif; font-weight: bold; color: white; text-align: center; font-size: 22px; } .footnewscontent { font-family: "Lusitana"serif; color: white; font-size: 15px; } .icons { left: 200px; } .social-icon { margin: 20px 10px; color: white; /* display: inline-block; */ left: 200px; } .copyright { text-align: center; font-family: "Lusitana "serif; margin: 0; color: white; font-size: 15px; padding-bottom: 20px; } @media (max-width:822px) { .titlecontent { width: auto; top: 30px; left: 30px; position: relative; } }
0.291384
0.078078
.PanelHeaderContext--opened, .PanelHeaderContext--closing { width: 100%; height: 100%; } .PanelHeaderContext__in { position: absolute; left: 0; width: 100%; z-index: 2; } .PanelHeaderContext__fade { position: absolute; width: 100%; height: 100%; left: 0; top: 0; z-index: 1; background: rgba(0, 0, 0, .4); } .PanelHeaderContext--opened .PanelHeaderContext__fade { animation: animation-panelheadercontext-fade-in .2s ease; } .PanelHeaderContext--closing .PanelHeaderContext__fade { animation: animation-panelheadercontext-fade-out .2s ease; } /* iOS */ .PanelHeaderContext--ios.PanelHeaderContext--opened .PanelHeaderContext__in { animation: animation-panelheadercontext-translate-in .2s ease; } .PanelHeaderContext--ios.PanelHeaderContext--closing .PanelHeaderContext__in { animation: animation-panelheadercontext-translate-out .2s ease; } .PanelHeaderContext--ios .List { background: var(--header_background); } /* Android */ .PanelHeaderContext--android .PanelHeaderContext__in, .PanelHeaderContext--vkcom .PanelHeaderContext__in { padding: 8px; box-sizing: border-box; } .PanelHeaderContext--android.PanelHeaderContext--opened .PanelHeaderContext__in, .PanelHeaderContext--vkcom.PanelHeaderContext--opened .PanelHeaderContext__in { animation: animation-panelheadercontext-translate-in .2s ease; } .PanelHeaderContext--android.PanelHeaderContext--closing .PanelHeaderContext__in, .PanelHeaderContext--vkcom.PanelHeaderContext--closing .PanelHeaderContext__in { animation: animation-panelheadercontext-translate-out .2s ease; } .PanelHeaderContext--android .List, .PanelHeaderContext--vkcom .List { overflow: hidden; border-radius: 12px; padding: 8px 0; background: var(--header_background); } /* Animations */ @keyframes animation-panelheadercontext-translate-in { from { transform: translateY(-100%); } to { transform: translateY(0); } } @keyframes animation-panelheadercontext-translate-out { from { transform: translateY(0); } to { transform: translateY(-100%); } } @keyframes animation-panelheadercontext-fade-in { from { opacity: 0; } to { opacity: 1; } } @keyframes animation-panelheadercontext-fade-out { from { opacity: 1; } to { opacity: 0; } }
src/components/PanelHeaderContext/PanelHeaderContext.css
.PanelHeaderContext--opened, .PanelHeaderContext--closing { width: 100%; height: 100%; } .PanelHeaderContext__in { position: absolute; left: 0; width: 100%; z-index: 2; } .PanelHeaderContext__fade { position: absolute; width: 100%; height: 100%; left: 0; top: 0; z-index: 1; background: rgba(0, 0, 0, .4); } .PanelHeaderContext--opened .PanelHeaderContext__fade { animation: animation-panelheadercontext-fade-in .2s ease; } .PanelHeaderContext--closing .PanelHeaderContext__fade { animation: animation-panelheadercontext-fade-out .2s ease; } /* iOS */ .PanelHeaderContext--ios.PanelHeaderContext--opened .PanelHeaderContext__in { animation: animation-panelheadercontext-translate-in .2s ease; } .PanelHeaderContext--ios.PanelHeaderContext--closing .PanelHeaderContext__in { animation: animation-panelheadercontext-translate-out .2s ease; } .PanelHeaderContext--ios .List { background: var(--header_background); } /* Android */ .PanelHeaderContext--android .PanelHeaderContext__in, .PanelHeaderContext--vkcom .PanelHeaderContext__in { padding: 8px; box-sizing: border-box; } .PanelHeaderContext--android.PanelHeaderContext--opened .PanelHeaderContext__in, .PanelHeaderContext--vkcom.PanelHeaderContext--opened .PanelHeaderContext__in { animation: animation-panelheadercontext-translate-in .2s ease; } .PanelHeaderContext--android.PanelHeaderContext--closing .PanelHeaderContext__in, .PanelHeaderContext--vkcom.PanelHeaderContext--closing .PanelHeaderContext__in { animation: animation-panelheadercontext-translate-out .2s ease; } .PanelHeaderContext--android .List, .PanelHeaderContext--vkcom .List { overflow: hidden; border-radius: 12px; padding: 8px 0; background: var(--header_background); } /* Animations */ @keyframes animation-panelheadercontext-translate-in { from { transform: translateY(-100%); } to { transform: translateY(0); } } @keyframes animation-panelheadercontext-translate-out { from { transform: translateY(0); } to { transform: translateY(-100%); } } @keyframes animation-panelheadercontext-fade-in { from { opacity: 0; } to { opacity: 1; } } @keyframes animation-panelheadercontext-fade-out { from { opacity: 1; } to { opacity: 0; } }
0.592195
0.041559
@font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url("1DbO0RvWEevroPvEzA5briEAvth_LlrfE80CYdSH47w.woff2") format('woff2'); unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url("5z9jpDJQqVE5bmkRqplJfiEAvth_LlrfE80CYdSH47w.woff2") format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url("cueeGLWq_s1uoQgOf76TFiEAvth_LlrfE80CYdSH47w.woff2") format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url("yTs8gw1HdasCzJ-B_iUwzSEAvth_LlrfE80CYdSH47w.woff2") format('woff2'); unicode-range: U+0370-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url("gLfmBATgABwy0zMVv-qqhiEAvth_LlrfE80CYdSH47w.woff2") format('woff2'); unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url("dzxs_VxZUhdM2mEBkNa8siEAvth_LlrfE80CYdSH47w.woff2") format('woff2'); unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url("12mE4jfMSBTmg-81EiS-Yfk_vArhqVIZ0nv9q090hN8.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url("7m8l7TlFO-S3VkhHuR0atzTOQ_MqJVwkKsUn0wKzc2I.woff2") format('woff2'); unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url("7m8l7TlFO-S3VkhHuR0atzUj_cnvWIuuBMVgbX098Mw.woff2") format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url("7m8l7TlFO-S3VkhHuR0at0bcKLIaa1LC45dFaAfauRA.woff2") format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url("7m8l7TlFO-S3VkhHuR0at2o_sUJ8uO4YLWRInS22T3Y.woff2") format('woff2'); unicode-range: U+0370-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url("7m8l7TlFO-S3VkhHuR0at76up8jxqWt8HVA3mDhkV_0.woff2") format('woff2'); unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url("7m8l7TlFO-S3VkhHuR0atyYE0-AqJ3nfInTTiDXDjU4.woff2") format('woff2'); unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url("7m8l7TlFO-S3VkhHuR0at44P5ICox8Kq3LLUNMylGO4.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; src: local('Roboto Italic'), local('Roboto-Italic'), url("WxrXJa0C3KdtC7lMafG4dRTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; src: local('Roboto Italic'), local('Roboto-Italic'), url("OpXUqTo0UgQQhGj_SFdLWBTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; src: local('Roboto Italic'), local('Roboto-Italic'), url("1hZf02POANh32k2VkgEoUBTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; src: local('Roboto Italic'), local('Roboto-Italic'), url("cDKhRaXnQTOVbaoxwdOr9xTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+0370-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; src: local('Roboto Italic'), local('Roboto-Italic'), url("K23cxWVTrIFD6DJsEVi07RTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; src: local('Roboto Italic'), local('Roboto-Italic'), url("vSzulfKSK0LLjjfeaxcREhTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; src: local('Roboto Italic'), local('Roboto-Italic'), url("vPcynSL0qHq_6dX7lKVByfesZW2xOQ-xsNqO47m55DA.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'), url("OLffGBTaF0XFOW1gnuHF0TTOQ_MqJVwkKsUn0wKzc2I.woff2") format('woff2'); unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'), url("OLffGBTaF0XFOW1gnuHF0TUj_cnvWIuuBMVgbX098Mw.woff2") format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'), url("OLffGBTaF0XFOW1gnuHF0UbcKLIaa1LC45dFaAfauRA.woff2") format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'), url("OLffGBTaF0XFOW1gnuHF0Wo_sUJ8uO4YLWRInS22T3Y.woff2") format('woff2'); unicode-range: U+0370-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'), url("OLffGBTaF0XFOW1gnuHF0b6up8jxqWt8HVA3mDhkV_0.woff2") format('woff2'); unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'), url("OLffGBTaF0XFOW1gnuHF0SYE0-AqJ3nfInTTiDXDjU4.woff2") format('woff2'); unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'), url("OLffGBTaF0XFOW1gnuHF0Y4P5ICox8Kq3LLUNMylGO4.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; src: local('Roboto Thin'), local('Roboto-Thin'), url("ty9dfvLAziwdqQ2dHoyjphTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; src: local('Roboto Thin'), local('Roboto-Thin'), url("frNV30OaYdlFRtH2VnZZdhTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; src: local('Roboto Thin'), local('Roboto-Thin'), url("gwVJDERN2Amz39wrSoZ7FxTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; src: local('Roboto Thin'), local('Roboto-Thin'), url("aZMswpodYeVhtRvuABJWvBTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+0370-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; src: local('Roboto Thin'), local('Roboto-Thin'), url("VvXUGKZXbHtX_S_VCTLpGhTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; src: local('Roboto Thin'), local('Roboto-Thin'), url("e7MeVAyvogMqFwwl61PKhBTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; src: local('Roboto Thin'), local('Roboto-Thin'), url("2tsd397wLxj96qwHyNIkxPesZW2xOQ-xsNqO47m55DA.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; src: local('Roboto Light'), local('Roboto-Light'), url("0eC6fl06luXEYWpBSJvXCBJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; src: local('Roboto Light'), local('Roboto-Light'), url("Fl4y0QdOxyyTHEGMXX8kcRJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; src: local('Roboto Light'), local('Roboto-Light'), url("-L14Jk06m6pUHB-5mXQQnRJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; src: local('Roboto Light'), local('Roboto-Light'), url("I3S1wsgSg9YCurV6PUkTORJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0370-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; src: local('Roboto Light'), local('Roboto-Light'), url("NYDWBdD4gIq26G5XYbHsFBJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; src: local('Roboto Light'), local('Roboto-Light'), url("Pru33qjShpZSmG3z6VYwnRJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; src: local('Roboto Light'), local('Roboto-Light'), url("Hgo13k-tfSpn0qi1SFdUfVtXRa8TVwTICgirnJhmVJw.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local('Roboto'), local('Roboto-Regular'), url("ek4gzZ-GeXAPcSbHtCeQI_esZW2xOQ-xsNqO47m55DA.woff2") format('woff2'); unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local('Roboto'), local('Roboto-Regular'), url("mErvLBYg_cXG3rLvUsKT_fesZW2xOQ-xsNqO47m55DA.woff2") format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local('Roboto'), local('Roboto-Regular'), url("-2n2p-_Y08sg57CNWQfKNvesZW2xOQ-xsNqO47m55DA.woff2") format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local('Roboto'), local('Roboto-Regular'), url("u0TOpm082MNkS5K0Q4rhqvesZW2xOQ-xsNqO47m55DA.woff2") format('woff2'); unicode-range: U+0370-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local('Roboto'), local('Roboto-Regular'), url("NdF9MtnOpLzo-noMoG0miPesZW2xOQ-xsNqO47m55DA.woff2") format('woff2'); unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local('Roboto'), local('Roboto-Regular'), url("Fcx7Wwv8OzT71A3E1XOAjvesZW2xOQ-xsNqO47m55DA.woff2") format('woff2'); unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local('Roboto'), local('Roboto-Regular'), url("CWB0XYA8bzo0kSThX0UTuA.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; src: local('Roboto Medium'), local('Roboto-Medium'), url("ZLqKeelYbATG60EpZBSDyxJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; src: local('Roboto Medium'), local('Roboto-Medium'), url("oHi30kwQWvpCWqAhzHcCSBJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; src: local('Roboto Medium'), local('Roboto-Medium'), url("rGvHdJnr2l75qb0YND9NyBJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; src: local('Roboto Medium'), local('Roboto-Medium'), url("mx9Uck6uB63VIKFYnEMXrRJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0370-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; src: local('Roboto Medium'), local('Roboto-Medium'), url("mbmhprMH69Zi6eEPBYVFhRJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; src: local('Roboto Medium'), local('Roboto-Medium'), url("oOeFwZNlrTefzLYmlVV1UBJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; src: local('Roboto Medium'), local('Roboto-Medium'), url("RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; src: local('Roboto Bold'), local('Roboto-Bold'), url("77FXFjRbGzN4aCrSFhlh3hJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; src: local('Roboto Bold'), local('Roboto-Bold'), url("isZ-wbCXNKAbnjo6_TwHThJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; src: local('Roboto Bold'), local('Roboto-Bold'), url("UX6i4JxQDm3fVTc1CPuwqhJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; src: local('Roboto Bold'), local('Roboto-Bold'), url("jSN2CGVDbcVyCnfJfjSdfBJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0370-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; src: local('Roboto Bold'), local('Roboto-Bold'), url("PwZc-YbIL414wB9rB1IAPRJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; src: local('Roboto Bold'), local('Roboto-Bold'), url("97uahxiqZRoncBaCEI3aWxJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; src: local('Roboto Bold'), local('Roboto-Bold'), url("d-6IYplOFocCacKzxwXSOFtXRa8TVwTICgirnJhmVJw.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; src: local('Roboto Black'), local('Roboto-Black'), url("s7gftie1JANC-QmDJvMWZhJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; src: local('Roboto Black'), local('Roboto-Black'), url("3Y_xCyt7TNunMGg0Et2pnhJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; src: local('Roboto Black'), local('Roboto-Black'), url("WeQRRE07FDkIrr29oHQgHBJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; src: local('Roboto Black'), local('Roboto-Black'), url("jyIYROCkJM3gZ4KV00YXOBJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0370-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; src: local('Roboto Black'), local('Roboto-Black'), url("phsu-QZXz1JBv0PbFoPmEBJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; src: local('Roboto Black'), local('Roboto-Black'), url("9_7S_tWeGDh5Pq3u05RVkhJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; src: local('Roboto Black'), local('Roboto-Black'), url("mnpfi9pxYH-Go5UiibESIltXRa8TVwTICgirnJhmVJw.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; }
css.css
@font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url("1DbO0RvWEevroPvEzA5briEAvth_LlrfE80CYdSH47w.woff2") format('woff2'); unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url("5z9jpDJQqVE5bmkRqplJfiEAvth_LlrfE80CYdSH47w.woff2") format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url("cueeGLWq_s1uoQgOf76TFiEAvth_LlrfE80CYdSH47w.woff2") format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url("yTs8gw1HdasCzJ-B_iUwzSEAvth_LlrfE80CYdSH47w.woff2") format('woff2'); unicode-range: U+0370-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url("gLfmBATgABwy0zMVv-qqhiEAvth_LlrfE80CYdSH47w.woff2") format('woff2'); unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url("dzxs_VxZUhdM2mEBkNa8siEAvth_LlrfE80CYdSH47w.woff2") format('woff2'); unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 100; src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url("12mE4jfMSBTmg-81EiS-Yfk_vArhqVIZ0nv9q090hN8.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url("7m8l7TlFO-S3VkhHuR0atzTOQ_MqJVwkKsUn0wKzc2I.woff2") format('woff2'); unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url("7m8l7TlFO-S3VkhHuR0atzUj_cnvWIuuBMVgbX098Mw.woff2") format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url("7m8l7TlFO-S3VkhHuR0at0bcKLIaa1LC45dFaAfauRA.woff2") format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url("7m8l7TlFO-S3VkhHuR0at2o_sUJ8uO4YLWRInS22T3Y.woff2") format('woff2'); unicode-range: U+0370-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url("7m8l7TlFO-S3VkhHuR0at76up8jxqWt8HVA3mDhkV_0.woff2") format('woff2'); unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url("7m8l7TlFO-S3VkhHuR0atyYE0-AqJ3nfInTTiDXDjU4.woff2") format('woff2'); unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 300; src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url("7m8l7TlFO-S3VkhHuR0at44P5ICox8Kq3LLUNMylGO4.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; src: local('Roboto Italic'), local('Roboto-Italic'), url("WxrXJa0C3KdtC7lMafG4dRTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; src: local('Roboto Italic'), local('Roboto-Italic'), url("OpXUqTo0UgQQhGj_SFdLWBTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; src: local('Roboto Italic'), local('Roboto-Italic'), url("1hZf02POANh32k2VkgEoUBTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; src: local('Roboto Italic'), local('Roboto-Italic'), url("cDKhRaXnQTOVbaoxwdOr9xTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+0370-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; src: local('Roboto Italic'), local('Roboto-Italic'), url("K23cxWVTrIFD6DJsEVi07RTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; src: local('Roboto Italic'), local('Roboto-Italic'), url("vSzulfKSK0LLjjfeaxcREhTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 400; src: local('Roboto Italic'), local('Roboto-Italic'), url("vPcynSL0qHq_6dX7lKVByfesZW2xOQ-xsNqO47m55DA.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'), url("OLffGBTaF0XFOW1gnuHF0TTOQ_MqJVwkKsUn0wKzc2I.woff2") format('woff2'); unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'), url("OLffGBTaF0XFOW1gnuHF0TUj_cnvWIuuBMVgbX098Mw.woff2") format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'), url("OLffGBTaF0XFOW1gnuHF0UbcKLIaa1LC45dFaAfauRA.woff2") format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'), url("OLffGBTaF0XFOW1gnuHF0Wo_sUJ8uO4YLWRInS22T3Y.woff2") format('woff2'); unicode-range: U+0370-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'), url("OLffGBTaF0XFOW1gnuHF0b6up8jxqWt8HVA3mDhkV_0.woff2") format('woff2'); unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'), url("OLffGBTaF0XFOW1gnuHF0SYE0-AqJ3nfInTTiDXDjU4.woff2") format('woff2'); unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: italic; font-weight: 500; src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'), url("OLffGBTaF0XFOW1gnuHF0Y4P5ICox8Kq3LLUNMylGO4.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; src: local('Roboto Thin'), local('Roboto-Thin'), url("ty9dfvLAziwdqQ2dHoyjphTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; src: local('Roboto Thin'), local('Roboto-Thin'), url("frNV30OaYdlFRtH2VnZZdhTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; src: local('Roboto Thin'), local('Roboto-Thin'), url("gwVJDERN2Amz39wrSoZ7FxTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; src: local('Roboto Thin'), local('Roboto-Thin'), url("aZMswpodYeVhtRvuABJWvBTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+0370-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; src: local('Roboto Thin'), local('Roboto-Thin'), url("VvXUGKZXbHtX_S_VCTLpGhTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; src: local('Roboto Thin'), local('Roboto-Thin'), url("e7MeVAyvogMqFwwl61PKhBTbgVql8nDJpwnrE27mub0.woff2") format('woff2'); unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 100; src: local('Roboto Thin'), local('Roboto-Thin'), url("2tsd397wLxj96qwHyNIkxPesZW2xOQ-xsNqO47m55DA.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; src: local('Roboto Light'), local('Roboto-Light'), url("0eC6fl06luXEYWpBSJvXCBJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; src: local('Roboto Light'), local('Roboto-Light'), url("Fl4y0QdOxyyTHEGMXX8kcRJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; src: local('Roboto Light'), local('Roboto-Light'), url("-L14Jk06m6pUHB-5mXQQnRJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; src: local('Roboto Light'), local('Roboto-Light'), url("I3S1wsgSg9YCurV6PUkTORJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0370-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; src: local('Roboto Light'), local('Roboto-Light'), url("NYDWBdD4gIq26G5XYbHsFBJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; src: local('Roboto Light'), local('Roboto-Light'), url("Pru33qjShpZSmG3z6VYwnRJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; src: local('Roboto Light'), local('Roboto-Light'), url("Hgo13k-tfSpn0qi1SFdUfVtXRa8TVwTICgirnJhmVJw.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local('Roboto'), local('Roboto-Regular'), url("ek4gzZ-GeXAPcSbHtCeQI_esZW2xOQ-xsNqO47m55DA.woff2") format('woff2'); unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local('Roboto'), local('Roboto-Regular'), url("mErvLBYg_cXG3rLvUsKT_fesZW2xOQ-xsNqO47m55DA.woff2") format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local('Roboto'), local('Roboto-Regular'), url("-2n2p-_Y08sg57CNWQfKNvesZW2xOQ-xsNqO47m55DA.woff2") format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local('Roboto'), local('Roboto-Regular'), url("u0TOpm082MNkS5K0Q4rhqvesZW2xOQ-xsNqO47m55DA.woff2") format('woff2'); unicode-range: U+0370-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local('Roboto'), local('Roboto-Regular'), url("NdF9MtnOpLzo-noMoG0miPesZW2xOQ-xsNqO47m55DA.woff2") format('woff2'); unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local('Roboto'), local('Roboto-Regular'), url("Fcx7Wwv8OzT71A3E1XOAjvesZW2xOQ-xsNqO47m55DA.woff2") format('woff2'); unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local('Roboto'), local('Roboto-Regular'), url("CWB0XYA8bzo0kSThX0UTuA.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; src: local('Roboto Medium'), local('Roboto-Medium'), url("ZLqKeelYbATG60EpZBSDyxJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; src: local('Roboto Medium'), local('Roboto-Medium'), url("oHi30kwQWvpCWqAhzHcCSBJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; src: local('Roboto Medium'), local('Roboto-Medium'), url("rGvHdJnr2l75qb0YND9NyBJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; src: local('Roboto Medium'), local('Roboto-Medium'), url("mx9Uck6uB63VIKFYnEMXrRJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0370-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; src: local('Roboto Medium'), local('Roboto-Medium'), url("mbmhprMH69Zi6eEPBYVFhRJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; src: local('Roboto Medium'), local('Roboto-Medium'), url("oOeFwZNlrTefzLYmlVV1UBJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; src: local('Roboto Medium'), local('Roboto-Medium'), url("RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; src: local('Roboto Bold'), local('Roboto-Bold'), url("77FXFjRbGzN4aCrSFhlh3hJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; src: local('Roboto Bold'), local('Roboto-Bold'), url("isZ-wbCXNKAbnjo6_TwHThJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; src: local('Roboto Bold'), local('Roboto-Bold'), url("UX6i4JxQDm3fVTc1CPuwqhJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; src: local('Roboto Bold'), local('Roboto-Bold'), url("jSN2CGVDbcVyCnfJfjSdfBJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0370-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; src: local('Roboto Bold'), local('Roboto-Bold'), url("PwZc-YbIL414wB9rB1IAPRJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; src: local('Roboto Bold'), local('Roboto-Bold'), url("97uahxiqZRoncBaCEI3aWxJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; src: local('Roboto Bold'), local('Roboto-Bold'), url("d-6IYplOFocCacKzxwXSOFtXRa8TVwTICgirnJhmVJw.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; } /* cyrillic-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; src: local('Roboto Black'), local('Roboto-Black'), url("s7gftie1JANC-QmDJvMWZhJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F; } /* cyrillic */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; src: local('Roboto Black'), local('Roboto-Black'), url("3Y_xCyt7TNunMGg0Et2pnhJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; src: local('Roboto Black'), local('Roboto-Black'), url("WeQRRE07FDkIrr29oHQgHBJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; src: local('Roboto Black'), local('Roboto-Black'), url("jyIYROCkJM3gZ4KV00YXOBJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0370-03FF; } /* vietnamese */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; src: local('Roboto Black'), local('Roboto-Black'), url("phsu-QZXz1JBv0PbFoPmEBJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; src: local('Roboto Black'), local('Roboto-Black'), url("9_7S_tWeGDh5Pq3u05RVkhJtnKITppOI_IvcXXDNrsc.woff2") format('woff2'); unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; src: local('Roboto Black'), local('Roboto-Black'), url("mnpfi9pxYH-Go5UiibESIltXRa8TVwTICgirnJhmVJw.woff2") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; }
0.169131
0.062075
.background_glossyGreenYellow8, .hover_background_glossyGreenYellow8:hover, .active_background_glossyGreenYellow8:active:hover { background: #3b6100; background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04))); background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 ); } .background_glossyGreenYellow8h, .hover_background_glossyGreenYellow8h:hover, .active_background_glossyGreenYellow8h:active:hover { background: #3b6100; background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04))); background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 ); } .background_glossyGreenYellow8a, .hover_background_glossyGreenYellow8a:hover, .active_background_glossyGreenYellow8a:active:hover { background: #3b6100; background-image: -moz-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, .04)), color-stop(50%, rgba(0, 0, 0, .10)), color-stop(51%, rgba(255, 255, 255, .00)), color-stop(100%, rgba(255, 255, 255, .30))); background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%); background-image: -o-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%); background-image: -ms-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%); background-image: linear-gradient(to bottom, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff',GradientType=0 ); } .background_glossyGreenYellow8s, .hover_background_glossyGreenYellow8s:hover, .active_background_glossyGreenYellow8s:active:hover { background: #3b6100; background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04))); background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 ); } .background_color_glossyGreenYellow8, .hover_background_color_glossyGreenYellow8:hover, .active_background_color_glossyGreenYellow8:active:hover { background-color:#3b6100; } .background_first_color_glossyGreenYellow8, .hover_background_first_color_glossyGreenYellow8:hover, .active_background_first_color_glossyGreenYellow8:active:hover { background-color:#ffffff; } .background_last_color_glossyGreenYellow8, .hover_background_last_color_glossyGreenYellow8:hover, .active_background_color_last_glossyGreenYellow8:active:hover { background-color:#000000; } /* ------------------------------ color settings -------------------------------*/ .color_glossyGreenYellow8, .hover_color_glossyGreenYellow8:hover, .active_color_glossyGreenYellow8:active:hover { color: #c8c8c8; } .color_glossyGreenYellow8h, .hover_color_glossyGreenYellow8h:hover, .active_color_glossyGreenYellow8h:active:hover { color: #c8c8c8; } .color_glossyGreenYellow8a, .hover_color_glossyGreenYellow8a:hover, .active_color_glossyGreenYellow8a:active:hover { color: #c8c8c8; } .color_glossyGreenYellow8s, .hover_color_glossyGreenYellow8s:hover, .active_color_glossyGreenYellow8s:active:hover { color: #c8c8c8; } /* -------------------------- border color settings -----------------------------*/ .border_glossyGreenYellow8, .hover_border_glossyGreenYellow8:hover, .active_border_glossyGreenYellow8:active:hover { border-color: #2f4d00 #2f4d00 #2f4d00 #2f4d00; } .border_glossyGreenYellow8h, .hover_border_glossyGreenYellow8h:hover, .active_border_glossyGreenYellow8h:active:hover { border-color: #263f00 #263f00 #263f00 #263f00; } .border_glossyGreenYellow8a, .hover_border_glossyGreenYellow8a:hover, .active_border_glossyGreenYellow8a:active:hover { border-color: #1d3000 #1d3000 #1d3000 #1d3000; } .border_glossyGreenYellow8s, .hover_border_glossyGreenYellow8s:hover, .active_border_glossyGreenYellow8s:active:hover { border-color: #2f4d00 #2f4d00 #2f4d00 #2f4d00; } /* -------------------------- shadow expand settings --------------------------------*/ .shadow_expand_glossyGreenYellow8, .hover_shadow_expand_glossyGreenYellow8:hover, .active_shadow_expand_glossyGreenYellow8:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(59, 97, 0, .39); -moz-box-shadow: 0em 0em 1em 0.25em rgba(59, 97, 0, .39); box-shadow: 0em 0em 1em 0.25em rgba(59, 97, 0, .39); } .shadow_expand_glossyGreenYellow8h, .hover_shadow_expand_glossyGreenYellow8h:hover, .active_shadow_expand_glossyGreenYellow8h:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(70, 116, 0, .50); -moz-box-shadow: 0em 0em 1em 0.25em rgba(70, 116, 0, .50); box-shadow: 0em 0em 1em 0.25em rgba(70, 116, 0, .50); } .shadow_expand_glossyGreenYellow8a, .hover_shadow_expand_glossyGreenYellow8a:hover, .active_shadow_expand_glossyGreenYellow8a:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(53, 87, 0, .63); -moz-box-shadow: 0em 0em 1em 0.25em rgba(53, 87, 0, .63); box-shadow: 0em 0em 1em 0.25em rgba(53, 87, 0, .63); } .shadow_expand_glossyGreenYellow8s, .hover_shadow_expand_glossyGreenYellow8s:hover, .active_shadow_expand_glossyGreenYellow8s:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(53, 87, 0, .71); -moz-box-shadow: 0em 0em 1em 0.25em rgba(53, 87, 0, .71); box-shadow: 0em 0em 1em 0.25em rgba(53, 87, 0, .71); } /* -------------------------- shadow left settings --------------------------------*/ .shadow_left_glossyGreenYellow8, .hover_shadow_left_glossyGreenYellow8:hover, .active_shadow_left_glossyGreenYellow8:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(59, 97, 0, .39); -moz-box-shadow: -0.5em -0.5em 1em rgba(59, 97, 0, .39); box-shadow: -0.5em -0.5em 1em rgba(59, 97, 0, .39); } .shadow_left_glossyGreenYellow8h, .hover_shadow_left_glossyGreenYellow8h:hover, .active_shadow_left_glossyGreenYellow8h:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(70, 116, 0, .50); -moz-box-shadow: -0.5em -0.5em 1em rgba(70, 116, 0, .50); box-shadow: -0.5em -0.5em 1em rgba(70, 116, 0, .50); } .shadow_left_glossyGreenYellow8a, .hover_shadow_left_glossyGreenYellow8a:hover, .active_shadow_left_glossyGreenYellow8a:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .63); -moz-box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .63); box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .63); } .shadow_left_glossyGreenYellow8s, .hover_shadow_left_glossyGreenYellow8s:hover, .active_shadow_left_glossyGreenYellow8s:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .71); -moz-box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .71); box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .71); } /* -------------------------- shadow right settings --------------------------------*/ .shadow_right_glossyGreenYellow8, .hover_shadow_right_glossyGreenYellow8:hover, .active_shadow_right_glossyGreenYellow8:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(59, 97, 0, .39); -moz-box-shadow: 0.5em 0em 1em rgba(59, 97, 0, .39); box-shadow: 0.5em 0em 1em rgba(59, 97, 0, .39); } .shadow_right_glossyGreenYellow8h, .hover_shadow_right_glossyGreenYellow8h:hover, .active_shadow_right_glossyGreenYellow8h:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(70, 116, 0, .50); -moz-box-shadow: 0.5em 0em 1em rgba(70, 116, 0, .50); box-shadow: 0.5em 0em 1em rgba(70, 116, 0, .50); } .shadow_right_glossyGreenYellow8a, .hover_shadow_right_glossyGreenYellow8a:hover, .active_shadow_right_glossyGreenYellow8a:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(53, 87, 0, .63); -moz-box-shadow: 0.5em 0em 1em rgba(53, 87, 0, .63); box-shadow: 0.5em 0em 1em rgba(53, 87, 0, .63); } .shadow_right_glossyGreenYellow8s, .hover_shadow_right_glossyGreenYellow8s:hover, .active_shadow_right_glossyGreenYellow8s:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(53, 87, 0, .71); -moz-box-shadow: 0.5em 0em 1em rgba(53, 87, 0, .71); box-shadow: 0.5em 0em 1em rgba(53, 87, 0, .71); } /* -------------------------- shadow top settings --------------------------------*/ .shadow_top_glossyGreenYellow8, .hover_shadow_top_glossyGreenYellow8:hover, .active_shadow_top_glossyGreenYellow8:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(59, 97, 0, .39); -moz-box-shadow: 0em -0.5em 1em rgba(59, 97, 0, .39); box-shadow: 0em -0.5em 1em rgba(59, 97, 0, .39); } .shadow_top_glossyGreenYellow8h, .hover_shadow_top_glossyGreenYellow8h:hover, .active_shadow_top_glossyGreenYellow8h:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(70, 116, 0, .50); -moz-box-shadow: 0em -0.5em 1em rgba(70, 116, 0, .50); box-shadow: 0em -0.5em 1em rgba(70, 116, 0, .50); } .shadow_top_glossyGreenYellow8a, .hover_shadow_top_glossyGreenYellow8a:hover, .active_shadow_top_glossyGreenYellow8a:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(53, 87, 0, .63); -moz-box-shadow: 0em -0.5em 1em rgba(53, 87, 0, .63); box-shadow: 0em -0.5em 1em rgba(53, 87, 0, .63); } .shadow_top_glossyGreenYellow8s, .hover_shadow_top_glossyGreenYellow8s:hover, .active_shadow_top_glossyGreenYellow8s:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(53, 87, 0, .71); -moz-box-shadow: 0em -0.5em 1em rgba(53, 87, 0, .71); box-shadow: 0em -0.5em 1em rgba(53, 87, 0, .71); } /* -------------------------- shadow bottom settings --------------------------------*/ .shadow_bottom_glossyGreenYellow8, .hover_shadow_bottom_glossyGreenYellow8:hover, .active_shadow_bottom_glossyGreenYellow8:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(59, 97, 0, .39); -moz-box-shadow: 0em 0.5em 1em rgba(59, 97, 0, .39); box-shadow: 0em 0.5em 1em rgba(59, 97, 0, .39); } .shadow_bottom_glossyGreenYellow8h, .hover_shadow_bottom_glossyGreenYellow8h:hover, .active_shadow_bottom_glossyGreenYellow8h:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(70, 116, 0, .50); -moz-box-shadow: 0em 0.5em 1em rgba(70, 116, 0, .50); box-shadow: 0em 0.5em 1em rgba(70, 116, 0, .50); } .shadow_bottom_glossyGreenYellow8a, .hover_shadow_bottom_glossyGreenYellow8a:hover, .active_shadow_bottom_glossyGreenYellow8a:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(53, 87, 0, .63); -moz-box-shadow: 0em 0.5em 1em rgba(53, 87, 0, .63); box-shadow: 0em 0.5em 1em rgba(53, 87, 0, .63); } .shadow_bottom_glossyGreenYellow8s, .hover_shadow_bottom_glossyGreenYellow8s:hover, .active_shadow_bottom_glossyGreenYellow8s:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(53, 87, 0, .71); -moz-box-shadow: 0em 0.5em 1em rgba(53, 87, 0, .71); box-shadow: 0em 0.5em 1em rgba(53, 87, 0, .71); } /* -------------------------- shadow top_left settings --------------------------------*/ .shadow_top_left_glossyGreenYellow8, .hover_shadow_top_left_glossyGreenYellow8:hover, .active_shadow_top_left_glossyGreenYellow8:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(59, 97, 0, .39); -moz-box-shadow: -0.5em -0.5em 1em rgba(59, 97, 0, .39); box-shadow: -0.5em -0.5em 1em rgba(59, 97, 0, .39); } .shadow_top_left_glossyGreenYellow8h, .hover_shadow_top_left_glossyGreenYellow8h:hover, .active_shadow_top_left_glossyGreenYellow8h:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(70, 116, 0, .50); -moz-box-shadow: -0.5em -0.5em 1em rgba(70, 116, 0, .50); box-shadow: -0.5em -0.5em 1em rgba(70, 116, 0, .50); } .shadow_top_left_glossyGreenYellow8a, .hover_shadow_top_left_glossyGreenYellow8a:hover, .active_shadow_top_left_glossyGreenYellow8a:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .63); -moz-box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .63); box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .63); } .shadow_top_left_glossyGreenYellow8s, .hover_shadow_top_left_glossyGreenYellow8s:hover, .active_shadow_top_left_glossyGreenYellow8s:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .71); -moz-box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .71); box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .71); } /* -------------------------- shadow top_right settings --------------------------------*/ .shadow_top_right_glossyGreenYellow8, .hover_shadow_top_right_glossyGreenYellow8:hover, .active_shadow_top_right_glossyGreenYellow8:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(59, 97, 0, .39); -moz-box-shadow: 0.5em -0.5em 1em rgba(59, 97, 0, .39); box-shadow: 0.5em -0.5em 1em rgba(59, 97, 0, .39); } .shadow_top_right_glossyGreenYellow8h, .hover_shadow_top_right_glossyGreenYellow8h:hover, .active_shadow_top_right_glossyGreenYellow8h:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(70, 116, 0, .50); -moz-box-shadow: 0.5em -0.5em 1em rgba(70, 116, 0, .50); box-shadow: 0.5em -0.5em 1em rgba(70, 116, 0, .50); } .shadow_top_right_glossyGreenYellow8a, .hover_shadow_top_right_glossyGreenYellow8a:hover, .active_shadow_top_right_glossyGreenYellow8a:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(53, 87, 0, .63); -moz-box-shadow: 0.5em -0.5em 1em rgba(53, 87, 0, .63); box-shadow: 0.5em -0.5em 1em rgba(53, 87, 0, .63); } .shadow_top_right_glossyGreenYellow8s, .hover_shadow_top_right_glossyGreenYellow8s:hover, .active_shadow_top_right_glossyGreenYellow8s:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(53, 87, 0, .71); -moz-box-shadow: 0.5em -0.5em 1em rgba(53, 87, 0, .71); box-shadow: 0.5em -0.5em 1em rgba(53, 87, 0, .71); } /* -------------------------- shadow bottom_left settings --------------------------------*/ .shadow_bottom_left_glossyGreenYellow8, .hover_shadow_bottom_left_glossyGreenYellow8:hover, .active_shadow_bottom_left_glossyGreenYellow8:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(59, 97, 0, .39); -moz-box-shadow: -0.5em 0.5em 1em rgba(59, 97, 0, .39); box-shadow: -0.5em 0.5em 1em rgba(59, 97, 0, .39); } .shadow_bottom_left_glossyGreenYellow8h, .hover_shadow_bottom_left_glossyGreenYellow8h:hover, .active_shadow_bottom_left_glossyGreenYellow8h:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(70, 116, 0, .50); -moz-box-shadow: -0.5em 0.5em 1em rgba(70, 116, 0, .50); box-shadow: -0.5em 0.5em 1em rgba(70, 116, 0, .50); } .shadow_bottom_left_glossyGreenYellow8a, .hover_shadow_bottom_left_glossyGreenYellow8a:hover, .active_shadow_bottom_left_glossyGreenYellow8a:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(53, 87, 0, .63); -moz-box-shadow: -0.5em 0.5em 1em rgba(53, 87, 0, .63); box-shadow: -0.5em 0.5em 1em rgba(53, 87, 0, .63); } .shadow_bottom_left_glossyGreenYellow8s, .hover_shadow_bottom_left_glossyGreenYellow8s:hover, .active_shadow_bottom_left_glossyGreenYellow8s:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(53, 87, 0, .71); -moz-box-shadow: -0.5em 0.5em 1em rgba(53, 87, 0, .71); box-shadow: -0.5em 0.5em 1em rgba(53, 87, 0, .71); } /* -------------------------- shadow bottom_right settings --------------------------------*/ .shadow_bottom_right_glossyGreenYellow8, .hover_shadow_bottom_right_glossyGreenYellow8:hover, .active_shadow_bottom_right_glossyGreenYellow8:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(59, 97, 0, .39); -moz-box-shadow: 0.5em 0.5em 1em rgba(59, 97, 0, .39); box-shadow: 0.5em 0.5em 1em rgba(59, 97, 0, .39); } .shadow_bottom_right_glossyGreenYellow8h, .hover_shadow_bottom_right_glossyGreenYellow8h:hover, .active_shadow_bottom_right_glossyGreenYellow8h:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(70, 116, 0, .50); -moz-box-shadow: 0.5em 0.5em 1em rgba(70, 116, 0, .50); box-shadow: 0.5em 0.5em 1em rgba(70, 116, 0, .50); } .shadow_bottom_right_glossyGreenYellow8a, .hover_shadow_bottom_right_glossyGreenYellow8a:hover, .active_shadow_bottom_right_glossyGreenYellow8a:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(53, 87, 0, .63); -moz-box-shadow: 0.5em 0.5em 1em rgba(53, 87, 0, .63); box-shadow: 0.5em 0.5em 1em rgba(53, 87, 0, .63); } .shadow_bottom_right_glossyGreenYellow8s, .hover_shadow_bottom_right_glossyGreenYellow8s:hover, .active_shadow_bottom_right_glossyGreenYellow8s:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(53, 87, 0, .71); -moz-box-shadow: 0.5em 0.5em 1em rgba(53, 87, 0, .71); box-shadow: 0.5em 0.5em 1em rgba(53, 87, 0, .71); }
widgets/common/assets/gradients/glossy/glossyGreenYellow/glossyGreenYellow8.css
.background_glossyGreenYellow8, .hover_background_glossyGreenYellow8:hover, .active_background_glossyGreenYellow8:active:hover { background: #3b6100; background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04))); background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 ); } .background_glossyGreenYellow8h, .hover_background_glossyGreenYellow8h:hover, .active_background_glossyGreenYellow8h:active:hover { background: #3b6100; background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04))); background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 ); } .background_glossyGreenYellow8a, .hover_background_glossyGreenYellow8a:hover, .active_background_glossyGreenYellow8a:active:hover { background: #3b6100; background-image: -moz-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, .04)), color-stop(50%, rgba(0, 0, 0, .10)), color-stop(51%, rgba(255, 255, 255, .00)), color-stop(100%, rgba(255, 255, 255, .30))); background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%); background-image: -o-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%); background-image: -ms-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%); background-image: linear-gradient(to bottom, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff',GradientType=0 ); } .background_glossyGreenYellow8s, .hover_background_glossyGreenYellow8s:hover, .active_background_glossyGreenYellow8s:active:hover { background: #3b6100; background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04))); background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 ); } .background_color_glossyGreenYellow8, .hover_background_color_glossyGreenYellow8:hover, .active_background_color_glossyGreenYellow8:active:hover { background-color:#3b6100; } .background_first_color_glossyGreenYellow8, .hover_background_first_color_glossyGreenYellow8:hover, .active_background_first_color_glossyGreenYellow8:active:hover { background-color:#ffffff; } .background_last_color_glossyGreenYellow8, .hover_background_last_color_glossyGreenYellow8:hover, .active_background_color_last_glossyGreenYellow8:active:hover { background-color:#000000; } /* ------------------------------ color settings -------------------------------*/ .color_glossyGreenYellow8, .hover_color_glossyGreenYellow8:hover, .active_color_glossyGreenYellow8:active:hover { color: #c8c8c8; } .color_glossyGreenYellow8h, .hover_color_glossyGreenYellow8h:hover, .active_color_glossyGreenYellow8h:active:hover { color: #c8c8c8; } .color_glossyGreenYellow8a, .hover_color_glossyGreenYellow8a:hover, .active_color_glossyGreenYellow8a:active:hover { color: #c8c8c8; } .color_glossyGreenYellow8s, .hover_color_glossyGreenYellow8s:hover, .active_color_glossyGreenYellow8s:active:hover { color: #c8c8c8; } /* -------------------------- border color settings -----------------------------*/ .border_glossyGreenYellow8, .hover_border_glossyGreenYellow8:hover, .active_border_glossyGreenYellow8:active:hover { border-color: #2f4d00 #2f4d00 #2f4d00 #2f4d00; } .border_glossyGreenYellow8h, .hover_border_glossyGreenYellow8h:hover, .active_border_glossyGreenYellow8h:active:hover { border-color: #263f00 #263f00 #263f00 #263f00; } .border_glossyGreenYellow8a, .hover_border_glossyGreenYellow8a:hover, .active_border_glossyGreenYellow8a:active:hover { border-color: #1d3000 #1d3000 #1d3000 #1d3000; } .border_glossyGreenYellow8s, .hover_border_glossyGreenYellow8s:hover, .active_border_glossyGreenYellow8s:active:hover { border-color: #2f4d00 #2f4d00 #2f4d00 #2f4d00; } /* -------------------------- shadow expand settings --------------------------------*/ .shadow_expand_glossyGreenYellow8, .hover_shadow_expand_glossyGreenYellow8:hover, .active_shadow_expand_glossyGreenYellow8:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(59, 97, 0, .39); -moz-box-shadow: 0em 0em 1em 0.25em rgba(59, 97, 0, .39); box-shadow: 0em 0em 1em 0.25em rgba(59, 97, 0, .39); } .shadow_expand_glossyGreenYellow8h, .hover_shadow_expand_glossyGreenYellow8h:hover, .active_shadow_expand_glossyGreenYellow8h:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(70, 116, 0, .50); -moz-box-shadow: 0em 0em 1em 0.25em rgba(70, 116, 0, .50); box-shadow: 0em 0em 1em 0.25em rgba(70, 116, 0, .50); } .shadow_expand_glossyGreenYellow8a, .hover_shadow_expand_glossyGreenYellow8a:hover, .active_shadow_expand_glossyGreenYellow8a:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(53, 87, 0, .63); -moz-box-shadow: 0em 0em 1em 0.25em rgba(53, 87, 0, .63); box-shadow: 0em 0em 1em 0.25em rgba(53, 87, 0, .63); } .shadow_expand_glossyGreenYellow8s, .hover_shadow_expand_glossyGreenYellow8s:hover, .active_shadow_expand_glossyGreenYellow8s:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(53, 87, 0, .71); -moz-box-shadow: 0em 0em 1em 0.25em rgba(53, 87, 0, .71); box-shadow: 0em 0em 1em 0.25em rgba(53, 87, 0, .71); } /* -------------------------- shadow left settings --------------------------------*/ .shadow_left_glossyGreenYellow8, .hover_shadow_left_glossyGreenYellow8:hover, .active_shadow_left_glossyGreenYellow8:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(59, 97, 0, .39); -moz-box-shadow: -0.5em -0.5em 1em rgba(59, 97, 0, .39); box-shadow: -0.5em -0.5em 1em rgba(59, 97, 0, .39); } .shadow_left_glossyGreenYellow8h, .hover_shadow_left_glossyGreenYellow8h:hover, .active_shadow_left_glossyGreenYellow8h:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(70, 116, 0, .50); -moz-box-shadow: -0.5em -0.5em 1em rgba(70, 116, 0, .50); box-shadow: -0.5em -0.5em 1em rgba(70, 116, 0, .50); } .shadow_left_glossyGreenYellow8a, .hover_shadow_left_glossyGreenYellow8a:hover, .active_shadow_left_glossyGreenYellow8a:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .63); -moz-box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .63); box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .63); } .shadow_left_glossyGreenYellow8s, .hover_shadow_left_glossyGreenYellow8s:hover, .active_shadow_left_glossyGreenYellow8s:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .71); -moz-box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .71); box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .71); } /* -------------------------- shadow right settings --------------------------------*/ .shadow_right_glossyGreenYellow8, .hover_shadow_right_glossyGreenYellow8:hover, .active_shadow_right_glossyGreenYellow8:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(59, 97, 0, .39); -moz-box-shadow: 0.5em 0em 1em rgba(59, 97, 0, .39); box-shadow: 0.5em 0em 1em rgba(59, 97, 0, .39); } .shadow_right_glossyGreenYellow8h, .hover_shadow_right_glossyGreenYellow8h:hover, .active_shadow_right_glossyGreenYellow8h:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(70, 116, 0, .50); -moz-box-shadow: 0.5em 0em 1em rgba(70, 116, 0, .50); box-shadow: 0.5em 0em 1em rgba(70, 116, 0, .50); } .shadow_right_glossyGreenYellow8a, .hover_shadow_right_glossyGreenYellow8a:hover, .active_shadow_right_glossyGreenYellow8a:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(53, 87, 0, .63); -moz-box-shadow: 0.5em 0em 1em rgba(53, 87, 0, .63); box-shadow: 0.5em 0em 1em rgba(53, 87, 0, .63); } .shadow_right_glossyGreenYellow8s, .hover_shadow_right_glossyGreenYellow8s:hover, .active_shadow_right_glossyGreenYellow8s:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(53, 87, 0, .71); -moz-box-shadow: 0.5em 0em 1em rgba(53, 87, 0, .71); box-shadow: 0.5em 0em 1em rgba(53, 87, 0, .71); } /* -------------------------- shadow top settings --------------------------------*/ .shadow_top_glossyGreenYellow8, .hover_shadow_top_glossyGreenYellow8:hover, .active_shadow_top_glossyGreenYellow8:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(59, 97, 0, .39); -moz-box-shadow: 0em -0.5em 1em rgba(59, 97, 0, .39); box-shadow: 0em -0.5em 1em rgba(59, 97, 0, .39); } .shadow_top_glossyGreenYellow8h, .hover_shadow_top_glossyGreenYellow8h:hover, .active_shadow_top_glossyGreenYellow8h:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(70, 116, 0, .50); -moz-box-shadow: 0em -0.5em 1em rgba(70, 116, 0, .50); box-shadow: 0em -0.5em 1em rgba(70, 116, 0, .50); } .shadow_top_glossyGreenYellow8a, .hover_shadow_top_glossyGreenYellow8a:hover, .active_shadow_top_glossyGreenYellow8a:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(53, 87, 0, .63); -moz-box-shadow: 0em -0.5em 1em rgba(53, 87, 0, .63); box-shadow: 0em -0.5em 1em rgba(53, 87, 0, .63); } .shadow_top_glossyGreenYellow8s, .hover_shadow_top_glossyGreenYellow8s:hover, .active_shadow_top_glossyGreenYellow8s:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(53, 87, 0, .71); -moz-box-shadow: 0em -0.5em 1em rgba(53, 87, 0, .71); box-shadow: 0em -0.5em 1em rgba(53, 87, 0, .71); } /* -------------------------- shadow bottom settings --------------------------------*/ .shadow_bottom_glossyGreenYellow8, .hover_shadow_bottom_glossyGreenYellow8:hover, .active_shadow_bottom_glossyGreenYellow8:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(59, 97, 0, .39); -moz-box-shadow: 0em 0.5em 1em rgba(59, 97, 0, .39); box-shadow: 0em 0.5em 1em rgba(59, 97, 0, .39); } .shadow_bottom_glossyGreenYellow8h, .hover_shadow_bottom_glossyGreenYellow8h:hover, .active_shadow_bottom_glossyGreenYellow8h:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(70, 116, 0, .50); -moz-box-shadow: 0em 0.5em 1em rgba(70, 116, 0, .50); box-shadow: 0em 0.5em 1em rgba(70, 116, 0, .50); } .shadow_bottom_glossyGreenYellow8a, .hover_shadow_bottom_glossyGreenYellow8a:hover, .active_shadow_bottom_glossyGreenYellow8a:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(53, 87, 0, .63); -moz-box-shadow: 0em 0.5em 1em rgba(53, 87, 0, .63); box-shadow: 0em 0.5em 1em rgba(53, 87, 0, .63); } .shadow_bottom_glossyGreenYellow8s, .hover_shadow_bottom_glossyGreenYellow8s:hover, .active_shadow_bottom_glossyGreenYellow8s:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(53, 87, 0, .71); -moz-box-shadow: 0em 0.5em 1em rgba(53, 87, 0, .71); box-shadow: 0em 0.5em 1em rgba(53, 87, 0, .71); } /* -------------------------- shadow top_left settings --------------------------------*/ .shadow_top_left_glossyGreenYellow8, .hover_shadow_top_left_glossyGreenYellow8:hover, .active_shadow_top_left_glossyGreenYellow8:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(59, 97, 0, .39); -moz-box-shadow: -0.5em -0.5em 1em rgba(59, 97, 0, .39); box-shadow: -0.5em -0.5em 1em rgba(59, 97, 0, .39); } .shadow_top_left_glossyGreenYellow8h, .hover_shadow_top_left_glossyGreenYellow8h:hover, .active_shadow_top_left_glossyGreenYellow8h:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(70, 116, 0, .50); -moz-box-shadow: -0.5em -0.5em 1em rgba(70, 116, 0, .50); box-shadow: -0.5em -0.5em 1em rgba(70, 116, 0, .50); } .shadow_top_left_glossyGreenYellow8a, .hover_shadow_top_left_glossyGreenYellow8a:hover, .active_shadow_top_left_glossyGreenYellow8a:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .63); -moz-box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .63); box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .63); } .shadow_top_left_glossyGreenYellow8s, .hover_shadow_top_left_glossyGreenYellow8s:hover, .active_shadow_top_left_glossyGreenYellow8s:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .71); -moz-box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .71); box-shadow: -0.5em -0.5em 1em rgba(53, 87, 0, .71); } /* -------------------------- shadow top_right settings --------------------------------*/ .shadow_top_right_glossyGreenYellow8, .hover_shadow_top_right_glossyGreenYellow8:hover, .active_shadow_top_right_glossyGreenYellow8:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(59, 97, 0, .39); -moz-box-shadow: 0.5em -0.5em 1em rgba(59, 97, 0, .39); box-shadow: 0.5em -0.5em 1em rgba(59, 97, 0, .39); } .shadow_top_right_glossyGreenYellow8h, .hover_shadow_top_right_glossyGreenYellow8h:hover, .active_shadow_top_right_glossyGreenYellow8h:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(70, 116, 0, .50); -moz-box-shadow: 0.5em -0.5em 1em rgba(70, 116, 0, .50); box-shadow: 0.5em -0.5em 1em rgba(70, 116, 0, .50); } .shadow_top_right_glossyGreenYellow8a, .hover_shadow_top_right_glossyGreenYellow8a:hover, .active_shadow_top_right_glossyGreenYellow8a:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(53, 87, 0, .63); -moz-box-shadow: 0.5em -0.5em 1em rgba(53, 87, 0, .63); box-shadow: 0.5em -0.5em 1em rgba(53, 87, 0, .63); } .shadow_top_right_glossyGreenYellow8s, .hover_shadow_top_right_glossyGreenYellow8s:hover, .active_shadow_top_right_glossyGreenYellow8s:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(53, 87, 0, .71); -moz-box-shadow: 0.5em -0.5em 1em rgba(53, 87, 0, .71); box-shadow: 0.5em -0.5em 1em rgba(53, 87, 0, .71); } /* -------------------------- shadow bottom_left settings --------------------------------*/ .shadow_bottom_left_glossyGreenYellow8, .hover_shadow_bottom_left_glossyGreenYellow8:hover, .active_shadow_bottom_left_glossyGreenYellow8:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(59, 97, 0, .39); -moz-box-shadow: -0.5em 0.5em 1em rgba(59, 97, 0, .39); box-shadow: -0.5em 0.5em 1em rgba(59, 97, 0, .39); } .shadow_bottom_left_glossyGreenYellow8h, .hover_shadow_bottom_left_glossyGreenYellow8h:hover, .active_shadow_bottom_left_glossyGreenYellow8h:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(70, 116, 0, .50); -moz-box-shadow: -0.5em 0.5em 1em rgba(70, 116, 0, .50); box-shadow: -0.5em 0.5em 1em rgba(70, 116, 0, .50); } .shadow_bottom_left_glossyGreenYellow8a, .hover_shadow_bottom_left_glossyGreenYellow8a:hover, .active_shadow_bottom_left_glossyGreenYellow8a:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(53, 87, 0, .63); -moz-box-shadow: -0.5em 0.5em 1em rgba(53, 87, 0, .63); box-shadow: -0.5em 0.5em 1em rgba(53, 87, 0, .63); } .shadow_bottom_left_glossyGreenYellow8s, .hover_shadow_bottom_left_glossyGreenYellow8s:hover, .active_shadow_bottom_left_glossyGreenYellow8s:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(53, 87, 0, .71); -moz-box-shadow: -0.5em 0.5em 1em rgba(53, 87, 0, .71); box-shadow: -0.5em 0.5em 1em rgba(53, 87, 0, .71); } /* -------------------------- shadow bottom_right settings --------------------------------*/ .shadow_bottom_right_glossyGreenYellow8, .hover_shadow_bottom_right_glossyGreenYellow8:hover, .active_shadow_bottom_right_glossyGreenYellow8:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(59, 97, 0, .39); -moz-box-shadow: 0.5em 0.5em 1em rgba(59, 97, 0, .39); box-shadow: 0.5em 0.5em 1em rgba(59, 97, 0, .39); } .shadow_bottom_right_glossyGreenYellow8h, .hover_shadow_bottom_right_glossyGreenYellow8h:hover, .active_shadow_bottom_right_glossyGreenYellow8h:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(70, 116, 0, .50); -moz-box-shadow: 0.5em 0.5em 1em rgba(70, 116, 0, .50); box-shadow: 0.5em 0.5em 1em rgba(70, 116, 0, .50); } .shadow_bottom_right_glossyGreenYellow8a, .hover_shadow_bottom_right_glossyGreenYellow8a:hover, .active_shadow_bottom_right_glossyGreenYellow8a:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(53, 87, 0, .63); -moz-box-shadow: 0.5em 0.5em 1em rgba(53, 87, 0, .63); box-shadow: 0.5em 0.5em 1em rgba(53, 87, 0, .63); } .shadow_bottom_right_glossyGreenYellow8s, .hover_shadow_bottom_right_glossyGreenYellow8s:hover, .active_shadow_bottom_right_glossyGreenYellow8s:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(53, 87, 0, .71); -moz-box-shadow: 0.5em 0.5em 1em rgba(53, 87, 0, .71); box-shadow: 0.5em 0.5em 1em rgba(53, 87, 0, .71); }
0.45302
0.062847
@font-face { font-family: 'Source Sans Pro'; font-style: normal; font-weight: 200; src: local('Source Sans Pro ExtraLight'), local('SourceSansPro-ExtraLight'), url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wlxdr.ttf) format('truetype'); } @font-face { font-family: 'Source Sans Pro'; font-style: normal; font-weight: 300; src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf) format('truetype'); } * { box-sizing: border-box; margin: 0; padding: 0; align-items: center; font-weight: 300; } body { font-family: 'Source Sans Pro', sans-serif; color: white; font-weight: 300; } body ::-webkit-input-placeholder { /* WebKit browsers */ font-family: 'Source Sans Pro', sans-serif; color: white; font-weight: 300; } body :-moz-placeholder { /* Mozilla Firefox 4 to 18 */ font-family: 'Source Sans Pro', sans-serif; color: white; opacity: 1; font-weight: 300; } body ::-moz-placeholder { /* Mozilla Firefox 19+ */ font-family: 'Source Sans Pro', sans-serif; color: white; opacity: 1; font-weight: 300; } body :-ms-input-placeholder { /* Internet Explorer 10+ */ font-family: 'Source Sans Pro', sans-serif; color: white; font-weight: 300; } /* ------------------------------------------------------------------- * ## main navigation * ------------------------------------------------------------------- */ .header-nav { background: #0C0C0C; color: rgba(255, 255, 255, 0.25); font-family: "montserrat-light", sans-serif; font-size: 1.3rem; line-height: 1.846; padding: 3.6rem 3rem 3.6rem 3.6rem; height: 100%; width: 280px; position: fixed; right: 0; top: 0; z-index: 700; overflow-y: auto; overflow-x: hidden; -webkit-transition: all 0.5s ease; transition: all 0.5s ease; -webkit-transform: translateZ(0); -webkit-backface-visibility: hidden; -webkit-transform: translateX(100%); -ms-transform: translateX(100%); transform: translateX(100%); visibility: hidden; } .header-nav a, .header-nav a:visited { color: rgba(255, 255, 255, 0.5); } .header-nav a:hover, .header-nav a:focus, .header-nav a:active { color: white; } .header-nav h3 { font-family: "montserrat-semibold", sans-serif; font-size: 11px; line-height: 1.5; text-transform: uppercase; letter-spacing: .25rem; margin-bottom: 4.8rem; margin-top: .9rem; color: #39b54a; } .header-nav p { margin-bottom: 2.7rem; } .header-nav__content { position: relative; left: 50px; opacity: 0; visibility: hidden; } .header-nav__list { font-family: "montserrat-regular", sans-serif; font-size: 1.8rem; margin: 3.6rem 0 3rem 0; padding: 0 0 1.8rem 0; list-style: none; } .header-nav__list li { padding-left: 0; line-height: 4.5rem; } .header-nav__list a, .header-nav__list a:visited { color: #FFFFFF; } .header-nav__social { list-style: none; display: inline-block; margin: 0; font-size: 1.8rem; } .header-nav__social li { margin-right: 12px; padding-left: 0; display: inline-block; } .header-nav__social li a { color: rgba(255, 255, 255, 0.15); } .header-nav__social li a:hover, .header-nav__social li a:focus { color: white; } .header-nav__social li:last-child { margin: 0; } .header-nav__close { display: block; height: 30px; width: 30px; border-radius: 3px; background-color: rgba(0, 0, 0, 0.3); position: absolute; top: 36px; right: 30px; font: 0/0 a; text-shadow: none; color: transparent; z-index: 800; } .header-nav__close span::before, .header-nav__close span::after { content: ""; display: block; height: 2px; width: 12px; background-color: #FFFFFF; position: absolute; top: 50%; left: 9px; margin-top: -1px; } .header-nav__close span::before { -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); transform: rotate(-45deg); } .header-nav__close span::after { -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } /* menu is open * ----------------------------------------------- */ .menu-is-open .header-nav { -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); visibility: visible; -webkit-overflow-scrolling: touch; } .menu-is-open .header-nav .header-nav__content { opacity: 1; visibility: visible; -webkit-transition-property: all; transition-property: all; -webkit-transition-duration: 0.5s; transition-duration: 0.5s; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; -webkit-transition-delay: 0.3s; transition-delay: 0.3s; left: 0; } /* ------------------------------------------------------------------- * ## mobile menu toggle * ------------------------------------------------------------------- */ .header-menu-toggle { position: fixed; right: 38px; top: 24px; height: 42px; width: 42px; line-height: 42px; font-family: "montserrat-medium", sans-serif; font-size: 1.3rem; text-transform: uppercase; letter-spacing: .3rem; color: rgba(0,200,100,1); -webkit-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .header-menu-toggle.opaque { background-color: #000000; } .header-menu-toggle.opaque .header-menu-text { background-color: #000000; } .header-menu-toggle:hover, .header-menu-toggle:focus { color: #FFFFFF; } .header-menu-text { display: block; position: absolute; top: 0; left: -70px; width: 70px; padding-left: 12px; } .header-menu-icon { display: block; width: 22px; height: 2px; margin-top: -1px; position: absolute; left: 10px; top: 50%; right: auto; bottom: auto; background-color: white; -webkit-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .header-menu-icon::before, .header-menu-icon::after { content: ''; width: 100%; height: 100%; background-color: inherit; position: absolute; left: 0; -webkit-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out; } .header-menu-icon::before { top: -9px; } .header-menu-icon::after { bottom: -9px; } /* ------------------------------------------------------------------- * responsive: * header * ------------------------------------------------------------------- */ @media only screen and (max-width: 600px) { .s-header { height: 90px; } .header-logo { left: 30px; } .header-menu-toggle { right: 25px; } } @media only screen and (max-width: 400px) { .header-menu-text { display: none; } } .wrapper { background: #50a3a2; background: linear-gradient(to bottom right, rgba(0,200,100,1) 0%, rgba(0,140,255,1) 100%); position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; } .wrapper.form-success .container h1 { -webkit-transform: translateY(85px); transform: translateY(85px); } .container { max-width: 600px; margin: 0 auto; padding: 80px 0; height: 400px; text-align: center; } .container h1 { font-size: 40px; transition-duration: 1s; transition-timing-function: ease-in-put; font-weight: 200; } form { padding: 20px 0; position: relative; z-index: 2; } form input { -webkit-appearance: none; -moz-appearance: none; appearance: none; outline: 0; border: 1px solid rgba(255, 255, 255, 0.4); background-color: rgba(255, 255, 255, 0.2); width: 250px; border-radius: 3px; padding: 10px 15px; margin: 0 auto 10px auto; display: block; text-align: center; font-size: 18px; color: white; transition-duration: 0.25s; font-weight: 300; } form input:hover { background-color: rgba(255, 255, 255, 0.4); } form input:focus { background-color: white; width: 300px; color: #53e3a6; } form button { -webkit-appearance: none; -moz-appearance: none; appearance: none; outline: 0; background-color: white; border: 0; padding: 10px 15px; color: #53e3a6; border-radius: 3px; width: 250px; cursor: pointer; font-size: 18px; transition-duration: 0.25s; } form button:hover { background-color: #f5f7f9; } .bg-bubbles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; } .bg-bubbles li { position: absolute; list-style: none; display: block; width: 40px; height: 40px; background-color: rgba(255, 255, 255, 0.15); bottom: -160px; -webkit-animation: square 25s infinite; animation: square 25s infinite; transition-timing-function: linear; } .bg-bubbles li:nth-child(1) { left: 10%; } .bg-bubbles li:nth-child(2) { left: 20%; width: 80px; height: 80px; -webkit-animation-delay: 2s; animation-delay: 2s; -webkit-animation-duration: 17s; animation-duration: 17s; } .bg-bubbles li:nth-child(3) { left: 25%; -webkit-animation-delay: 4s; animation-delay: 4s; } .bg-bubbles li:nth-child(4) { left: 40%; width: 60px; height: 60px; -webkit-animation-duration: 22s; animation-duration: 22s; background-color: rgba(255, 255, 255, 0.25); } .bg-bubbles li:nth-child(5) { left: 70%; } .bg-bubbles li:nth-child(6) { left: 80%; width: 120px; height: 120px; -webkit-animation-delay: 3s; animation-delay: 3s; background-color: rgba(255, 255, 255, 0.2); } .bg-bubbles li:nth-child(7) { left: 32%; width: 160px; height: 160px; -webkit-animation-delay: 7s; animation-delay: 7s; } .bg-bubbles li:nth-child(8) { left: 55%; width: 20px; height: 20px; -webkit-animation-delay: 15s; animation-delay: 15s; -webkit-animation-duration: 40s; animation-duration: 40s; } .bg-bubbles li:nth-child(9) { left: 25%; width: 10px; height: 10px; -webkit-animation-delay: 2s; animation-delay: 2s; -webkit-animation-duration: 40s; animation-duration: 40s; background-color: rgba(255, 255, 255, 0.3); } .bg-bubbles li:nth-child(10) { left: 90%; width: 160px; height: 160px; -webkit-animation-delay: 11s; animation-delay: 11s; } @-webkit-keyframes square { 0% { -webkit-transform: translateY(0); transform: translateY(0); } 100% { -webkit-transform: translateY(-700px) rotate(600deg); transform: translateY(-700px) rotate(600deg); } } @keyframes square { 0% { -webkit-transform: translateY(0); transform: translateY(0); } 100% { -webkit-transform: translateY(-700px) rotate(600deg); transform: translateY(-700px) rotate(600deg); } }
Login Page/css/style.css
@font-face { font-family: 'Source Sans Pro'; font-style: normal; font-weight: 200; src: local('Source Sans Pro ExtraLight'), local('SourceSansPro-ExtraLight'), url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wlxdr.ttf) format('truetype'); } @font-face { font-family: 'Source Sans Pro'; font-style: normal; font-weight: 300; src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url(https://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf) format('truetype'); } * { box-sizing: border-box; margin: 0; padding: 0; align-items: center; font-weight: 300; } body { font-family: 'Source Sans Pro', sans-serif; color: white; font-weight: 300; } body ::-webkit-input-placeholder { /* WebKit browsers */ font-family: 'Source Sans Pro', sans-serif; color: white; font-weight: 300; } body :-moz-placeholder { /* Mozilla Firefox 4 to 18 */ font-family: 'Source Sans Pro', sans-serif; color: white; opacity: 1; font-weight: 300; } body ::-moz-placeholder { /* Mozilla Firefox 19+ */ font-family: 'Source Sans Pro', sans-serif; color: white; opacity: 1; font-weight: 300; } body :-ms-input-placeholder { /* Internet Explorer 10+ */ font-family: 'Source Sans Pro', sans-serif; color: white; font-weight: 300; } /* ------------------------------------------------------------------- * ## main navigation * ------------------------------------------------------------------- */ .header-nav { background: #0C0C0C; color: rgba(255, 255, 255, 0.25); font-family: "montserrat-light", sans-serif; font-size: 1.3rem; line-height: 1.846; padding: 3.6rem 3rem 3.6rem 3.6rem; height: 100%; width: 280px; position: fixed; right: 0; top: 0; z-index: 700; overflow-y: auto; overflow-x: hidden; -webkit-transition: all 0.5s ease; transition: all 0.5s ease; -webkit-transform: translateZ(0); -webkit-backface-visibility: hidden; -webkit-transform: translateX(100%); -ms-transform: translateX(100%); transform: translateX(100%); visibility: hidden; } .header-nav a, .header-nav a:visited { color: rgba(255, 255, 255, 0.5); } .header-nav a:hover, .header-nav a:focus, .header-nav a:active { color: white; } .header-nav h3 { font-family: "montserrat-semibold", sans-serif; font-size: 11px; line-height: 1.5; text-transform: uppercase; letter-spacing: .25rem; margin-bottom: 4.8rem; margin-top: .9rem; color: #39b54a; } .header-nav p { margin-bottom: 2.7rem; } .header-nav__content { position: relative; left: 50px; opacity: 0; visibility: hidden; } .header-nav__list { font-family: "montserrat-regular", sans-serif; font-size: 1.8rem; margin: 3.6rem 0 3rem 0; padding: 0 0 1.8rem 0; list-style: none; } .header-nav__list li { padding-left: 0; line-height: 4.5rem; } .header-nav__list a, .header-nav__list a:visited { color: #FFFFFF; } .header-nav__social { list-style: none; display: inline-block; margin: 0; font-size: 1.8rem; } .header-nav__social li { margin-right: 12px; padding-left: 0; display: inline-block; } .header-nav__social li a { color: rgba(255, 255, 255, 0.15); } .header-nav__social li a:hover, .header-nav__social li a:focus { color: white; } .header-nav__social li:last-child { margin: 0; } .header-nav__close { display: block; height: 30px; width: 30px; border-radius: 3px; background-color: rgba(0, 0, 0, 0.3); position: absolute; top: 36px; right: 30px; font: 0/0 a; text-shadow: none; color: transparent; z-index: 800; } .header-nav__close span::before, .header-nav__close span::after { content: ""; display: block; height: 2px; width: 12px; background-color: #FFFFFF; position: absolute; top: 50%; left: 9px; margin-top: -1px; } .header-nav__close span::before { -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); transform: rotate(-45deg); } .header-nav__close span::after { -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } /* menu is open * ----------------------------------------------- */ .menu-is-open .header-nav { -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); visibility: visible; -webkit-overflow-scrolling: touch; } .menu-is-open .header-nav .header-nav__content { opacity: 1; visibility: visible; -webkit-transition-property: all; transition-property: all; -webkit-transition-duration: 0.5s; transition-duration: 0.5s; -webkit-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; -webkit-transition-delay: 0.3s; transition-delay: 0.3s; left: 0; } /* ------------------------------------------------------------------- * ## mobile menu toggle * ------------------------------------------------------------------- */ .header-menu-toggle { position: fixed; right: 38px; top: 24px; height: 42px; width: 42px; line-height: 42px; font-family: "montserrat-medium", sans-serif; font-size: 1.3rem; text-transform: uppercase; letter-spacing: .3rem; color: rgba(0,200,100,1); -webkit-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .header-menu-toggle.opaque { background-color: #000000; } .header-menu-toggle.opaque .header-menu-text { background-color: #000000; } .header-menu-toggle:hover, .header-menu-toggle:focus { color: #FFFFFF; } .header-menu-text { display: block; position: absolute; top: 0; left: -70px; width: 70px; padding-left: 12px; } .header-menu-icon { display: block; width: 22px; height: 2px; margin-top: -1px; position: absolute; left: 10px; top: 50%; right: auto; bottom: auto; background-color: white; -webkit-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .header-menu-icon::before, .header-menu-icon::after { content: ''; width: 100%; height: 100%; background-color: inherit; position: absolute; left: 0; -webkit-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out; } .header-menu-icon::before { top: -9px; } .header-menu-icon::after { bottom: -9px; } /* ------------------------------------------------------------------- * responsive: * header * ------------------------------------------------------------------- */ @media only screen and (max-width: 600px) { .s-header { height: 90px; } .header-logo { left: 30px; } .header-menu-toggle { right: 25px; } } @media only screen and (max-width: 400px) { .header-menu-text { display: none; } } .wrapper { background: #50a3a2; background: linear-gradient(to bottom right, rgba(0,200,100,1) 0%, rgba(0,140,255,1) 100%); position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; } .wrapper.form-success .container h1 { -webkit-transform: translateY(85px); transform: translateY(85px); } .container { max-width: 600px; margin: 0 auto; padding: 80px 0; height: 400px; text-align: center; } .container h1 { font-size: 40px; transition-duration: 1s; transition-timing-function: ease-in-put; font-weight: 200; } form { padding: 20px 0; position: relative; z-index: 2; } form input { -webkit-appearance: none; -moz-appearance: none; appearance: none; outline: 0; border: 1px solid rgba(255, 255, 255, 0.4); background-color: rgba(255, 255, 255, 0.2); width: 250px; border-radius: 3px; padding: 10px 15px; margin: 0 auto 10px auto; display: block; text-align: center; font-size: 18px; color: white; transition-duration: 0.25s; font-weight: 300; } form input:hover { background-color: rgba(255, 255, 255, 0.4); } form input:focus { background-color: white; width: 300px; color: #53e3a6; } form button { -webkit-appearance: none; -moz-appearance: none; appearance: none; outline: 0; background-color: white; border: 0; padding: 10px 15px; color: #53e3a6; border-radius: 3px; width: 250px; cursor: pointer; font-size: 18px; transition-duration: 0.25s; } form button:hover { background-color: #f5f7f9; } .bg-bubbles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; } .bg-bubbles li { position: absolute; list-style: none; display: block; width: 40px; height: 40px; background-color: rgba(255, 255, 255, 0.15); bottom: -160px; -webkit-animation: square 25s infinite; animation: square 25s infinite; transition-timing-function: linear; } .bg-bubbles li:nth-child(1) { left: 10%; } .bg-bubbles li:nth-child(2) { left: 20%; width: 80px; height: 80px; -webkit-animation-delay: 2s; animation-delay: 2s; -webkit-animation-duration: 17s; animation-duration: 17s; } .bg-bubbles li:nth-child(3) { left: 25%; -webkit-animation-delay: 4s; animation-delay: 4s; } .bg-bubbles li:nth-child(4) { left: 40%; width: 60px; height: 60px; -webkit-animation-duration: 22s; animation-duration: 22s; background-color: rgba(255, 255, 255, 0.25); } .bg-bubbles li:nth-child(5) { left: 70%; } .bg-bubbles li:nth-child(6) { left: 80%; width: 120px; height: 120px; -webkit-animation-delay: 3s; animation-delay: 3s; background-color: rgba(255, 255, 255, 0.2); } .bg-bubbles li:nth-child(7) { left: 32%; width: 160px; height: 160px; -webkit-animation-delay: 7s; animation-delay: 7s; } .bg-bubbles li:nth-child(8) { left: 55%; width: 20px; height: 20px; -webkit-animation-delay: 15s; animation-delay: 15s; -webkit-animation-duration: 40s; animation-duration: 40s; } .bg-bubbles li:nth-child(9) { left: 25%; width: 10px; height: 10px; -webkit-animation-delay: 2s; animation-delay: 2s; -webkit-animation-duration: 40s; animation-duration: 40s; background-color: rgba(255, 255, 255, 0.3); } .bg-bubbles li:nth-child(10) { left: 90%; width: 160px; height: 160px; -webkit-animation-delay: 11s; animation-delay: 11s; } @-webkit-keyframes square { 0% { -webkit-transform: translateY(0); transform: translateY(0); } 100% { -webkit-transform: translateY(-700px) rotate(600deg); transform: translateY(-700px) rotate(600deg); } } @keyframes square { 0% { -webkit-transform: translateY(0); transform: translateY(0); } 100% { -webkit-transform: translateY(-700px) rotate(600deg); transform: translateY(-700px) rotate(600deg); } }
0.521959
0.08043
.box { width: 73vw; height: 40vw; position: absolute; } .barrage-container-wrap { width: 100%; height: 100%; position: absolute; /* overflow: hidden; background: url('./img/bg.jpg') no-repeat; background-size: 100% 100%; */ } .barrage-container { position: absolute; top: 0; left: 0; right: 0; bottom: 30px; cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .barrage-item { position: absolute; white-space: nowrap; cursor: pointer; z-index: 99999; top: 0px; left: 100%; color: #fff; } .barrage-item .barrage-tip { display: none; position: absolute; top: -26px; padding: 7px 15px; line-height: 12px; font-size: 12px; color: #f20606; background-color: #fff; white-space: nowrap; border: 1px solid #ddd; border-radius: 8px; -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, .1); box-shadow: 0 0 10px 1px rgba(0, 0, 0, .1); -webkit-transform-origin: 15px 100%; -ms-transform-origin: 15px 100%; transform-origin: 15px 100%; webkit-animation: tipScale cubic-bezier(.22, .58, .12, .98) .4s; animation: tipScale cubic-bezier(.22, .58, .12, .98) .4s; } .send-wrap { float: left; margin-top: 1rem; } /*ๅผ€ๅ…ณ https://c.runoob.com/codedemo/3146*/ .switch { position: relative; display: inline-block; width: 4rem; height: 2rem; } .switch input { display: none; } .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; -webkit-transition: .4s; transition: .4s; } .slider:before { position: absolute; content: ""; height: 1.5rem; width: 1.5rem; left: 0.6rem; bottom: 0.3rem; background-color: white; -webkit-transition: .4s; transition: .4s; } input:checked+.slider { background-color: #2196F3; } input:focus+.slider { box-shadow: 0 0 1px #2196F3; } input:checked+.slider:before { -webkit-transform: translateX(1.6rem); -ms-transform: translateX(1.6rem); transform: translateX(1.6rem); } /* Rounded sliders */ .slider.round { border-radius: 34px; } .slider.round:before { border-radius: 50%; } /* ็ป“ๆŸ */ #danmuSwitch { /* 2021/4/5 ๆณจ้‡Š float: right; */ margin-top: 1rem; font-size: 1rem; } .input { width: 300px; height: 30px; line-height: 30px; outline: none; -webkit-appearance: none; border-radius: 5px; padding: 0; padding-left: 10px; } .send-btn { height: 38px; line-height: 38px; text-align: center; font-weight: bold; color: #fff; background: #93d0ea; text-shadow: 1px 1px 1px #333; border-radius: 5px; margin: 0 20px 20px 0; position: relative; overflow: hidden; cursor: pointer; padding: 5px 15px; } @-webkit-keyframes tipScale { 0 { -webkit-transform: scale(0); transform: scale(0); } 50% { -webkit-transform: scale(1.1); transform: scale(1.1); } 100% { -webkit-transform: scale(1); transform: scale(1); } }
fontend/files/src/css/pages/danmu.css
.box { width: 73vw; height: 40vw; position: absolute; } .barrage-container-wrap { width: 100%; height: 100%; position: absolute; /* overflow: hidden; background: url('./img/bg.jpg') no-repeat; background-size: 100% 100%; */ } .barrage-container { position: absolute; top: 0; left: 0; right: 0; bottom: 30px; cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .barrage-item { position: absolute; white-space: nowrap; cursor: pointer; z-index: 99999; top: 0px; left: 100%; color: #fff; } .barrage-item .barrage-tip { display: none; position: absolute; top: -26px; padding: 7px 15px; line-height: 12px; font-size: 12px; color: #f20606; background-color: #fff; white-space: nowrap; border: 1px solid #ddd; border-radius: 8px; -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, .1); box-shadow: 0 0 10px 1px rgba(0, 0, 0, .1); -webkit-transform-origin: 15px 100%; -ms-transform-origin: 15px 100%; transform-origin: 15px 100%; webkit-animation: tipScale cubic-bezier(.22, .58, .12, .98) .4s; animation: tipScale cubic-bezier(.22, .58, .12, .98) .4s; } .send-wrap { float: left; margin-top: 1rem; } /*ๅผ€ๅ…ณ https://c.runoob.com/codedemo/3146*/ .switch { position: relative; display: inline-block; width: 4rem; height: 2rem; } .switch input { display: none; } .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; -webkit-transition: .4s; transition: .4s; } .slider:before { position: absolute; content: ""; height: 1.5rem; width: 1.5rem; left: 0.6rem; bottom: 0.3rem; background-color: white; -webkit-transition: .4s; transition: .4s; } input:checked+.slider { background-color: #2196F3; } input:focus+.slider { box-shadow: 0 0 1px #2196F3; } input:checked+.slider:before { -webkit-transform: translateX(1.6rem); -ms-transform: translateX(1.6rem); transform: translateX(1.6rem); } /* Rounded sliders */ .slider.round { border-radius: 34px; } .slider.round:before { border-radius: 50%; } /* ็ป“ๆŸ */ #danmuSwitch { /* 2021/4/5 ๆณจ้‡Š float: right; */ margin-top: 1rem; font-size: 1rem; } .input { width: 300px; height: 30px; line-height: 30px; outline: none; -webkit-appearance: none; border-radius: 5px; padding: 0; padding-left: 10px; } .send-btn { height: 38px; line-height: 38px; text-align: center; font-weight: bold; color: #fff; background: #93d0ea; text-shadow: 1px 1px 1px #333; border-radius: 5px; margin: 0 20px 20px 0; position: relative; overflow: hidden; cursor: pointer; padding: 5px 15px; } @-webkit-keyframes tipScale { 0 { -webkit-transform: scale(0); transform: scale(0); } 50% { -webkit-transform: scale(1.1); transform: scale(1.1); } 100% { -webkit-transform: scale(1); transform: scale(1); } }
0.352536
0.109277
html { box-sizing: border-box; } *, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; } /*header section styles*/ .headersection{ content: attr(title); align-items: center; text-align: center; font-size: larger; padding: 16px; background-color: #181d1c; color: #fafafa; } /* section heading styles */ .section-heading { height: 40px; content: attr(title); display: flex; align-items: center; padding-left: 20px; font-size: 18px; color: #fafafa; background-color: #1E1E2C; border-width:thin; border-bottom-style:solid; border-color:#1E1E2C; } /* file explorer section styles */ .fileexplorersection{ float:left; width: 12%; top:0; bottom:0; height:100vh; background-color:#2C2C32; color:#fafafa; border-width:thin; border-right-style:solid; border-color: aliceblue; } .filelist{ padding-top: 20px; padding-left: 35px ; } ul li{ text-decoration: none; cursor: pointer; color: #fafafa; } ul li:hover{ background-color: #4d4d5c; } p{ padding-left: 5px; padding-right:5px; font-size: smaller; } #downloadButton{ margin-left: 20px;; background-color: DodgerBlue; border: none; color: white; padding: 6px 6px; cursor: pointer; align-items: center; text-align: center; font-size: 16px; position:absolute; bottom:30px; } /* code editor section styles */ .codeeditorsection { float:left; width: 43%; background-color: #1E1E2C; border-width:thin; border-right-style:solid; border-color: aliceblue; } .code-editor { height: 31.6vh; overflow: hidden; position: relative; } .editor-header { height: 30px; content: attr(title); display: flex; align-items: center; padding-left: 20px; font-size: 14px; color: #fafafa; } .react-codemirror2 { height:100% !important; overflow: hidden; } .CodeMirror{ height:100% !important; } /* live view section styles */ .liveviewsection { float:left; height:100vh; width:45%; overflow: hidden; background-color: #1E1E2C; border-width: medium; } .iframe { width: 100%; height: 100%; background-color: #fafafa; }
client/src/App.css
html { box-sizing: border-box; } *, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; } /*header section styles*/ .headersection{ content: attr(title); align-items: center; text-align: center; font-size: larger; padding: 16px; background-color: #181d1c; color: #fafafa; } /* section heading styles */ .section-heading { height: 40px; content: attr(title); display: flex; align-items: center; padding-left: 20px; font-size: 18px; color: #fafafa; background-color: #1E1E2C; border-width:thin; border-bottom-style:solid; border-color:#1E1E2C; } /* file explorer section styles */ .fileexplorersection{ float:left; width: 12%; top:0; bottom:0; height:100vh; background-color:#2C2C32; color:#fafafa; border-width:thin; border-right-style:solid; border-color: aliceblue; } .filelist{ padding-top: 20px; padding-left: 35px ; } ul li{ text-decoration: none; cursor: pointer; color: #fafafa; } ul li:hover{ background-color: #4d4d5c; } p{ padding-left: 5px; padding-right:5px; font-size: smaller; } #downloadButton{ margin-left: 20px;; background-color: DodgerBlue; border: none; color: white; padding: 6px 6px; cursor: pointer; align-items: center; text-align: center; font-size: 16px; position:absolute; bottom:30px; } /* code editor section styles */ .codeeditorsection { float:left; width: 43%; background-color: #1E1E2C; border-width:thin; border-right-style:solid; border-color: aliceblue; } .code-editor { height: 31.6vh; overflow: hidden; position: relative; } .editor-header { height: 30px; content: attr(title); display: flex; align-items: center; padding-left: 20px; font-size: 14px; color: #fafafa; } .react-codemirror2 { height:100% !important; overflow: hidden; } .CodeMirror{ height:100% !important; } /* live view section styles */ .liveviewsection { float:left; height:100vh; width:45%; overflow: hidden; background-color: #1E1E2C; border-width: medium; } .iframe { width: 100%; height: 100%; background-color: #fafafa; }
0.503662
0.054929
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap'); /*Font used for the title bar game clock - Orbitron*/ @import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap&text=:1234567890'); /*Main font - Roboto*/ @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); /*Makes the page full browser height*/ body, html { height: 100vh; font-family: 'Roboto', sans-serif; overflow: hidden; } /*Game canvas should take up full width with no gaps*/ #pageWrapper { padding-left: 0; padding-right: 0; } .row { margin: 0; } /* * Header styles */ .headerWrapper { padding: 0; height: 45px; background-color: #555; color: white; border-bottom: 1px solid #DDD; } .gameclock { margin-left: auto; padding-right: 20px; padding-top: 5px; font-family: 'Orbitron', sans-serif; font-size: 20px; } /* * Menu Styles */ #menuBtn { padding: 0 0 8px; } .nav-menu-icon { width: 25px; height: 25px; } /* Themes the hamburger icon SVG */ .nav-menu_icon_line { fill: none; stroke: white; stroke-linecap: square; stroke-miterlimit: 10; stroke-width: 100px; } .navWrapper { position: absolute; z-index: 999; padding: 0; width: 100vw; } .navbar { text-align: center; } .navbar-collapse { width: 80vw; margin: auto; float: none; background-color: #555; color: white; border-left: 1px solid #DDD; border-right: 1px solid #DDD; border-bottom: 1px solid #DDD; } /* * Game Splashscreen styles */ #splashscreen { padding: 15px; /* Prevents the splashcreen from extending the page beyond the bottom of the screen, while also allowing scrolling of just the splashscreen */ max-height: calc(100vh - 40px); overflow-y: auto; overflow-x: hidden; } /*Hides the vertical scrollbar on fold-in/out*/ #splashscreen.collapsing { overflow-y: hidden; } .splashform { display: inline-block; text-align: center; padding: 15px; } .splashtext { margin-bottom: 5px; } .game-btn { width: 100px; margin: 0 5px 0; } h1.splashtext { padding-bottom: 2px; border-bottom: 1px solid #DDD; } .splashseparator { border-top: 1px solid #DDD; } .btn-group.btn-group-toggle .btn { width: 75px; } #difficultycontrols { padding: 10px 0 10px; } #gamecontrols { padding-top: 10px; } /* * Game page and canvas styles */ .gameWrapper { padding-left: 0; padding-right: 0; /*Make the game screen take up the whole screen - header height*/ height: calc(100vh - 45px); } /*Ensures game canvas takes full height*/ #gameCanvas { width: 100%; height: 100%; }
assets/css/style.css
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap'); /*Font used for the title bar game clock - Orbitron*/ @import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap&text=:1234567890'); /*Main font - Roboto*/ @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); /*Makes the page full browser height*/ body, html { height: 100vh; font-family: 'Roboto', sans-serif; overflow: hidden; } /*Game canvas should take up full width with no gaps*/ #pageWrapper { padding-left: 0; padding-right: 0; } .row { margin: 0; } /* * Header styles */ .headerWrapper { padding: 0; height: 45px; background-color: #555; color: white; border-bottom: 1px solid #DDD; } .gameclock { margin-left: auto; padding-right: 20px; padding-top: 5px; font-family: 'Orbitron', sans-serif; font-size: 20px; } /* * Menu Styles */ #menuBtn { padding: 0 0 8px; } .nav-menu-icon { width: 25px; height: 25px; } /* Themes the hamburger icon SVG */ .nav-menu_icon_line { fill: none; stroke: white; stroke-linecap: square; stroke-miterlimit: 10; stroke-width: 100px; } .navWrapper { position: absolute; z-index: 999; padding: 0; width: 100vw; } .navbar { text-align: center; } .navbar-collapse { width: 80vw; margin: auto; float: none; background-color: #555; color: white; border-left: 1px solid #DDD; border-right: 1px solid #DDD; border-bottom: 1px solid #DDD; } /* * Game Splashscreen styles */ #splashscreen { padding: 15px; /* Prevents the splashcreen from extending the page beyond the bottom of the screen, while also allowing scrolling of just the splashscreen */ max-height: calc(100vh - 40px); overflow-y: auto; overflow-x: hidden; } /*Hides the vertical scrollbar on fold-in/out*/ #splashscreen.collapsing { overflow-y: hidden; } .splashform { display: inline-block; text-align: center; padding: 15px; } .splashtext { margin-bottom: 5px; } .game-btn { width: 100px; margin: 0 5px 0; } h1.splashtext { padding-bottom: 2px; border-bottom: 1px solid #DDD; } .splashseparator { border-top: 1px solid #DDD; } .btn-group.btn-group-toggle .btn { width: 75px; } #difficultycontrols { padding: 10px 0 10px; } #gamecontrols { padding-top: 10px; } /* * Game page and canvas styles */ .gameWrapper { padding-left: 0; padding-right: 0; /*Make the game screen take up the whole screen - header height*/ height: calc(100vh - 45px); } /*Ensures game canvas takes full height*/ #gameCanvas { width: 100%; height: 100%; }
0.350755
0.073497
h1, h2, h3, h4, h5, h6, h7 { color:#800000; font-weight: bold; margin-top: 1.5em; margin-bottom: 1.5em;} h1 {font-size: 135%;} h2 {font-size: 130%;} h3 {font-size: 125%;} h4{font-size: 120%;} h5 {font-size: 115%;} h6 {font-size: 110%;} h7 {font-size: 105%;} h1.title, h2.title, h3.title, h4.title, h5.title, h6.title, h7.title { font-weight: bold; padding-bottom: 10px; margin-top: 1.5em; margin-bottom: 1.5em;} .bridgehead { margin-top: 5pt; color:#800000; font-weight: bold; } /*Refenty*/ .refentrytitle { font-size: 100%; } .refnamediv { margin-top: 1em; } .refnamediv * { margin-top: 0pt; margin-bottom: 0pt; } .refname { line-height: normal; } .refclass { text-align: right; } .refsect1 h2, h3, h4 { font-size: 120%; margin-top: 0.5em; margin-bottom: 0.5em; padding-top: 0em; padding-bottom: 0em;} .refsect1 p { margin-top: 0.5em; margin-bottom: 0.5em; padding-top: 0em; padding-bottom: 0em;} .refsection h2 { font-size: 130%; color: #800000; margin-top: 0.5em; margin-bottom: 0.5em; padding-top: 0em; padding-bottom: 0em;} .refsection h4 { font-style: italic; color: #800000;} /*Font styles*/ pre { font-family: "Courier New",Courier,monospace; } /*General styles*/ .warning { border-width: 1pt; border-style: solid; } .sidebar { background-color: rgb(255, 255, 165); float: right; width: 300px; padding-left: 1em; padding-right: 1em; text-align: left; } .sidebar .title { text-align: center; background-color: black; color: white; font-size: 120%; margin-left: -1em; margin-right: -1em; margin-top: 0em; padding-top: 1pt; padding-bottom: 1pt; } .screen { background-color: #E0E0E0; } .msg { font-weight: bold; } .msg p { margin-bottom: 0pt; margin-top: 0pt; } .msgexplan { margin-left: 1em; } .msgexplan p { margin-top: 0pt; margin-bottom: 0.5em; } .example { margin-left: 2em; margin-right: 2em; margin-bottom: 1em; padding-left: 1em; padding-right: 1em; margin-top: 1em; } .example .title b { padding-left: 2pt; padding-right: 2pt; } /*widgets(MAPDL) have no nagvigation-->*/ .widget .navheader { height: 0pt; display: none; } .widget .navfooter { display: none; } p.top { color: white; margin-top: 0px; background-color: gray; margin-bottom: 0px; } .logo img.logo { position: absolute; top: 0px; left: 0px; } td.navheadertable { font-size: 75%; } .path { width: 100%; color: black; text-align: left; background-color: lightgrey; } td.navfootertable { font-size: 75%; } .legalfooter { color: gray; text-align: center; } .datefooter { color: gray; text-align: center; } @media print { .navheader {display: none} .usernavheader {display: none} .navfooter {display:none} .hideable { display: block; } body { margin-top: 0pt; padding-top: 18px; } } /* Browser specific (not valid) styles to make preformatted text wrap */ pre { white-space: pre-wrap; /* css-3 */ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ word-wrap: break-word; /* Internet Explorer 5.5+ */ } .section h2, .chapter h2, .sect1 h2 { display: block; } .section strong, .chapter strong, .section strong em, .chapter strong em { font-weight: bold !important; } body { font-family: Tahoma, Arial,Helvetica,sans-serif; font-size: 16px; } p { font-size: 16px; } table { border-spacing: 40px; border-collapse:collapse; vertical-align: top; } .informaltable { border-spacing: 40px; border-collapse:collapse; vertical-align: top; } th{ padding: 4px; border-collapse:collapse; vertical-align: top; } td{ padding: 4px; border-collapse:collapse; vertical-align: top; } .userinput { font-family: "Courier New",Courier,monospace; font-weight: bold; font-size: 16px; } .systemitem { font-family: "Courier New",Courier,monospace; font-size: 16px; } .filename { font-family: "Courier New",Courier,monospace; font-weight: normal; } .screen { font-family: "Courier New",Courier,monospace; font-weight: normal; padding: 4px; } table td .itemizedlist li li{ list-style: circle; margin-left:-5pt; } .guisubmenu {font-weight: bold;} div.warning p {margin-left:12px;} div.informalequation { padding-bottom: 10px; text-align:center; } .toc > dl > dt > dd { margin:0px; padding:0px; } span[class='inlineequation'] > img{ padding-bottom:0px; } .variablelist td { vertical-align:top; } .informaltable td { vertical-align: top; } .informaltable th { font-weight: bold; padding: 5px; vertical-align: top; } .informaltable table { margin-bottom: 10px; } .programlisting { background-color: #E0E0E0; margin-left: 2em; margin-right: 2em; padding-left: 1em; font-size:14px; } .simplelist { margin-left:1em; } td.navheadertable, td.navfootertable { font-size: 14px !important; } .toc dl dl { padding: 5px 0 0 20px; } .toc dt { padding: 5px 0 0 20px; } .legalfooter small, .datefooter small { font-size: 14px !important; } .note, .tip, .important, .caution, .warning { /*border-top: 1px dashed #DDDDDD; border-bottom: 1px dashed #DDDDDD;*/ border: 1px dashed #aaa; padding: 5px; margin: 5px; background: #efefef; } .section dt, .index dt { padding: 5px 0 0 0; font-weight: normal; } .section dd, .index dd { padding: 5px 0 5px 20px; } hr { display: none; }
help_v18.2/ans_thry/basic.css
h1, h2, h3, h4, h5, h6, h7 { color:#800000; font-weight: bold; margin-top: 1.5em; margin-bottom: 1.5em;} h1 {font-size: 135%;} h2 {font-size: 130%;} h3 {font-size: 125%;} h4{font-size: 120%;} h5 {font-size: 115%;} h6 {font-size: 110%;} h7 {font-size: 105%;} h1.title, h2.title, h3.title, h4.title, h5.title, h6.title, h7.title { font-weight: bold; padding-bottom: 10px; margin-top: 1.5em; margin-bottom: 1.5em;} .bridgehead { margin-top: 5pt; color:#800000; font-weight: bold; } /*Refenty*/ .refentrytitle { font-size: 100%; } .refnamediv { margin-top: 1em; } .refnamediv * { margin-top: 0pt; margin-bottom: 0pt; } .refname { line-height: normal; } .refclass { text-align: right; } .refsect1 h2, h3, h4 { font-size: 120%; margin-top: 0.5em; margin-bottom: 0.5em; padding-top: 0em; padding-bottom: 0em;} .refsect1 p { margin-top: 0.5em; margin-bottom: 0.5em; padding-top: 0em; padding-bottom: 0em;} .refsection h2 { font-size: 130%; color: #800000; margin-top: 0.5em; margin-bottom: 0.5em; padding-top: 0em; padding-bottom: 0em;} .refsection h4 { font-style: italic; color: #800000;} /*Font styles*/ pre { font-family: "Courier New",Courier,monospace; } /*General styles*/ .warning { border-width: 1pt; border-style: solid; } .sidebar { background-color: rgb(255, 255, 165); float: right; width: 300px; padding-left: 1em; padding-right: 1em; text-align: left; } .sidebar .title { text-align: center; background-color: black; color: white; font-size: 120%; margin-left: -1em; margin-right: -1em; margin-top: 0em; padding-top: 1pt; padding-bottom: 1pt; } .screen { background-color: #E0E0E0; } .msg { font-weight: bold; } .msg p { margin-bottom: 0pt; margin-top: 0pt; } .msgexplan { margin-left: 1em; } .msgexplan p { margin-top: 0pt; margin-bottom: 0.5em; } .example { margin-left: 2em; margin-right: 2em; margin-bottom: 1em; padding-left: 1em; padding-right: 1em; margin-top: 1em; } .example .title b { padding-left: 2pt; padding-right: 2pt; } /*widgets(MAPDL) have no nagvigation-->*/ .widget .navheader { height: 0pt; display: none; } .widget .navfooter { display: none; } p.top { color: white; margin-top: 0px; background-color: gray; margin-bottom: 0px; } .logo img.logo { position: absolute; top: 0px; left: 0px; } td.navheadertable { font-size: 75%; } .path { width: 100%; color: black; text-align: left; background-color: lightgrey; } td.navfootertable { font-size: 75%; } .legalfooter { color: gray; text-align: center; } .datefooter { color: gray; text-align: center; } @media print { .navheader {display: none} .usernavheader {display: none} .navfooter {display:none} .hideable { display: block; } body { margin-top: 0pt; padding-top: 18px; } } /* Browser specific (not valid) styles to make preformatted text wrap */ pre { white-space: pre-wrap; /* css-3 */ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ word-wrap: break-word; /* Internet Explorer 5.5+ */ } .section h2, .chapter h2, .sect1 h2 { display: block; } .section strong, .chapter strong, .section strong em, .chapter strong em { font-weight: bold !important; } body { font-family: Tahoma, Arial,Helvetica,sans-serif; font-size: 16px; } p { font-size: 16px; } table { border-spacing: 40px; border-collapse:collapse; vertical-align: top; } .informaltable { border-spacing: 40px; border-collapse:collapse; vertical-align: top; } th{ padding: 4px; border-collapse:collapse; vertical-align: top; } td{ padding: 4px; border-collapse:collapse; vertical-align: top; } .userinput { font-family: "Courier New",Courier,monospace; font-weight: bold; font-size: 16px; } .systemitem { font-family: "Courier New",Courier,monospace; font-size: 16px; } .filename { font-family: "Courier New",Courier,monospace; font-weight: normal; } .screen { font-family: "Courier New",Courier,monospace; font-weight: normal; padding: 4px; } table td .itemizedlist li li{ list-style: circle; margin-left:-5pt; } .guisubmenu {font-weight: bold;} div.warning p {margin-left:12px;} div.informalequation { padding-bottom: 10px; text-align:center; } .toc > dl > dt > dd { margin:0px; padding:0px; } span[class='inlineequation'] > img{ padding-bottom:0px; } .variablelist td { vertical-align:top; } .informaltable td { vertical-align: top; } .informaltable th { font-weight: bold; padding: 5px; vertical-align: top; } .informaltable table { margin-bottom: 10px; } .programlisting { background-color: #E0E0E0; margin-left: 2em; margin-right: 2em; padding-left: 1em; font-size:14px; } .simplelist { margin-left:1em; } td.navheadertable, td.navfootertable { font-size: 14px !important; } .toc dl dl { padding: 5px 0 0 20px; } .toc dt { padding: 5px 0 0 20px; } .legalfooter small, .datefooter small { font-size: 14px !important; } .note, .tip, .important, .caution, .warning { /*border-top: 1px dashed #DDDDDD; border-bottom: 1px dashed #DDDDDD;*/ border: 1px dashed #aaa; padding: 5px; margin: 5px; background: #efefef; } .section dt, .index dt { padding: 5px 0 0 0; font-weight: normal; } .section dd, .index dd { padding: 5px 0 5px 20px; } hr { display: none; }
0.440229
0.102934
.mskill { position: relative; display: flex; flex-direction: column; height: 100%; background: url('../../../../assets/img/bg/skill.jpg') no-repeat; background-size: cover; z-index: -999; } .mskill:after { content: ''; width: 100%; height: 100%; position: absolute; left: 0; top: 0; background-color: #eee; opacity: 0.8; z-index: -99; } .mskill__title { padding: 10px 0; height: 60px; line-height: 60px; text-align: center; } .mskill__title .title__line { display: inline-block; width: 15%; border-top: 1px solid #555 ; } .mskill__title .title__text { padding: 0 10px; vertical-align: -webkit-baseline-middle; font-size: 22px; color: #686868; } .mskill__container { flex: 1; } .mskill__list { display: flex; flex-direction: row; flex-wrap: wrap; height: 100%; } .mskill__list .list__card { display: flex; justify-content: center; align-items: center; width: calc(33.33%); height: calc(33.33%); perspective: 1000px; } .mskill__list .list__card:hover .card__front { transform: rotateY(180deg); } .mskill__list .list__card:nth-child(even):hover .card__front { transform: rotateY(-180deg); } .mskill__list .list__card:hover .card__back { transform: rotateY(0deg); z-index: 1; } .mskill__list .list__card:nth-child(even):hover .card__back { transform: rotateY(0deg); z-index: 1; } .mskill__list .list__card .card { display: flex; justify-content: center; align-items: center; position: absolute; height: 60%; width: 80%; backface-visibility: hidden; transform-style: preserve-3d; transition: ease-in-out 600ms; border-radius: 6px; } .mskill__list .list__card .card__front { background-position: center; background-size: cover; overflow: hidden; } .mskill__list .list__card .card__back { display: flex; flex-direction: column; padding: 0 5px; background: #fff; transform: rotateY(-180deg); } .mskill__list .list__card .card__back .back__title { padding-bottom: 10px; text-shadow: 0 1px 2px #555; font-size: 18px; font-weight: 500; } .mskill__list .list__card .card__back .back__intro { line-height: 1.4rem; font-size: 14px; }
src/components/container/mb/mb_skill/mb_skill.css
.mskill { position: relative; display: flex; flex-direction: column; height: 100%; background: url('../../../../assets/img/bg/skill.jpg') no-repeat; background-size: cover; z-index: -999; } .mskill:after { content: ''; width: 100%; height: 100%; position: absolute; left: 0; top: 0; background-color: #eee; opacity: 0.8; z-index: -99; } .mskill__title { padding: 10px 0; height: 60px; line-height: 60px; text-align: center; } .mskill__title .title__line { display: inline-block; width: 15%; border-top: 1px solid #555 ; } .mskill__title .title__text { padding: 0 10px; vertical-align: -webkit-baseline-middle; font-size: 22px; color: #686868; } .mskill__container { flex: 1; } .mskill__list { display: flex; flex-direction: row; flex-wrap: wrap; height: 100%; } .mskill__list .list__card { display: flex; justify-content: center; align-items: center; width: calc(33.33%); height: calc(33.33%); perspective: 1000px; } .mskill__list .list__card:hover .card__front { transform: rotateY(180deg); } .mskill__list .list__card:nth-child(even):hover .card__front { transform: rotateY(-180deg); } .mskill__list .list__card:hover .card__back { transform: rotateY(0deg); z-index: 1; } .mskill__list .list__card:nth-child(even):hover .card__back { transform: rotateY(0deg); z-index: 1; } .mskill__list .list__card .card { display: flex; justify-content: center; align-items: center; position: absolute; height: 60%; width: 80%; backface-visibility: hidden; transform-style: preserve-3d; transition: ease-in-out 600ms; border-radius: 6px; } .mskill__list .list__card .card__front { background-position: center; background-size: cover; overflow: hidden; } .mskill__list .list__card .card__back { display: flex; flex-direction: column; padding: 0 5px; background: #fff; transform: rotateY(-180deg); } .mskill__list .list__card .card__back .back__title { padding-bottom: 10px; text-shadow: 0 1px 2px #555; font-size: 18px; font-weight: 500; } .mskill__list .list__card .card__back .back__intro { line-height: 1.4rem; font-size: 14px; }
0.398172
0.056731
body,table{ font-size:12px; } table{ table-layout:fixed; empty-cells:show; border-collapse: collapse; margin:0 auto; } td{ height:30px; border:1px solid #cad9ea; padding:0 1em 0; } th { height:30px; border:1px solid #cad9ea; padding:0 1em 0; background: #D8D8D8 repeat-x; } tr.blue_bg { background-color:#f5fafe; } h3 { color: #ff6c2c; } .button { cursor: pointer; display: block; line-height: 45px; text-align: center; margin-top: 1.5em; margin-right: 50px; width: 158px; height: 45px; border: #FFBB2C 1px solid; color: #fff; font-size: 1.2em; background: #FF6C2C; background: -webkit-gradient(linear, left top, left bottom, from(#FFBB2C), to(#FF6C2C)); background: -moz-linear-gradient(top, #FFBB2C, #FF6C2C); background-image: -o-linear-gradient(top, #FFBB2C 0, #FF6C2C 100%); background-image: linear-gradient(to bottom, #FFBB2C 0, #FF6C2C 100%); } .button:hover { background: #FF6C2C; } .button_blue { cursor: pointer; display: block; line-height: 45px; text-align: center; width: 158px; height: 45px; margin-top: 1.5em; border: rgba(123, 170, 247, 1) 1px solid; color: #fff; font-size: 1.2em; border-top-color: #1992da; border-left-color: #0c75bb; border-right-color: #0c75bb; border-bottom-color: #00589c; -webkit-box-shadow: inset 0 1px 1px 0 #6fc5f5; -moz-box-shadow: inset 0 1px 1px 0 #6fc5f5; box-shadow: inset 0 1px 1px 0 #6fc5f5; background: #117ed2; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#37aaea", endColorstr="#117ed2"); background: -webkit-gradient(linear, left top, left bottom, from(#37aaea), to(#117ed2)); background: -moz-linear-gradient(top, #37aaea, #117ed2); background-image: -o-linear-gradient(top, #37aaea 0, #117ed2 100%); background-image: linear-gradient(to bottom, #37aaea 0, #117ed2 100%); } .button_blue:hover { background: #1c5bad; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2488d4", endColorstr="#1c5bad"); background: -webkit-gradient(linear, left top, left bottom, from(#2488d4), to(#1c5bad)); background: -moz-linear-gradient(top, #2488d4, #1c5bad); background-image: -o-linear-gradient(top, #2488d4 0, #1c5bad 100%); background-image: linear-gradient(to bottom, #2488d4 0, #1c5bad 100%); -webkit-box-shadow: inset 0 1px 1px 0 #64bef1; -moz-box-shadow: inset 0 1px 1px 0 #64bef1; box-shadow: inset 0 1px 1px 0 #64bef1; }
PlugIn/BeeCloud/demo/statics/demo.css
body,table{ font-size:12px; } table{ table-layout:fixed; empty-cells:show; border-collapse: collapse; margin:0 auto; } td{ height:30px; border:1px solid #cad9ea; padding:0 1em 0; } th { height:30px; border:1px solid #cad9ea; padding:0 1em 0; background: #D8D8D8 repeat-x; } tr.blue_bg { background-color:#f5fafe; } h3 { color: #ff6c2c; } .button { cursor: pointer; display: block; line-height: 45px; text-align: center; margin-top: 1.5em; margin-right: 50px; width: 158px; height: 45px; border: #FFBB2C 1px solid; color: #fff; font-size: 1.2em; background: #FF6C2C; background: -webkit-gradient(linear, left top, left bottom, from(#FFBB2C), to(#FF6C2C)); background: -moz-linear-gradient(top, #FFBB2C, #FF6C2C); background-image: -o-linear-gradient(top, #FFBB2C 0, #FF6C2C 100%); background-image: linear-gradient(to bottom, #FFBB2C 0, #FF6C2C 100%); } .button:hover { background: #FF6C2C; } .button_blue { cursor: pointer; display: block; line-height: 45px; text-align: center; width: 158px; height: 45px; margin-top: 1.5em; border: rgba(123, 170, 247, 1) 1px solid; color: #fff; font-size: 1.2em; border-top-color: #1992da; border-left-color: #0c75bb; border-right-color: #0c75bb; border-bottom-color: #00589c; -webkit-box-shadow: inset 0 1px 1px 0 #6fc5f5; -moz-box-shadow: inset 0 1px 1px 0 #6fc5f5; box-shadow: inset 0 1px 1px 0 #6fc5f5; background: #117ed2; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#37aaea", endColorstr="#117ed2"); background: -webkit-gradient(linear, left top, left bottom, from(#37aaea), to(#117ed2)); background: -moz-linear-gradient(top, #37aaea, #117ed2); background-image: -o-linear-gradient(top, #37aaea 0, #117ed2 100%); background-image: linear-gradient(to bottom, #37aaea 0, #117ed2 100%); } .button_blue:hover { background: #1c5bad; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2488d4", endColorstr="#1c5bad"); background: -webkit-gradient(linear, left top, left bottom, from(#2488d4), to(#1c5bad)); background: -moz-linear-gradient(top, #2488d4, #1c5bad); background-image: -o-linear-gradient(top, #2488d4 0, #1c5bad 100%); background-image: linear-gradient(to bottom, #2488d4 0, #1c5bad 100%); -webkit-box-shadow: inset 0 1px 1px 0 #64bef1; -moz-box-shadow: inset 0 1px 1px 0 #64bef1; box-shadow: inset 0 1px 1px 0 #64bef1; }
0.368519
0.170404
* Use this file to override Materialize files so you can update * the core Materialize files in the future * * Made By MaterializeCSS.com */ body { font-family: 'Raleway', sans-serif; margin: 0; padding: 0px; } nav ul a, nav .brand-logo { color: #EF5350; } nav .brand-logo { font-family: 'Times New Roman', cursive; } .nav-wrapper { padding: 0 50px; } p { line-height: 2rem; } .button-collapse { color: #EF5350; } .parallax-container { min-height: 380px; line-height: 0; height: auto; color: rgba(255,255,255,.9); } .section-intro { width: 100%; height: 100%; } .header { margin-top: 15%; line-height: 1.1em } .header-subtitle { margin-top: 10%; font-size: 1.2em; font-family: 'Roboto-Bold', sans-serif; color: #ffffff; line-height: 1.6em } /*@media only screen and (max-width : 992px) { .parallax-container .section { position: absolute; top: 40%; } #index-banner .section { top: 10%; } } */ @media only screen and (max-width : 992px) { .parallax-container .section { position: absolute; top: 40%; } #index-banner .section { top: 10%; } } @media only screen and (max-width : 600px) { #index-banner .section { top: 0; } .nav-wrapper { padding: 0 10px; } } .col-servizio { margin-top: 60px; margin-bottom: 0px; } .col-benefici { margin-top: 0px; margin-bottom: 100px; } .img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img { display: block; width: 100% \9; max-width: 100%; height: auto; } .col-privacy { margin-top: 60px; margin-bottom: 100px; font-size: 1.0em; font-family: 'Raleway', sans-serif; color: #000000; line-height: 1.6em } .icon-block { display: inline-block; padding: 0 15px; } .icon-block .material-icons { font-size: inherit; } #scopri h5 { font-size: 1.3em; line-height: 1.6em; } #scopri2 h5 { font-size: 1.3em; line-height: 1.6em; } .section-scarica { width: 100%; height: 100%; } .scarica-icon { font-size: 7em; margin-top: 60px; } .scarica-subtitle { font-size: 1.3em; margin-top: 5%; } .btn-scarica { width: 100%; } .prenota-icon { font-size: 7em; margin-top: 60px; } .prenota-subtitle { font-size: 1.3em; margin-top: 5%; line-height: 2em; } .btn-prenota { width: 100%; } footer.page-footer { margin: 0; background-color: #3D5467; } .container-footer { width: 100%; height: 100%; font-size: 1em; line-height: 1.3em; } .social-icon { font-size: 2.5em; color: #fff; padding: 0 20px; } .social-icon:hover { color: #EF3550 } .back-to-top { background: none; margin: 0; position: fixed; bottom: 0; right: 0; width: 60px; height: 60px; z-index: 100; display: none; text-decoration: none; color: #ffffff; background-color: transparent; } .back-to-top i { font-size: 60px; } .iframe-privacy { width:670px; height:5200px; overflow:auto; }
css/style.css
* Use this file to override Materialize files so you can update * the core Materialize files in the future * * Made By MaterializeCSS.com */ body { font-family: 'Raleway', sans-serif; margin: 0; padding: 0px; } nav ul a, nav .brand-logo { color: #EF5350; } nav .brand-logo { font-family: 'Times New Roman', cursive; } .nav-wrapper { padding: 0 50px; } p { line-height: 2rem; } .button-collapse { color: #EF5350; } .parallax-container { min-height: 380px; line-height: 0; height: auto; color: rgba(255,255,255,.9); } .section-intro { width: 100%; height: 100%; } .header { margin-top: 15%; line-height: 1.1em } .header-subtitle { margin-top: 10%; font-size: 1.2em; font-family: 'Roboto-Bold', sans-serif; color: #ffffff; line-height: 1.6em } /*@media only screen and (max-width : 992px) { .parallax-container .section { position: absolute; top: 40%; } #index-banner .section { top: 10%; } } */ @media only screen and (max-width : 992px) { .parallax-container .section { position: absolute; top: 40%; } #index-banner .section { top: 10%; } } @media only screen and (max-width : 600px) { #index-banner .section { top: 0; } .nav-wrapper { padding: 0 10px; } } .col-servizio { margin-top: 60px; margin-bottom: 0px; } .col-benefici { margin-top: 0px; margin-bottom: 100px; } .img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img { display: block; width: 100% \9; max-width: 100%; height: auto; } .col-privacy { margin-top: 60px; margin-bottom: 100px; font-size: 1.0em; font-family: 'Raleway', sans-serif; color: #000000; line-height: 1.6em } .icon-block { display: inline-block; padding: 0 15px; } .icon-block .material-icons { font-size: inherit; } #scopri h5 { font-size: 1.3em; line-height: 1.6em; } #scopri2 h5 { font-size: 1.3em; line-height: 1.6em; } .section-scarica { width: 100%; height: 100%; } .scarica-icon { font-size: 7em; margin-top: 60px; } .scarica-subtitle { font-size: 1.3em; margin-top: 5%; } .btn-scarica { width: 100%; } .prenota-icon { font-size: 7em; margin-top: 60px; } .prenota-subtitle { font-size: 1.3em; margin-top: 5%; line-height: 2em; } .btn-prenota { width: 100%; } footer.page-footer { margin: 0; background-color: #3D5467; } .container-footer { width: 100%; height: 100%; font-size: 1em; line-height: 1.3em; } .social-icon { font-size: 2.5em; color: #fff; padding: 0 20px; } .social-icon:hover { color: #EF3550 } .back-to-top { background: none; margin: 0; position: fixed; bottom: 0; right: 0; width: 60px; height: 60px; z-index: 100; display: none; text-decoration: none; color: #ffffff; background-color: transparent; } .back-to-top i { font-size: 60px; } .iframe-privacy { width:670px; height:5200px; overflow:auto; }
0.393269
0.058078
body, .children { background: #292929; color: #848991; } h1, h2, h3, h4, h5, .comment-reply-title, .comments-title { color: #b3b9c5; } h1 { color: #b3b9c5; } a.button, [type="button"], [type="submit"], .view-all { color: #ffffff !important; background: #4a7baa; border: 1px solid #4a7baa; } a.button:hover, [type="button"]:hover, [type="submit"]:hover, .view-all:hover { background: #6ab0f3; border: 1px solid #6ab0f3; } .yellow-button, a.yellow-button { background: #ffd479; border: 1px solid #ffd479; color: #111 !important; } .yellow-button:hover, a.yellow-button:hover, .yellow-button:active, a.yellow-button:active, .yellow-button:focus, a.yellow-button:focus { background: #ffeea6; border: 1px solid #ffeea6; } a { color: #ffd479; } a:hover, a:active, a:focus { color: #ffeea6; } pre { color: #f9f9f9; } .date, .post-date, .post-description, .footer, .comment-meta a, .comment-reply-link, .token.cdata, .token.comment, .token.prolog { color: #777c85; } input::-webkit-input-placeholder, input::placeholder { color: #474a4f !important; } .post, #comments .comment { border-bottom: 2px solid #202020; } .post:hover { background: #202020 !important; } .terminal { background: #202020; color: #eee; border: 1px solid #202020; } .terminal:before { background: #444444; color: #202020; } .footer strong, .comment-reply-link:hover, .buy { color: #b3b9c5; } .buy, .yellow { color: #ffd479; } .post-title, .comment-author a, .comment-author cite.fn { color: #e2c891 !important; } [type="color"], [type="date"], [type="datetime-local"], [type="datetime"], [type="email"], [type="month"], [type="number"], [type="password"], [type="search"], [type="tel"], [type="text"], [type="time"], [type="url"], [type="week"], .newsletter-form [type="email"], .newsletter-form [type="text"], .search-form [type="search"], select, textarea { background: #202020; border: 1px solid #202020; color: #b3b9c5; } [type="color"]:hover, [type="date"]:hover, [type="datetime-local"]:hover, [type="datetime"]:hover, [type="email"]:hover, [type="month"]:hover, [type="number"]:hover, [type="password"]:hover, [type="search"]:hover, [type="tel"]:hover, [type="text"]:hover, [type="time"]:hover, [type="url"]:hover, [type="week"]:hover, .newsletter-form [type="email"]:hover, .newsletter-form [type="text"]:hover, .search-form [type="search"]:hover, select:hover, textarea:hover { background: #202020; border: 1px solid #202020; color: #b3b9c5; } [type="color"]:focus, [type="date"]:focus, [type="datetime-local"]:focus, [type="datetime"]:focus, [type="email"]:focus, [type="month"]:focus, [type="number"]:focus, [type="password"]:focus, [type="search"]:focus, [type="tel"]:focus, [type="text"]:focus, [type="time"]:focus, [type="url"]:focus, [type="week"]:focus, select:focus, textarea:focus, [type="color"]:active, [type="date"]:active, [type="datetime-local"]:active, [type="datetime"]:active, [type="email"]:active, [type="month"]:active, [type="number"]:active, [type="password"]:active, [type="search"]:active, [type="tel"]:active, [type="text"]:active, [type="time"]:active, [type="url"]:active, [type="week"]:active, .newsletter-form [type="email"]:focus, .newsletter-form [type="text"]:focus, .search-form [type="search"]:focus, .search-form [type="search"]:active, .search-form [type="search"]:focus, select:active, textarea:active { color: #b3b9c5; background: #242424; border: 1px solid #1d1d1d; box-shadow: none; } tbody tr:nth-child(even) { background-color: #383838; } th { border-bottom: 2px solid #202020; } td { border-bottom: 1px solid #202020; } :not(pre) > code { color: #fff; } .newsletter-form [type="text"]:hover, .newsletter-form [type="email"]:hover, .newsletter-form [type="text"]:focus, .newsletter-form [type="email"]:focus { background: #202020; } blockquote { border-color: #202020 !important; color: #777c85 !important; } blockquote.alert, blockquote.info, blockquote.note, blockquote.details, blockquote.success { background: #262626; } blockquote.success { border: 1px solid #28a745 !important; border-left: 8px solid #28a745 !important; color: #28a745 !important; } blockquote.details { border: 1px solid #a5c3ff !important; border-left: 8px solid #a5c3ff !important; color: #a5c3ff !important; } blockquote.note { border: 1px solid #cdcdcd !important; border-left: 8px solid #cdcdcd !important; color: #cdcdcd !important; } blockquote.info { border: 1px solid #f0d461 !important; border-left: 8px solid #f0d461 !important; color: #f0d461 !important; } blockquote.alert { border: 1px solid #ff4a6e !important; border-left: 8px solid #ff4a6e !important; color: #ff4a6e !important; } blockquote cite { color: rgba(255, 255, 255, 0.7); } .nav { background: #202020 !important; border-bottom: 2px solid #202020; } .newsletter, .author { background: #202020 !important; } .nav .nav-container .brand a { color: #b3b9c5; } .nav .buy { color: #b3b9c5; } .nav .nav-container a:hover, .nav .nav-container a:active { background: #292929 !important; color: #b3b9c5 !important; } .nav .nav-container a { color: #777c85; } .brand { color: #b3b9c5 !important; } .brand a:hover, .brand a:active { color: #b3b9c5 !important; } .bypostauthor { background: #202020; border-left: 12px solid #b8a249; padding: 0 1.5rem; } .tab-container .tab { background: #202020; color: #e1a6f2; } .tab-container .tab:hover { background: #202020; } :not(pre) > code { background: rgba(0, 0, 0, 0.2); } ::selection { background: #4a7baa; color: #fff; } .project-title { display: block; flex: 2; font-weight: 500; color: #b3b9c5; } .project-title:hover { text-decoration: underline; color: #b3b9c5; text-decoration: none !important; }
static/css/night.css
body, .children { background: #292929; color: #848991; } h1, h2, h3, h4, h5, .comment-reply-title, .comments-title { color: #b3b9c5; } h1 { color: #b3b9c5; } a.button, [type="button"], [type="submit"], .view-all { color: #ffffff !important; background: #4a7baa; border: 1px solid #4a7baa; } a.button:hover, [type="button"]:hover, [type="submit"]:hover, .view-all:hover { background: #6ab0f3; border: 1px solid #6ab0f3; } .yellow-button, a.yellow-button { background: #ffd479; border: 1px solid #ffd479; color: #111 !important; } .yellow-button:hover, a.yellow-button:hover, .yellow-button:active, a.yellow-button:active, .yellow-button:focus, a.yellow-button:focus { background: #ffeea6; border: 1px solid #ffeea6; } a { color: #ffd479; } a:hover, a:active, a:focus { color: #ffeea6; } pre { color: #f9f9f9; } .date, .post-date, .post-description, .footer, .comment-meta a, .comment-reply-link, .token.cdata, .token.comment, .token.prolog { color: #777c85; } input::-webkit-input-placeholder, input::placeholder { color: #474a4f !important; } .post, #comments .comment { border-bottom: 2px solid #202020; } .post:hover { background: #202020 !important; } .terminal { background: #202020; color: #eee; border: 1px solid #202020; } .terminal:before { background: #444444; color: #202020; } .footer strong, .comment-reply-link:hover, .buy { color: #b3b9c5; } .buy, .yellow { color: #ffd479; } .post-title, .comment-author a, .comment-author cite.fn { color: #e2c891 !important; } [type="color"], [type="date"], [type="datetime-local"], [type="datetime"], [type="email"], [type="month"], [type="number"], [type="password"], [type="search"], [type="tel"], [type="text"], [type="time"], [type="url"], [type="week"], .newsletter-form [type="email"], .newsletter-form [type="text"], .search-form [type="search"], select, textarea { background: #202020; border: 1px solid #202020; color: #b3b9c5; } [type="color"]:hover, [type="date"]:hover, [type="datetime-local"]:hover, [type="datetime"]:hover, [type="email"]:hover, [type="month"]:hover, [type="number"]:hover, [type="password"]:hover, [type="search"]:hover, [type="tel"]:hover, [type="text"]:hover, [type="time"]:hover, [type="url"]:hover, [type="week"]:hover, .newsletter-form [type="email"]:hover, .newsletter-form [type="text"]:hover, .search-form [type="search"]:hover, select:hover, textarea:hover { background: #202020; border: 1px solid #202020; color: #b3b9c5; } [type="color"]:focus, [type="date"]:focus, [type="datetime-local"]:focus, [type="datetime"]:focus, [type="email"]:focus, [type="month"]:focus, [type="number"]:focus, [type="password"]:focus, [type="search"]:focus, [type="tel"]:focus, [type="text"]:focus, [type="time"]:focus, [type="url"]:focus, [type="week"]:focus, select:focus, textarea:focus, [type="color"]:active, [type="date"]:active, [type="datetime-local"]:active, [type="datetime"]:active, [type="email"]:active, [type="month"]:active, [type="number"]:active, [type="password"]:active, [type="search"]:active, [type="tel"]:active, [type="text"]:active, [type="time"]:active, [type="url"]:active, [type="week"]:active, .newsletter-form [type="email"]:focus, .newsletter-form [type="text"]:focus, .search-form [type="search"]:focus, .search-form [type="search"]:active, .search-form [type="search"]:focus, select:active, textarea:active { color: #b3b9c5; background: #242424; border: 1px solid #1d1d1d; box-shadow: none; } tbody tr:nth-child(even) { background-color: #383838; } th { border-bottom: 2px solid #202020; } td { border-bottom: 1px solid #202020; } :not(pre) > code { color: #fff; } .newsletter-form [type="text"]:hover, .newsletter-form [type="email"]:hover, .newsletter-form [type="text"]:focus, .newsletter-form [type="email"]:focus { background: #202020; } blockquote { border-color: #202020 !important; color: #777c85 !important; } blockquote.alert, blockquote.info, blockquote.note, blockquote.details, blockquote.success { background: #262626; } blockquote.success { border: 1px solid #28a745 !important; border-left: 8px solid #28a745 !important; color: #28a745 !important; } blockquote.details { border: 1px solid #a5c3ff !important; border-left: 8px solid #a5c3ff !important; color: #a5c3ff !important; } blockquote.note { border: 1px solid #cdcdcd !important; border-left: 8px solid #cdcdcd !important; color: #cdcdcd !important; } blockquote.info { border: 1px solid #f0d461 !important; border-left: 8px solid #f0d461 !important; color: #f0d461 !important; } blockquote.alert { border: 1px solid #ff4a6e !important; border-left: 8px solid #ff4a6e !important; color: #ff4a6e !important; } blockquote cite { color: rgba(255, 255, 255, 0.7); } .nav { background: #202020 !important; border-bottom: 2px solid #202020; } .newsletter, .author { background: #202020 !important; } .nav .nav-container .brand a { color: #b3b9c5; } .nav .buy { color: #b3b9c5; } .nav .nav-container a:hover, .nav .nav-container a:active { background: #292929 !important; color: #b3b9c5 !important; } .nav .nav-container a { color: #777c85; } .brand { color: #b3b9c5 !important; } .brand a:hover, .brand a:active { color: #b3b9c5 !important; } .bypostauthor { background: #202020; border-left: 12px solid #b8a249; padding: 0 1.5rem; } .tab-container .tab { background: #202020; color: #e1a6f2; } .tab-container .tab:hover { background: #202020; } :not(pre) > code { background: rgba(0, 0, 0, 0.2); } ::selection { background: #4a7baa; color: #fff; } .project-title { display: block; flex: 2; font-weight: 500; color: #b3b9c5; } .project-title:hover { text-decoration: underline; color: #b3b9c5; text-decoration: none !important; }
0.250546
0.162912
@charset "UTF-8"; body, html { height: 100%; } * { margin: 0; padding: 0; } span { display: block; } ul, ol, li { list-style: none; } img { vertical-align: middle; /*display: block;*/ } a { text-decoration: none; color: #333; } h1, h2, h3, h4, h5, h6 { font-weight: normal; } /*input{ border: none; }*/ /*่ฎพ็ฝฎๅทฆๆตฎๅŠจ*/ .fl { float: left; } /*่ฎพ็ฝฎๅณๆตฎๅŠจ*/ .fr { float: right; } /*ๆธ…้™คๆตฎๅŠจ*/ .clr_fix:after { content: "."; display: block; height: 0; clear: both; overflow: hidden; visibility: hidden; } .centre { width: 1280px; margin: 0 auto; } .head { width: 1280px; height: 45px; margin: 0 auto; } .head ul { margin-left: 425px; line-height: 45px; text-align: center; } .head li { float: left; font-size: 14px; margin-left: 22px; } .head a i { float: left; } .head span { float: left; } /* main */ .main { width: 1280px; height: 55px; margin: 0 auto; } .main-left { float: left; width: 823px; height: 55px; background: #fff; } .main-left li { font-size: 14px; font-weight: bold; float: left; text-align: center; line-height: 55px; margin-left: 18px; } .main-left a:hover { color: red; } .main-right { float: right; background: #a1a1a1; width: 457px; height: 55px; } .main-right li { float: left; width: 25%; height: 55px; text-align: center; line-height: 55px; font-size: 14px; } .main-right a { color: #fff; font-weight: bold; } .main-right a:hover { color: red; } .reg-inner { width: 1280px; height: 420px; margin-top: 40px; } .reg-inner .reg-h { width: 1280px; height: 60px; font-size: 16px; text-indent: 6px; background-color: #f4f4f4; line-height: 60px; } .reg-ye { width: 1280px; height: 340px; margin-top: 20px; } .reg-box { width: 480px; height: 300px; margin: auto; margin-top: 20px; font-size: 12px; } .reg-icon { position: absolute; top: 0; right: 0; } form p { width: 100%; height: 72px; } input { width: 100%; margin-top: 25px; height: 30px; background: none; outline: none; border: none; border-bottom: 1px solid #ccc; } .reg-sub { width: 100%; height: 50px; background-color: #ccc; color: white; font-size: 16px; } input:focus { border-bottom: 1px solid green; } fieldset { border: none; } from span { float: right; margin-top: 20px; width: 100%; height: 16px; } .footer { width: 1280px; height: 173px; margin-top: 100px; } .footer-log { float: left; } .footer-nav ul { width: 1280px; height: 50.38px; background-color: black; } .footer-nav ul li { float: left; line-height: 50.38px; text-align: center; width: 23%; } .footer-nav ul li a { color: #fff; font-size: 12px; } .footer-bq { width: 1280px; height: 120px; position: relative; background: white; } .footer-wz { position: absolute; float: left; bottom: 2px; left: 4px; } .footer-wz span { font-size: 12px; color: #989A98; } .footer-t { float: right; } .footer-nav a:hover { color: orangered; } /*# sourceMappingURL=registry.css.map */
src/style/registry.css
@charset "UTF-8"; body, html { height: 100%; } * { margin: 0; padding: 0; } span { display: block; } ul, ol, li { list-style: none; } img { vertical-align: middle; /*display: block;*/ } a { text-decoration: none; color: #333; } h1, h2, h3, h4, h5, h6 { font-weight: normal; } /*input{ border: none; }*/ /*่ฎพ็ฝฎๅทฆๆตฎๅŠจ*/ .fl { float: left; } /*่ฎพ็ฝฎๅณๆตฎๅŠจ*/ .fr { float: right; } /*ๆธ…้™คๆตฎๅŠจ*/ .clr_fix:after { content: "."; display: block; height: 0; clear: both; overflow: hidden; visibility: hidden; } .centre { width: 1280px; margin: 0 auto; } .head { width: 1280px; height: 45px; margin: 0 auto; } .head ul { margin-left: 425px; line-height: 45px; text-align: center; } .head li { float: left; font-size: 14px; margin-left: 22px; } .head a i { float: left; } .head span { float: left; } /* main */ .main { width: 1280px; height: 55px; margin: 0 auto; } .main-left { float: left; width: 823px; height: 55px; background: #fff; } .main-left li { font-size: 14px; font-weight: bold; float: left; text-align: center; line-height: 55px; margin-left: 18px; } .main-left a:hover { color: red; } .main-right { float: right; background: #a1a1a1; width: 457px; height: 55px; } .main-right li { float: left; width: 25%; height: 55px; text-align: center; line-height: 55px; font-size: 14px; } .main-right a { color: #fff; font-weight: bold; } .main-right a:hover { color: red; } .reg-inner { width: 1280px; height: 420px; margin-top: 40px; } .reg-inner .reg-h { width: 1280px; height: 60px; font-size: 16px; text-indent: 6px; background-color: #f4f4f4; line-height: 60px; } .reg-ye { width: 1280px; height: 340px; margin-top: 20px; } .reg-box { width: 480px; height: 300px; margin: auto; margin-top: 20px; font-size: 12px; } .reg-icon { position: absolute; top: 0; right: 0; } form p { width: 100%; height: 72px; } input { width: 100%; margin-top: 25px; height: 30px; background: none; outline: none; border: none; border-bottom: 1px solid #ccc; } .reg-sub { width: 100%; height: 50px; background-color: #ccc; color: white; font-size: 16px; } input:focus { border-bottom: 1px solid green; } fieldset { border: none; } from span { float: right; margin-top: 20px; width: 100%; height: 16px; } .footer { width: 1280px; height: 173px; margin-top: 100px; } .footer-log { float: left; } .footer-nav ul { width: 1280px; height: 50.38px; background-color: black; } .footer-nav ul li { float: left; line-height: 50.38px; text-align: center; width: 23%; } .footer-nav ul li a { color: #fff; font-size: 12px; } .footer-bq { width: 1280px; height: 120px; position: relative; background: white; } .footer-wz { position: absolute; float: left; bottom: 2px; left: 4px; } .footer-wz span { font-size: 12px; color: #989A98; } .footer-t { float: right; } .footer-nav a:hover { color: orangered; } /*# sourceMappingURL=registry.css.map */
0.385837
0.055669
:root { --pink: rgb(243, 129, 129); --yellow: rgb(252, 227, 138); --main-color: rgb(149, 225, 211); --overlay-image: linear-gradient(90deg, rgba(252, 227, 138, 0.9) 0%, rgba(243, 129, 129, 0.9) 100%); } *, *::before, *::after { margin: 0; padding: 0; box-sizing: inherit; } html { box-sizing: border-box; } ul, ol { list-style: none; font-size: 0; } a { text-decoration: none; } img { display: block; max-width: 100%; height: auto; margin: 0; padding: 0; } .container { width: 1200px; margin: 0 auto; } .main-nav { display: flex; justify-content: space-between; align-items: baseline; margin: 19px 0 134px; } h1 { margin: 0; font-size: 0; } .logotype_link { font-size: 30px; font-family: 'Montserrat', sans-serif; color: var(--main-color); font-weight: 700; text-transform: initial; line-height: 36px; } .nav-list { display: flex; width: 490px; justify-content: space-between; } .nav-list-item-link { font-size: 14px; font-weight: 400; font-family: 'Montserrat', sans-serif; color: var(--main-color); text-transform: uppercase; line-height: 17px; } .nav-list-item-link::after { content: ""; display: block; margin-top: 10px; width: 100%; height: 3px; } .nav-list-item-link:hover, .nav-list-item-link:focus { color: var(--pink); } .nav-list-item:hover > .nav-list-item-link::after { background-color: var(--pink); } /* SECTIONS */ .before-section-title { display: block; font-size: 24px; font-weight: 400; font-family: 'Kaushan Script', cursive; text-transform: initial; color: rgb(51, 51, 51); line-height: 29px; text-align: center; margin-bottom: 18px; } .section-title { font-size: 30px; font-weight: 700; font-family: 'Montserrat', sans-serif; color: rgb(51, 51, 51); text-transform: uppercase; line-height: 36px; text-align: center; } .section-title::after { display: block; content: ''; width: 60px; height: 3px; background-color: var(--pink); margin: 39px auto 64px; } .service-list, .team-list { display: flex; flex-wrap: wrap; justify-content: space-between; } .service-list { justify-content: space-around; } .service-list li { width: 380px; } .service-list-item { padding-left: 62px; position: relative; margin-bottom: 94px; } .service-list-item::before { display: inline-block; position: absolute; left: 0; top: 0; content: ""; height: 32px; width: 32px; background-repeat: no-repeat; } .icon-alarm::before { background-image: url(../images/service/alarm.jpg); } .icon-graphic::before { background-image: url(../images/service/graphic.jpg); } .icon-computer::before { background-image: url(../images/service/computer.jpg); } .icon-book::before { background-image: url(../images/service/book.jpg); } .icon-home::before { background-image: url(../images/service/home.jpg); } .icon-photo::before { background-image: url(../images/service/image.png); } h3 { font-size: 14px; font-weight: 400; font-family: 'Montserrat', sans-serif; color: rgb(51, 51, 51); text-transform: uppercase; line-height: 17px; margin-bottom: 8px; } .service-about { font-size: 15px; font-weight: 400; font-family: "Roboto", sans-serif; color: rgb(153, 153, 153); line-height: 18px; } .container_team-about { width: 940px; margin: 0 auto; } .team-about { font-size: 15px; font-weight: 400; font-family: "Roboto", sans-serif; color: rgb(153, 153, 153); line-height: 24px; text-align: center; margin-bottom: 90px; } .team-list { justify-content: space-between; margin-bottom: 84px; } .team-list-item { width: 380px; margin-right: 30px; text-align: center; } .team-list-item:nth-child(3n) { margin-right: 0; } .team-photo { position: relative; margin-bottom: 30px; transition: all 1s linear; } .team-photo:hover { transform: translate(-10px, -10px); box-shadow: 10px 10px 0 0 var(--main-color); } .overlay { display: none; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background-image: var(--overlay-image); } .team-photo:hover > .overlay { display: block; } .social { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: fit-content; } .icon { display: inline-block; width: 56px; height: 56px; margin: 1px; background-color: var(--yellow); background-repeat: no-repeat; background-position: center; } .icon:hover, .icon:focus { background-color: var(--main-color); } .facebook { background-image: url(../images/social/facebook.png); } .twitter { background-image: url(../images/social/twitter.png); } .pinterest { background-image: url(../images/social/pinterest.png); } .instagram { background-image: url(../images/social/instagram.png); } .full_name { margin-bottom: 16px; } .positions { font-size: 15px; font-weight: 300; font-family: "Roboto", sans-serif; color: rgb(153, 153, 153); font-style: italic; line-height: 18px; } section:nth-last-child(1)::after { content: ""; display: block; width: 1200px; height: 1px; background-color: rgb(229, 229, 229); margin-bottom: 26px; } /* FOOTER */ .footer { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; } .copyright { font-size: 14px; font-weight: 400; font-family: 'Montserrat', sans-serif; color: rgb(51, 51, 51); text-transform: initial; line-height: 17px; } .copyrighter { color: var(--pink); text-decoration: underline; } .subscribe-form { display: flex; align-items: center; } .subscribe-form_button { width: 150px; height: 42px; border: none; background-color: var(--main-color); font-size: 14px; font-weight: 400; font-family: 'Montserrat', sans-serif; color: rgb(255, 255, 255); text-transform: uppercase; line-height: 17px; } .subscribe-form_button:hover, .subscribe-form_button:focus { background-color: var(--pink); } .subscribe-form_input { width: 230px; height: 40px; font-size: 15px; line-height:18px; font-weight: 300; font-family: "Roboto", sans-serif; font-style: italic; padding-left: 13px; }
html-css/module-06/css/style.css
:root { --pink: rgb(243, 129, 129); --yellow: rgb(252, 227, 138); --main-color: rgb(149, 225, 211); --overlay-image: linear-gradient(90deg, rgba(252, 227, 138, 0.9) 0%, rgba(243, 129, 129, 0.9) 100%); } *, *::before, *::after { margin: 0; padding: 0; box-sizing: inherit; } html { box-sizing: border-box; } ul, ol { list-style: none; font-size: 0; } a { text-decoration: none; } img { display: block; max-width: 100%; height: auto; margin: 0; padding: 0; } .container { width: 1200px; margin: 0 auto; } .main-nav { display: flex; justify-content: space-between; align-items: baseline; margin: 19px 0 134px; } h1 { margin: 0; font-size: 0; } .logotype_link { font-size: 30px; font-family: 'Montserrat', sans-serif; color: var(--main-color); font-weight: 700; text-transform: initial; line-height: 36px; } .nav-list { display: flex; width: 490px; justify-content: space-between; } .nav-list-item-link { font-size: 14px; font-weight: 400; font-family: 'Montserrat', sans-serif; color: var(--main-color); text-transform: uppercase; line-height: 17px; } .nav-list-item-link::after { content: ""; display: block; margin-top: 10px; width: 100%; height: 3px; } .nav-list-item-link:hover, .nav-list-item-link:focus { color: var(--pink); } .nav-list-item:hover > .nav-list-item-link::after { background-color: var(--pink); } /* SECTIONS */ .before-section-title { display: block; font-size: 24px; font-weight: 400; font-family: 'Kaushan Script', cursive; text-transform: initial; color: rgb(51, 51, 51); line-height: 29px; text-align: center; margin-bottom: 18px; } .section-title { font-size: 30px; font-weight: 700; font-family: 'Montserrat', sans-serif; color: rgb(51, 51, 51); text-transform: uppercase; line-height: 36px; text-align: center; } .section-title::after { display: block; content: ''; width: 60px; height: 3px; background-color: var(--pink); margin: 39px auto 64px; } .service-list, .team-list { display: flex; flex-wrap: wrap; justify-content: space-between; } .service-list { justify-content: space-around; } .service-list li { width: 380px; } .service-list-item { padding-left: 62px; position: relative; margin-bottom: 94px; } .service-list-item::before { display: inline-block; position: absolute; left: 0; top: 0; content: ""; height: 32px; width: 32px; background-repeat: no-repeat; } .icon-alarm::before { background-image: url(../images/service/alarm.jpg); } .icon-graphic::before { background-image: url(../images/service/graphic.jpg); } .icon-computer::before { background-image: url(../images/service/computer.jpg); } .icon-book::before { background-image: url(../images/service/book.jpg); } .icon-home::before { background-image: url(../images/service/home.jpg); } .icon-photo::before { background-image: url(../images/service/image.png); } h3 { font-size: 14px; font-weight: 400; font-family: 'Montserrat', sans-serif; color: rgb(51, 51, 51); text-transform: uppercase; line-height: 17px; margin-bottom: 8px; } .service-about { font-size: 15px; font-weight: 400; font-family: "Roboto", sans-serif; color: rgb(153, 153, 153); line-height: 18px; } .container_team-about { width: 940px; margin: 0 auto; } .team-about { font-size: 15px; font-weight: 400; font-family: "Roboto", sans-serif; color: rgb(153, 153, 153); line-height: 24px; text-align: center; margin-bottom: 90px; } .team-list { justify-content: space-between; margin-bottom: 84px; } .team-list-item { width: 380px; margin-right: 30px; text-align: center; } .team-list-item:nth-child(3n) { margin-right: 0; } .team-photo { position: relative; margin-bottom: 30px; transition: all 1s linear; } .team-photo:hover { transform: translate(-10px, -10px); box-shadow: 10px 10px 0 0 var(--main-color); } .overlay { display: none; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background-image: var(--overlay-image); } .team-photo:hover > .overlay { display: block; } .social { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: fit-content; } .icon { display: inline-block; width: 56px; height: 56px; margin: 1px; background-color: var(--yellow); background-repeat: no-repeat; background-position: center; } .icon:hover, .icon:focus { background-color: var(--main-color); } .facebook { background-image: url(../images/social/facebook.png); } .twitter { background-image: url(../images/social/twitter.png); } .pinterest { background-image: url(../images/social/pinterest.png); } .instagram { background-image: url(../images/social/instagram.png); } .full_name { margin-bottom: 16px; } .positions { font-size: 15px; font-weight: 300; font-family: "Roboto", sans-serif; color: rgb(153, 153, 153); font-style: italic; line-height: 18px; } section:nth-last-child(1)::after { content: ""; display: block; width: 1200px; height: 1px; background-color: rgb(229, 229, 229); margin-bottom: 26px; } /* FOOTER */ .footer { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; } .copyright { font-size: 14px; font-weight: 400; font-family: 'Montserrat', sans-serif; color: rgb(51, 51, 51); text-transform: initial; line-height: 17px; } .copyrighter { color: var(--pink); text-decoration: underline; } .subscribe-form { display: flex; align-items: center; } .subscribe-form_button { width: 150px; height: 42px; border: none; background-color: var(--main-color); font-size: 14px; font-weight: 400; font-family: 'Montserrat', sans-serif; color: rgb(255, 255, 255); text-transform: uppercase; line-height: 17px; } .subscribe-form_button:hover, .subscribe-form_button:focus { background-color: var(--pink); } .subscribe-form_input { width: 230px; height: 40px; font-size: 15px; line-height:18px; font-weight: 300; font-family: "Roboto", sans-serif; font-style: italic; padding-left: 13px; }
0.49707
0.129375
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; } .indirim { background-image: url("./perdeYeri/img/Dikdรถrtgen1.png"); background-size: 100% 100%; height: 15vh; } .size-25 { font-size: 33px; } .text-red { color: red; } .logo-size { width: 40vh; } .button-search { background-color: red; color: white; font-size: 24px; float: right; } .input-search { width: 55vh; font-size: 18px; float: left; } .sepetim { font-size: 23px; } .sepetim a { text-decoration: none; color: red; } .text-white-navbar { color: white !important; } .img-firsat { background-image: url("./perdeYeri/img/img-firsat.png"); background-size: 100% 100%; } .ic-border { border: #666c74 solid 1px; } .slider1-img { width: 33vh; } .btn-slider1 { color: #666c74; position: absolute; margin: 5px; top: 33vh; font-size: 10px !important; } .btn-slider1-next { right: 4vh; } .btn-slider1-prev { left: 4vh; } .hafta-urun { position: absolute; top: 5vh; font-size: 20px; left: 15vh; } .swiper-container { width: 100%; height: 300px; margin-left: auto; margin-right: auto; } .swiper-slide { background-size: cover; background-position: center; } .gallery-top { height: 80%; width: 100%; } .gallery-thumbs { height: 20%; box-sizing: border-box; padding: 10px 0; } .gallery-thumbs .swiper-slide { width: 25%; height: 100%; opacity: 0.4; } .gallery-thumbs .swiper-slide-thumb-active { opacity: 1; } .border-bottom1 { border-bottom: 2px solid #666c74;; } .perde-tur { background-color: gray; opacity: 0.9; text-align: center; font-size: 25px; color: white; width: 91%; } .perde-tur-bottom { position: absolute; bottom: 0; } .perde-tur-top { position: absolute; top: 38vh; } .perde-tur-center { position: absolute; top: 48vh; } .bg-orange { color: #fa9d57; } .icon { background-color: white; width: 5vh; height: 5vh; padding: 8px; font-size: 20px; color: gray; border: 3px solid gray; } .font-vitrin-p{ font-size: 18px; color: #4e535a; font-family: "Montserrat"; font-weight: 300; } .font-vitrin-p-fiyat{ font-size: 25px; color: #666c74; font-family: "Montserrat"; font-weight: 700; } .font-bizi-takip{ font-size: 18px; color: #ffffff; font-family: "Montserrat"; font-weight: 400; } .alt-indirim{ font-size: 36px; line-height: 48px; color: #eb4364; font-family: "Montserrat"; font-weight: 700; } .font-musteri{ font-size: 14px; letter-spacing: 3px; color: #ffffff; font-family: "Montserrat"; font-weight: 400; } .font-musteri-number{ font-size: 31px; letter-spacing: 3px; color: #ffffff; font-family: "Montserrat"; font-weight: 400; } .font-alt-logolar{ font-size: 16px; color: #666c74; font-family: "Montserrat"; font-weight: 400; } .font-footer{ font-size: 12px; color: #666c74; font-family: "Montserrat"; font-weight: 400; } .swiper-container1{ overflow: hidden; } .bg-dark1{ background-color: #666c74; } .font-link-alt:link,.font-link-alt:visited ,.font-link-alt:hover ,.font-link-alt:active{ text-decoration: none; font-size: 15px; line-height: 37px; color: #666c74; font-family: "Montserrat"; font-weight: 300; } .font-alt-baslik{ font-size: 16px; color: #666c74; font-family: "Montserrat"; font-weight: 400; } .indirim-etiket{ background-color: #eb4364 ; opacity: 0.80; width: 25%; position: absolute; top: 2vh; right: 2vh; } .cargo-etiket{ width: 22%; position: absolute; top: 5vh; right: 0; } .indirim-oran{ font-size: 25px; color: #ffffff; font-family: "Montserrat"; font-weight: 400; } .indirim-text{ font-size: 15px; color: #ffffff; font-family: "Montserrat"; font-weight: 400; } .bg-red{ background-color: #eb4364 ; opacity: 0.87; } .opacity-87{ opacity: 0.75; } .z-index-1{ z-index: 1; } .font-cargo{ text-align: center; font-size: 20px; line-height: 17px; color: #ffffff; font-family: "Roboto"; font-weight: 400; } .w-100{ width: 160vh !important; }
style.css
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; } .indirim { background-image: url("./perdeYeri/img/Dikdรถrtgen1.png"); background-size: 100% 100%; height: 15vh; } .size-25 { font-size: 33px; } .text-red { color: red; } .logo-size { width: 40vh; } .button-search { background-color: red; color: white; font-size: 24px; float: right; } .input-search { width: 55vh; font-size: 18px; float: left; } .sepetim { font-size: 23px; } .sepetim a { text-decoration: none; color: red; } .text-white-navbar { color: white !important; } .img-firsat { background-image: url("./perdeYeri/img/img-firsat.png"); background-size: 100% 100%; } .ic-border { border: #666c74 solid 1px; } .slider1-img { width: 33vh; } .btn-slider1 { color: #666c74; position: absolute; margin: 5px; top: 33vh; font-size: 10px !important; } .btn-slider1-next { right: 4vh; } .btn-slider1-prev { left: 4vh; } .hafta-urun { position: absolute; top: 5vh; font-size: 20px; left: 15vh; } .swiper-container { width: 100%; height: 300px; margin-left: auto; margin-right: auto; } .swiper-slide { background-size: cover; background-position: center; } .gallery-top { height: 80%; width: 100%; } .gallery-thumbs { height: 20%; box-sizing: border-box; padding: 10px 0; } .gallery-thumbs .swiper-slide { width: 25%; height: 100%; opacity: 0.4; } .gallery-thumbs .swiper-slide-thumb-active { opacity: 1; } .border-bottom1 { border-bottom: 2px solid #666c74;; } .perde-tur { background-color: gray; opacity: 0.9; text-align: center; font-size: 25px; color: white; width: 91%; } .perde-tur-bottom { position: absolute; bottom: 0; } .perde-tur-top { position: absolute; top: 38vh; } .perde-tur-center { position: absolute; top: 48vh; } .bg-orange { color: #fa9d57; } .icon { background-color: white; width: 5vh; height: 5vh; padding: 8px; font-size: 20px; color: gray; border: 3px solid gray; } .font-vitrin-p{ font-size: 18px; color: #4e535a; font-family: "Montserrat"; font-weight: 300; } .font-vitrin-p-fiyat{ font-size: 25px; color: #666c74; font-family: "Montserrat"; font-weight: 700; } .font-bizi-takip{ font-size: 18px; color: #ffffff; font-family: "Montserrat"; font-weight: 400; } .alt-indirim{ font-size: 36px; line-height: 48px; color: #eb4364; font-family: "Montserrat"; font-weight: 700; } .font-musteri{ font-size: 14px; letter-spacing: 3px; color: #ffffff; font-family: "Montserrat"; font-weight: 400; } .font-musteri-number{ font-size: 31px; letter-spacing: 3px; color: #ffffff; font-family: "Montserrat"; font-weight: 400; } .font-alt-logolar{ font-size: 16px; color: #666c74; font-family: "Montserrat"; font-weight: 400; } .font-footer{ font-size: 12px; color: #666c74; font-family: "Montserrat"; font-weight: 400; } .swiper-container1{ overflow: hidden; } .bg-dark1{ background-color: #666c74; } .font-link-alt:link,.font-link-alt:visited ,.font-link-alt:hover ,.font-link-alt:active{ text-decoration: none; font-size: 15px; line-height: 37px; color: #666c74; font-family: "Montserrat"; font-weight: 300; } .font-alt-baslik{ font-size: 16px; color: #666c74; font-family: "Montserrat"; font-weight: 400; } .indirim-etiket{ background-color: #eb4364 ; opacity: 0.80; width: 25%; position: absolute; top: 2vh; right: 2vh; } .cargo-etiket{ width: 22%; position: absolute; top: 5vh; right: 0; } .indirim-oran{ font-size: 25px; color: #ffffff; font-family: "Montserrat"; font-weight: 400; } .indirim-text{ font-size: 15px; color: #ffffff; font-family: "Montserrat"; font-weight: 400; } .bg-red{ background-color: #eb4364 ; opacity: 0.87; } .opacity-87{ opacity: 0.75; } .z-index-1{ z-index: 1; } .font-cargo{ text-align: center; font-size: 20px; line-height: 17px; color: #ffffff; font-family: "Roboto"; font-weight: 400; } .w-100{ width: 160vh !important; }
0.500732
0.083553
.cardstack, .hand { position: relative; height: 9.6em; } .card { height: 8.85em; width: 6.4em; background: #fff url('/blackjack21/images/card-set.png') no-repeat; background-size: 1300% 400%; border: 1px solid #695d39; -webkit-border-radius: .5em; -moz-border-radius: .5em; border-radius: .5em; -webkit-box-shadow: 0 0 .5em -.15em #000; -moz-box-shadow: 0 0 .5em -.15em #000; box-shadow: 0 0 .5em -.15em #000; font-family: 'Times', serif; text-align: left; line-height: 1em; padding-top: .25em; padding-left: .1em; letter-spacing: -.2em; position: absolute; } /* SUITS */ .C { background-position-y: 0; color: #000; } .D { background-position-y: -9.1em; color: #890000; } .S { background-position-y: -18.2em; color: #000; } .H { background-position-y: -27.3em; color: #890000; } /* RANKS */ .rankA { background-position-x: 0; } .rank2 { background-position-x: -6.5em; } .rank3 { background-position-x: -13em; } .rank4 { background-position-x: -19.5em; } .rank5 { background-position-x: -26em; } .rank6 { background-position-x: -32.5em; } .rank7 { background-position-x: -39em; } .rank8 { background-position-x: -45.5em; } .rank9 { background-position-x: -52em; } .rank10 { background-position-x: -58.5em;} .rankJ { background-position-x: -65em; } .rankQ { background-position-x: -71.5em; } .rankK { background-position-x: -78em; } /* Lay cards out edge-to-edge */ .card:nth-of-type(1) { left: 0; } .card:nth-of-type(2) { left: 7em; } .card:nth-of-type(3) { left: 14em; } .card:nth-of-type(4) { left: 21em; } .card:nth-of-type(5) { left: 28em; } /* Lay cards out in a stacked hand showing indices */ .hand .card:nth-of-type(1) { left: 0; } .hand .card:nth-of-type(2) { left: 1em; } .hand .card:nth-of-type(3) { left: 2em; } .hand .card:nth-of-type(4) { left: 3em; } .hand .card:nth-of-type(5) { left: 4em; } /* For FF compatibility, the combined rank-suit classes */ /* For FF compatibility, the combined rank-suit classes */ .rankACLUBS {color: #000; background-position: 0 0; } .rankADIAMONDS {color: #890000; background-position: 0 -9.1em; } .rankASPADES {color: #000; background-position: 0 -18.2em; } .rankAHEARTS {color: #890000; background-position: 0 -27.3em; } .rank2CLUBS {color: #000; background-position: -6.5em 0; } .rank2DIAMONDS {color: #890000; background-position: -6.5em -9.1em; } .rank2SPADES {color: #000; background-position: -6.5em -18.2em; } .rank2HEARTS {color: #890000; background-position: -6.5em -27.3em; } .rank3CLUBS {color: #000; background-position: -13em 0; } .rank3DIAMONDS {color: #890000; background-position: -13em -9.1em; } .rank3SPADES {color: #000; background-position: -13em -18.2em; } .rank3HEARTS {color: #890000; background-position: -13em -27.3em; } .rank4CLUBS {color: #000; background-position: -19.5em 0; } .rank4DIAMONDS {color: #890000; background-position: -19.5em -9.1em; } .rank4SPADES {color: #000; background-position: -19.5em -18.2em; } .rank4HEARTS {color: #890000; background-position: -19.5em -27.3em; } .rank5CLUBS {color: #000; background-position: -26em 0; } .rank5DIAMONDS {color: #890000; background-position: -26em -9.1em; } .rank5SPADES {color: #000; background-position: -26em -18.2em; } .rank5HEARTS {color: #890000; background-position: -26em -27.3em; } .rank6CLUBS {color: #000; background-position: -32.5em 0; } .rank6DIAMONDS {color: #890000; background-position: -32.5em -9.1em; } .rank6SPADES {color: #000; background-position: -32.5em -18.2em; } .rank6HEARTS {color: #890000; background-position: -32.5em -27.3em; } .rank7CLUBS {color: #000; background-position: -39em 0; } .rank7DIAMONDS {color: #890000; background-position: -39em -9.1em; } .rank7SPADES {color: #000; background-position: -39em -18.2em; } .rank7HEARTS {color: #890000; background-position: -39em -27.3em; } .rank8CLUBS {color: #000; background-position: -45.5em 0; } .rank8DIAMONDS {color: #890000; background-position: -45.5em -9.1em; } .rank8SPADES {color: #000; background-position: -45.5em -18.2em; } .rank8HEARTS {color: #890000; background-position: -45.5em -27.3em; } .rank9CLUBS {color: #000; background-position: -52em 0; } .rank9DIAMONDS {color: #890000; background-position: -52em -9.1em; } .rank9SPADES {color: #000; background-position: -52em -18.2em; } .rank9HEARTS {color: #890000; background-position: -52em -27.3em; } .rank10CLUBS {color: #000; background-position: -58.5em 0; } .rank10DIAMONDS {color: #890000; background-position: -58.5em -9.1em; } .rank10SPADES {color: #000; background-position: -58.5em -18.2em; } .rank10HEARTS {color: #890000; background-position: -58.5em -27.3em; } .rankJCLUBS {color: #000; background-position: -65em 0; } .rankJDIAMONDS {color: #890000; background-position: -65em -9.1em; } .rankJSPADES {color: #000; background-position: -65em -18.2em; } .rankJHEARTS {color: #890000; background-position: -65em -27.3em; } .rankQCLUBS {color: #000; background-position: -71.5em 0; } .rankQDIAMONDS {color: #890000; background-position: -71.5em -9.1em; } .rankQSPADES {color: #000; background-position: -71.5em -18.2em; } .rankQHEARTS {color: #890000; background-position: -71.5em -27.3em; } .rankKCLUBS {color: #000; background-position: -78em 0; } .rankKDIAMONDS {color: #890000; background-position: -78em -9.1em; } .rankKSPADES {color: #000; background-position: -78em -18.2em; } .rankKHEARTS {color: #890000; background-position: -78em -27.3em; }
src/main/webapp/css/style.css
.cardstack, .hand { position: relative; height: 9.6em; } .card { height: 8.85em; width: 6.4em; background: #fff url('/blackjack21/images/card-set.png') no-repeat; background-size: 1300% 400%; border: 1px solid #695d39; -webkit-border-radius: .5em; -moz-border-radius: .5em; border-radius: .5em; -webkit-box-shadow: 0 0 .5em -.15em #000; -moz-box-shadow: 0 0 .5em -.15em #000; box-shadow: 0 0 .5em -.15em #000; font-family: 'Times', serif; text-align: left; line-height: 1em; padding-top: .25em; padding-left: .1em; letter-spacing: -.2em; position: absolute; } /* SUITS */ .C { background-position-y: 0; color: #000; } .D { background-position-y: -9.1em; color: #890000; } .S { background-position-y: -18.2em; color: #000; } .H { background-position-y: -27.3em; color: #890000; } /* RANKS */ .rankA { background-position-x: 0; } .rank2 { background-position-x: -6.5em; } .rank3 { background-position-x: -13em; } .rank4 { background-position-x: -19.5em; } .rank5 { background-position-x: -26em; } .rank6 { background-position-x: -32.5em; } .rank7 { background-position-x: -39em; } .rank8 { background-position-x: -45.5em; } .rank9 { background-position-x: -52em; } .rank10 { background-position-x: -58.5em;} .rankJ { background-position-x: -65em; } .rankQ { background-position-x: -71.5em; } .rankK { background-position-x: -78em; } /* Lay cards out edge-to-edge */ .card:nth-of-type(1) { left: 0; } .card:nth-of-type(2) { left: 7em; } .card:nth-of-type(3) { left: 14em; } .card:nth-of-type(4) { left: 21em; } .card:nth-of-type(5) { left: 28em; } /* Lay cards out in a stacked hand showing indices */ .hand .card:nth-of-type(1) { left: 0; } .hand .card:nth-of-type(2) { left: 1em; } .hand .card:nth-of-type(3) { left: 2em; } .hand .card:nth-of-type(4) { left: 3em; } .hand .card:nth-of-type(5) { left: 4em; } /* For FF compatibility, the combined rank-suit classes */ /* For FF compatibility, the combined rank-suit classes */ .rankACLUBS {color: #000; background-position: 0 0; } .rankADIAMONDS {color: #890000; background-position: 0 -9.1em; } .rankASPADES {color: #000; background-position: 0 -18.2em; } .rankAHEARTS {color: #890000; background-position: 0 -27.3em; } .rank2CLUBS {color: #000; background-position: -6.5em 0; } .rank2DIAMONDS {color: #890000; background-position: -6.5em -9.1em; } .rank2SPADES {color: #000; background-position: -6.5em -18.2em; } .rank2HEARTS {color: #890000; background-position: -6.5em -27.3em; } .rank3CLUBS {color: #000; background-position: -13em 0; } .rank3DIAMONDS {color: #890000; background-position: -13em -9.1em; } .rank3SPADES {color: #000; background-position: -13em -18.2em; } .rank3HEARTS {color: #890000; background-position: -13em -27.3em; } .rank4CLUBS {color: #000; background-position: -19.5em 0; } .rank4DIAMONDS {color: #890000; background-position: -19.5em -9.1em; } .rank4SPADES {color: #000; background-position: -19.5em -18.2em; } .rank4HEARTS {color: #890000; background-position: -19.5em -27.3em; } .rank5CLUBS {color: #000; background-position: -26em 0; } .rank5DIAMONDS {color: #890000; background-position: -26em -9.1em; } .rank5SPADES {color: #000; background-position: -26em -18.2em; } .rank5HEARTS {color: #890000; background-position: -26em -27.3em; } .rank6CLUBS {color: #000; background-position: -32.5em 0; } .rank6DIAMONDS {color: #890000; background-position: -32.5em -9.1em; } .rank6SPADES {color: #000; background-position: -32.5em -18.2em; } .rank6HEARTS {color: #890000; background-position: -32.5em -27.3em; } .rank7CLUBS {color: #000; background-position: -39em 0; } .rank7DIAMONDS {color: #890000; background-position: -39em -9.1em; } .rank7SPADES {color: #000; background-position: -39em -18.2em; } .rank7HEARTS {color: #890000; background-position: -39em -27.3em; } .rank8CLUBS {color: #000; background-position: -45.5em 0; } .rank8DIAMONDS {color: #890000; background-position: -45.5em -9.1em; } .rank8SPADES {color: #000; background-position: -45.5em -18.2em; } .rank8HEARTS {color: #890000; background-position: -45.5em -27.3em; } .rank9CLUBS {color: #000; background-position: -52em 0; } .rank9DIAMONDS {color: #890000; background-position: -52em -9.1em; } .rank9SPADES {color: #000; background-position: -52em -18.2em; } .rank9HEARTS {color: #890000; background-position: -52em -27.3em; } .rank10CLUBS {color: #000; background-position: -58.5em 0; } .rank10DIAMONDS {color: #890000; background-position: -58.5em -9.1em; } .rank10SPADES {color: #000; background-position: -58.5em -18.2em; } .rank10HEARTS {color: #890000; background-position: -58.5em -27.3em; } .rankJCLUBS {color: #000; background-position: -65em 0; } .rankJDIAMONDS {color: #890000; background-position: -65em -9.1em; } .rankJSPADES {color: #000; background-position: -65em -18.2em; } .rankJHEARTS {color: #890000; background-position: -65em -27.3em; } .rankQCLUBS {color: #000; background-position: -71.5em 0; } .rankQDIAMONDS {color: #890000; background-position: -71.5em -9.1em; } .rankQSPADES {color: #000; background-position: -71.5em -18.2em; } .rankQHEARTS {color: #890000; background-position: -71.5em -27.3em; } .rankKCLUBS {color: #000; background-position: -78em 0; } .rankKDIAMONDS {color: #890000; background-position: -78em -9.1em; } .rankKSPADES {color: #000; background-position: -78em -18.2em; } .rankKHEARTS {color: #890000; background-position: -78em -27.3em; }
0.434221
0.102619
* { margin:0; padding:0; box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; } body { font-family: 'Roboto', sans-serif; line-height: 1.61em; box-sizing: border-box; font-size:16px; } h1, h2, h3, h4, h5 { clear:both; } a { color: #0000EE; } header { background:rgb(222,75,149); color:rgb(255,255,255); text-align: center; padding:3em; } header h1, header .lead { font-weight:100; } header img { margin: 0px auto; display: block; height: 30%; width:auto; } /* Nav */ nav { padding:2em 1em; } nav ul { list-style:none; margin-left:1em; } nav ul li a { display:block; padding:0 0 0 1em; border-left:2px solid transparent; text-decoration:none; font-size:1em; } nav ul li a:hover { border-left:2px solid rgb(222,75,149); text-decoration:none; } nav ul ul li a { font-size:0.85em; } article { clear:both; overflow:hidden; margin-top:2em; } .toolkit-example { border:1px solid #e1e1e8; padding: 9px 14px; border-radius: 4px; position:relative; } .toolkit-example:before { content:"Example"; color:#b1b1b1; margin-bottom: 1em; display: block; } .toolkit-example + .highlight { margin-top: 0; margin-bottom: 0; border-top: none; border-radius: 0 0 0 4px; } .highlight, .highlight * { background: #f6f6f6; } .code-toggle { float: right; display: inline-block; position: relative; top: -1px; background: #ffffff; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border: 1px solid #e1e1e8; border-top: none; padding: 4px 8px; } .code-toggle.open { background: #f6f6f6; } .CodeMirror-scroll { height: auto; } /* Demos */ .demo-box { position:relative; width:98%; height:150px; background:#fbfbfb; border:1px solid #e1e1e8; padding: 4px; border-radius: 4px; margin:1%; float:left; z-index: 1; } .component-button { margin: .25em; } .component-flag { margin: .25em .75em; } /* Quotes - Overwriting Bootstrap styling */ blockquote footer, blockquote footer span, blockquote footer small { font-size:1em; color:inherit; } blockquote footer:before, blockquote footer span:before, blockquote footer small:before { content:""; } .example-weather { display: -webkit-flex; display: flex; }
docs/public/assets/style.css
* { margin:0; padding:0; box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; } body { font-family: 'Roboto', sans-serif; line-height: 1.61em; box-sizing: border-box; font-size:16px; } h1, h2, h3, h4, h5 { clear:both; } a { color: #0000EE; } header { background:rgb(222,75,149); color:rgb(255,255,255); text-align: center; padding:3em; } header h1, header .lead { font-weight:100; } header img { margin: 0px auto; display: block; height: 30%; width:auto; } /* Nav */ nav { padding:2em 1em; } nav ul { list-style:none; margin-left:1em; } nav ul li a { display:block; padding:0 0 0 1em; border-left:2px solid transparent; text-decoration:none; font-size:1em; } nav ul li a:hover { border-left:2px solid rgb(222,75,149); text-decoration:none; } nav ul ul li a { font-size:0.85em; } article { clear:both; overflow:hidden; margin-top:2em; } .toolkit-example { border:1px solid #e1e1e8; padding: 9px 14px; border-radius: 4px; position:relative; } .toolkit-example:before { content:"Example"; color:#b1b1b1; margin-bottom: 1em; display: block; } .toolkit-example + .highlight { margin-top: 0; margin-bottom: 0; border-top: none; border-radius: 0 0 0 4px; } .highlight, .highlight * { background: #f6f6f6; } .code-toggle { float: right; display: inline-block; position: relative; top: -1px; background: #ffffff; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border: 1px solid #e1e1e8; border-top: none; padding: 4px 8px; } .code-toggle.open { background: #f6f6f6; } .CodeMirror-scroll { height: auto; } /* Demos */ .demo-box { position:relative; width:98%; height:150px; background:#fbfbfb; border:1px solid #e1e1e8; padding: 4px; border-radius: 4px; margin:1%; float:left; z-index: 1; } .component-button { margin: .25em; } .component-flag { margin: .25em .75em; } /* Quotes - Overwriting Bootstrap styling */ blockquote footer, blockquote footer span, blockquote footer small { font-size:1em; color:inherit; } blockquote footer:before, blockquote footer span:before, blockquote footer small:before { content:""; } .example-weather { display: -webkit-flex; display: flex; }
0.415017
0.104843
$< header_text=$opposite(header_back) canvas_text=$opposite(canvas_back) body_text=$opposite(body_back) panel_back=$mix(canvas_back, header_back, 85) border_color=$mix(canvas_back, header_back, 50) /* Panels border color */ nav_back=$mix(header_back, canvas_back, 70) box_back=$get(panel_back) /* Controls like EditBox, Code Box or Quote */ /* deprecated */ link_text=$mix(canvas_text, highlight, 50) > /* ref: http://codex.wordpress.org/CSS */ html { } body { font: $get(font_size)pt $get(font_name); background: $get(body_back); color: $get(body_text); } h1{ font-size: 160%; } h2{ font-size: 150%; } h3{ font-size: 130%; } h4{ font-size: 120%; } h5{ font-size: 110%; } h6{ font-size: 100%; } .title { /* in sidebar */ font-size: 120%; } /* H1 of head/title not same size of h1 of post content*/ #header h1 { font-size: 220%; font-weight: bold; } #header h2 { font-size: 200%; } #header h3 { font-size: 180%; } .post-title h1{ /* should be .post-title h1*/ font-size: 300%; } a{ text-decoration: none; color: $get(link_text); } a:hover{ text-decoration: none; color: $get(highlight); } caption, th, td { font-weight: normal; } .post-content img{ height: auto; max-width: 100%; margin: 0.5em; } img.aligncenter{ margin: 0.5em 0em; } .sticky{ } .gallery-caption{ color: $get(canvas_text); } .bypostauthor{ /* display: inline-block;*/ } .aligncenter, div.aligncenter { display: block; margin-left: auto; margin-right: auto; } .skip { display: none; } pre { padding: 0.5em; margin: 0em; overflow: auto; background: $get(box_back); color: $get(canvas_text); border: 1px dotted $get(border_color) } code{ padding: 0.1em; margin: 0em; } pre, code{ font-family: monospace, serif; font-size: 11pt; border-radius: 0.2em; } embed, iframe, object { max-width: 100%; max-height: 100%; } /*----------------*/ #container { background: $get(panel_back); color: $get(canvas_text); } #header { background: $get(header_back); $if(gradients)< background: linear-gradient(to bottom, $change(header_back, 20) 15%, $change(header_back, 20) 10%, $change(header_back) 70%); > text-decoration: none; } #logo-header{ } #title{ } #logo-image{ } #logo-text { } @media screen { #header h1{ /* text-outline: 2px 2px #ff0000; not supported yet by any browser */ text-shadow: 0.1em 0.1em 0.1em $change(header_back, -20); } } $ifnot(is_mobile)< @media screen{ #container { box-shadow: 0.3em 0.3em 0.3em #999; border-radius: 0px 0px 5px 5px; margin-bottom: 1em; } #header { box-shadow: 0em 0.2em 0.5em 0.0em $mix(header_back, canvas_back); } } > #description{ color: $get(header_text); margin: 0.5em 0em; } #header a{ text-decoration: none; color: $get(header_text); } #wrapper { } /** mainbar content */ #mainbar { /*do not put padding or margin or border width */ background: $get(canvas_back); width: 100%; } #mainbar .post-title { padding: 0.2em 0; margin: 0.2em 0 0 0; } hr { color: $change(border_color); border-style: dotted; border-width: 0px 0px 1px 0px; margin: 0em; padding: 0em; } @media screen{ #mainbar .post-title { border-bottom: 1px solid $get(border_color); } .post{ border-bottom: 0.2em solid $change(panel_back, -15); /* box-shadow: 0em 0.5em 0.5em -0.5em red;*/ /* margin-bottom: 0.5em; */ } .post-rest{ border-top: 0.3em solid $change(body_back); padding-top: 2em; } } @media print{ #mainbar .post-title { border-bottom: 1px solid #333; } } #contents { border-style: solid; border-color: $get(border_color); } @media screen{ #contents { border-bottom-width: 1px; } } ol#posts { list-style: none outside none; margin: 0; padding: 0; } li.post{ list-style: none outside none; /* margin-bottom: 1em; */ } ol#posts .more-link{ text-decoration: none; font-size: 80%; color: #558caa; } .post-content p{ margin: 0.1em 0.1em 1em; } .post-title a{ color: $get(canvas_text); text-decoration: none; } .post-title a:hover { color: $mix(highlight, canvas_text, 50); text-decoration: none; } .infobar { list-style: none outside none; overflow: auto; font-size: 80%; color: $mix(canvas_back, canvas_text, 50); padding: 0.1em 0 0 0; } .infobar li{ display: block; padding: 0 0.2em; } .infobar a{ text-decoration: none; color: $get(link_text); } .infobar a{ text-decoration: none; color: $get(link_text); } .infobar a:hover{ text-decoration: none; color: $get(highlight); } .infobar .category{ } .infobar .tags{ } .infobar .comments-count{ } li.post{ clear: both; overflow: hidden; } table, th ,td, tr { border: 1px solid $get(border_color); border-collapse: collapse; } th, td { padding: 0.2em; } blockquote{ padding: 0.5em; background: $get(panel_back); color: $get(canvas_text); border: 1px dotted $get(border_color) } /* Shared with comments */ .entry-type { } .entry-date{ } .entry-date:before{ content: "โ—Š " } .entry-author{ } .entry-author:before{ content: "โ€ข " } @media print{ .post li.entry-edit { display: none; } a.comment-edit-link{ display: none; } } div.post { } .post-content { clear: both; overflow: hidden; padding: 0.5em 0 0.5em 0; margin: 0; } /* pagination */ .pagination { font-size: 80%; list-style: none; /*margin: 0.5em 0.1em 0;*/ margin: 0em; padding: 0.5em 0.5em; overflow: auto; /* color: $get(canvas_text);*/ /* background: $get(border);*/ /* border-radius: 3px 3px 0 0; */ background: $mix(header_back, canvas_back, 70); } .pagination a{ color: $get(header_text); } .pagination a:hover{ color: $get(highlight); } @media print{ #pagination { display: none; } } #pagination a{ text-decoration: none; } .previous-posts { } .next-posts { } .page-numbers { list-style: none; margin: 0.5em 0.1em 0; padding: 0.1em 0.5em; overflow: auto; color: $get(canvas_text); background: $get(border_color); } .page-numbers a{ color: $get(link_text); background: $change(header_back, -20); } .page-numbers a:hover{ color: $get(highlight); } .page-number{ display: inline; padding: 0 0.2em; } #nav{ /* border-top: 1px solid $mix(header_back, canvas_back);*/ border-radius: 3px 3px 0 0; background: $get(nav_back); color: $get(header_text); } #nav-page, #nav-subpage { list-style: none; padding: 0; margin: 0; clear: both; } #nav-subpage { font-size: 80%; clear: both; } #nav-page ul, #nav-subpage ul { } #nav-page li, #nav-subpage ui { padding: 0.1em 0.4em; margin: 0.1em } #nav-page li{ display: block; margin: 0.1em 0.5em; } #nav-subpage li { display: inline; margin: 0.1em 0.5em; padding: 0.2em; } #nav a{ color: $get(header_text); } #nav a:hover{ color: $get(header_text); border-color: #f00; } #nav a:hover{ color: $get(header_text); } #nav .current_page_item{ border-radius: 3px; box-shadow: 0 0 0.4em 0 $mix(header_text, highlight); color: $get(header_back); background: $get(header_text); } #nav .current_page_parent{ border-radius: 2px; box-shadow: 0 0 0.4em 0 $mix(header_text, highlight); background: $get(header_text); } #nav .current_page_item a { text-decoration: none; color: $get(header_back); } #nav .current_page_parent a { text-decoration: none; color: $get(header_back); } .widget_tag_cloud a { } .comments-area{ } #comments h2{ font-size: 100%; } .comment-form-comment label{ vertical-align: top; } .comment-list { list-style: none outside none; padding: 0.5em 0 0 0; } .comment-body { border-bottom: 1px solid $get(border_color); margin: 0.5em; padding-bottom: 0.5em; } .children{ } .comment{ background: $get(panel_back); color: $get(canvas_text); padding: 0; overflow: auto; } .comment p { padding: 0; margin: 0.5em; } .avatar{ padding: 0.2em; display: Block; } input[type=text]{ border: 1px solid $get(border_color); padding: 0.2em; margin: 0; border-radius: 3px; color: $get(canvas_text); background: $get(box_back); } input[type=submit]{ padding: 0.2em; margin: 0; font: $get(font_size)pt $get(font_name); border-radius: 3px; border: 1px solid $mix(canvas_back, header_back); color: $get(canvas_text); background: $get(box_back); } textarea#comment { width: 95%; font-size: 100%; padding: 0.2em; border-radius: 3px; border: 1px solid $mix(canvas_back, header_back, 50); color: $get(canvas_text); background: $get(box_back); } #reply-title{ font-size: 100%; } @media print{ #reply-title{ display: none; } } @media print{ #commentform { display: none; } } /* sidebar */ #sidebar { color: $get(canvas_text); } #sidebar a{ /* color: $mix(highlight, canvas_text, 0); */ color: $get(canvas_text); text-decoration: none; } #sidebar a:hover{ color: $get(highlight); text-decoration: none; } #sidebar > ul { padding: 0em 1em; list-style-type: none; } #sidebar li{ } #sidebar > ul > li { text-shadow: 2px 2px 2px #d7d7d7; padding-bottom: 1em; margin-bottom: 1em; list-style-type: none; border-bottom: 1px solid $get(border_color); /* Will override in other css */ text-shadow: 2px 2px 2px $get(border_color); } #sidebar > ul > li > ul { text-shadow: none; color: $get(link_text); text-decoration: none; } /* sub pages less padding */ #sidebar > ul > li > ul > li > ul { font-size: 80%; } .widget#sidebar li{ color: $change(header_back, -20); } #footbar { background: #000; color: $get(canvas_back); /* border-top: 3px solid $get(header_back); */ } #footbar a{ color: $get(canvas_back); text-decoration: none; } #footbar > ul { list-style-type: none; margin: 0; } #footbar > ul >li { list-style-type: none; padding: 0.5em; } /*------------------------*/ #footer { } #calendar_wrap th, #calendar_wrap td{ text-align: center; } #copyright { text-align: left; /* Do not change it */ padding: 0 0.3em; margin: 0 1em; width: auto; height: auto; color: $mix(canvas_back, header_back, 40); font-size: 80%; } #copyright a{ } @media print{ #pagination, #footer-info { display: none; } } @media print { .pagebreak { page-break-inside: avoid; /* wrong when print one select post */ page-break-after: auto; } } /* drawer */ .drawer-opened { background: $change(panel_back); color: $get(canvas_text); border-color: $get(canvas_text); } .drawer-closed { border-color: $get(header_text); } #drawer { /* content: "โ‰ก"; */ display: block; width: 1.6em; height: auto; margin: 0.0em; float: left; } /* * ref: http://css-tricks.com/three-line-menu-navicon/ in comments */ #drawer-button { display: block; height: 0.26em; line-height: 0; width: auto; border-top: .74em double; border-bottom: .24em solid; margin: 0.2em; padding: 0em; } /* Text meant only for screen readers. */ .screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */ } .screen-reader-text:focus { background-color: #eee; clip: auto !important; clip-path: none; color: #444; display: block; font-size: 1em; height: auto; left: 5px; line-height: normal; padding: 15px 23px 14px; text-decoration: none; top: 5px; width: auto; z-index: 100000; /* Above WP toolbar. */ } /** WordPress */ .wp-caption { max-width: 100%; padding: 0.1em; margin: 0.5em; background: $get(panel_back); color: $get(canvas_text); border: 1px dotted $get(border_color); text-align: center; } .wp-caption img{ margin: 0.5em 0em; } .wp-caption-text{ color: $get(canvas_text); } table#wp-calendar { width: 100%; }
css/style.css
$< header_text=$opposite(header_back) canvas_text=$opposite(canvas_back) body_text=$opposite(body_back) panel_back=$mix(canvas_back, header_back, 85) border_color=$mix(canvas_back, header_back, 50) /* Panels border color */ nav_back=$mix(header_back, canvas_back, 70) box_back=$get(panel_back) /* Controls like EditBox, Code Box or Quote */ /* deprecated */ link_text=$mix(canvas_text, highlight, 50) > /* ref: http://codex.wordpress.org/CSS */ html { } body { font: $get(font_size)pt $get(font_name); background: $get(body_back); color: $get(body_text); } h1{ font-size: 160%; } h2{ font-size: 150%; } h3{ font-size: 130%; } h4{ font-size: 120%; } h5{ font-size: 110%; } h6{ font-size: 100%; } .title { /* in sidebar */ font-size: 120%; } /* H1 of head/title not same size of h1 of post content*/ #header h1 { font-size: 220%; font-weight: bold; } #header h2 { font-size: 200%; } #header h3 { font-size: 180%; } .post-title h1{ /* should be .post-title h1*/ font-size: 300%; } a{ text-decoration: none; color: $get(link_text); } a:hover{ text-decoration: none; color: $get(highlight); } caption, th, td { font-weight: normal; } .post-content img{ height: auto; max-width: 100%; margin: 0.5em; } img.aligncenter{ margin: 0.5em 0em; } .sticky{ } .gallery-caption{ color: $get(canvas_text); } .bypostauthor{ /* display: inline-block;*/ } .aligncenter, div.aligncenter { display: block; margin-left: auto; margin-right: auto; } .skip { display: none; } pre { padding: 0.5em; margin: 0em; overflow: auto; background: $get(box_back); color: $get(canvas_text); border: 1px dotted $get(border_color) } code{ padding: 0.1em; margin: 0em; } pre, code{ font-family: monospace, serif; font-size: 11pt; border-radius: 0.2em; } embed, iframe, object { max-width: 100%; max-height: 100%; } /*----------------*/ #container { background: $get(panel_back); color: $get(canvas_text); } #header { background: $get(header_back); $if(gradients)< background: linear-gradient(to bottom, $change(header_back, 20) 15%, $change(header_back, 20) 10%, $change(header_back) 70%); > text-decoration: none; } #logo-header{ } #title{ } #logo-image{ } #logo-text { } @media screen { #header h1{ /* text-outline: 2px 2px #ff0000; not supported yet by any browser */ text-shadow: 0.1em 0.1em 0.1em $change(header_back, -20); } } $ifnot(is_mobile)< @media screen{ #container { box-shadow: 0.3em 0.3em 0.3em #999; border-radius: 0px 0px 5px 5px; margin-bottom: 1em; } #header { box-shadow: 0em 0.2em 0.5em 0.0em $mix(header_back, canvas_back); } } > #description{ color: $get(header_text); margin: 0.5em 0em; } #header a{ text-decoration: none; color: $get(header_text); } #wrapper { } /** mainbar content */ #mainbar { /*do not put padding or margin or border width */ background: $get(canvas_back); width: 100%; } #mainbar .post-title { padding: 0.2em 0; margin: 0.2em 0 0 0; } hr { color: $change(border_color); border-style: dotted; border-width: 0px 0px 1px 0px; margin: 0em; padding: 0em; } @media screen{ #mainbar .post-title { border-bottom: 1px solid $get(border_color); } .post{ border-bottom: 0.2em solid $change(panel_back, -15); /* box-shadow: 0em 0.5em 0.5em -0.5em red;*/ /* margin-bottom: 0.5em; */ } .post-rest{ border-top: 0.3em solid $change(body_back); padding-top: 2em; } } @media print{ #mainbar .post-title { border-bottom: 1px solid #333; } } #contents { border-style: solid; border-color: $get(border_color); } @media screen{ #contents { border-bottom-width: 1px; } } ol#posts { list-style: none outside none; margin: 0; padding: 0; } li.post{ list-style: none outside none; /* margin-bottom: 1em; */ } ol#posts .more-link{ text-decoration: none; font-size: 80%; color: #558caa; } .post-content p{ margin: 0.1em 0.1em 1em; } .post-title a{ color: $get(canvas_text); text-decoration: none; } .post-title a:hover { color: $mix(highlight, canvas_text, 50); text-decoration: none; } .infobar { list-style: none outside none; overflow: auto; font-size: 80%; color: $mix(canvas_back, canvas_text, 50); padding: 0.1em 0 0 0; } .infobar li{ display: block; padding: 0 0.2em; } .infobar a{ text-decoration: none; color: $get(link_text); } .infobar a{ text-decoration: none; color: $get(link_text); } .infobar a:hover{ text-decoration: none; color: $get(highlight); } .infobar .category{ } .infobar .tags{ } .infobar .comments-count{ } li.post{ clear: both; overflow: hidden; } table, th ,td, tr { border: 1px solid $get(border_color); border-collapse: collapse; } th, td { padding: 0.2em; } blockquote{ padding: 0.5em; background: $get(panel_back); color: $get(canvas_text); border: 1px dotted $get(border_color) } /* Shared with comments */ .entry-type { } .entry-date{ } .entry-date:before{ content: "โ—Š " } .entry-author{ } .entry-author:before{ content: "โ€ข " } @media print{ .post li.entry-edit { display: none; } a.comment-edit-link{ display: none; } } div.post { } .post-content { clear: both; overflow: hidden; padding: 0.5em 0 0.5em 0; margin: 0; } /* pagination */ .pagination { font-size: 80%; list-style: none; /*margin: 0.5em 0.1em 0;*/ margin: 0em; padding: 0.5em 0.5em; overflow: auto; /* color: $get(canvas_text);*/ /* background: $get(border);*/ /* border-radius: 3px 3px 0 0; */ background: $mix(header_back, canvas_back, 70); } .pagination a{ color: $get(header_text); } .pagination a:hover{ color: $get(highlight); } @media print{ #pagination { display: none; } } #pagination a{ text-decoration: none; } .previous-posts { } .next-posts { } .page-numbers { list-style: none; margin: 0.5em 0.1em 0; padding: 0.1em 0.5em; overflow: auto; color: $get(canvas_text); background: $get(border_color); } .page-numbers a{ color: $get(link_text); background: $change(header_back, -20); } .page-numbers a:hover{ color: $get(highlight); } .page-number{ display: inline; padding: 0 0.2em; } #nav{ /* border-top: 1px solid $mix(header_back, canvas_back);*/ border-radius: 3px 3px 0 0; background: $get(nav_back); color: $get(header_text); } #nav-page, #nav-subpage { list-style: none; padding: 0; margin: 0; clear: both; } #nav-subpage { font-size: 80%; clear: both; } #nav-page ul, #nav-subpage ul { } #nav-page li, #nav-subpage ui { padding: 0.1em 0.4em; margin: 0.1em } #nav-page li{ display: block; margin: 0.1em 0.5em; } #nav-subpage li { display: inline; margin: 0.1em 0.5em; padding: 0.2em; } #nav a{ color: $get(header_text); } #nav a:hover{ color: $get(header_text); border-color: #f00; } #nav a:hover{ color: $get(header_text); } #nav .current_page_item{ border-radius: 3px; box-shadow: 0 0 0.4em 0 $mix(header_text, highlight); color: $get(header_back); background: $get(header_text); } #nav .current_page_parent{ border-radius: 2px; box-shadow: 0 0 0.4em 0 $mix(header_text, highlight); background: $get(header_text); } #nav .current_page_item a { text-decoration: none; color: $get(header_back); } #nav .current_page_parent a { text-decoration: none; color: $get(header_back); } .widget_tag_cloud a { } .comments-area{ } #comments h2{ font-size: 100%; } .comment-form-comment label{ vertical-align: top; } .comment-list { list-style: none outside none; padding: 0.5em 0 0 0; } .comment-body { border-bottom: 1px solid $get(border_color); margin: 0.5em; padding-bottom: 0.5em; } .children{ } .comment{ background: $get(panel_back); color: $get(canvas_text); padding: 0; overflow: auto; } .comment p { padding: 0; margin: 0.5em; } .avatar{ padding: 0.2em; display: Block; } input[type=text]{ border: 1px solid $get(border_color); padding: 0.2em; margin: 0; border-radius: 3px; color: $get(canvas_text); background: $get(box_back); } input[type=submit]{ padding: 0.2em; margin: 0; font: $get(font_size)pt $get(font_name); border-radius: 3px; border: 1px solid $mix(canvas_back, header_back); color: $get(canvas_text); background: $get(box_back); } textarea#comment { width: 95%; font-size: 100%; padding: 0.2em; border-radius: 3px; border: 1px solid $mix(canvas_back, header_back, 50); color: $get(canvas_text); background: $get(box_back); } #reply-title{ font-size: 100%; } @media print{ #reply-title{ display: none; } } @media print{ #commentform { display: none; } } /* sidebar */ #sidebar { color: $get(canvas_text); } #sidebar a{ /* color: $mix(highlight, canvas_text, 0); */ color: $get(canvas_text); text-decoration: none; } #sidebar a:hover{ color: $get(highlight); text-decoration: none; } #sidebar > ul { padding: 0em 1em; list-style-type: none; } #sidebar li{ } #sidebar > ul > li { text-shadow: 2px 2px 2px #d7d7d7; padding-bottom: 1em; margin-bottom: 1em; list-style-type: none; border-bottom: 1px solid $get(border_color); /* Will override in other css */ text-shadow: 2px 2px 2px $get(border_color); } #sidebar > ul > li > ul { text-shadow: none; color: $get(link_text); text-decoration: none; } /* sub pages less padding */ #sidebar > ul > li > ul > li > ul { font-size: 80%; } .widget#sidebar li{ color: $change(header_back, -20); } #footbar { background: #000; color: $get(canvas_back); /* border-top: 3px solid $get(header_back); */ } #footbar a{ color: $get(canvas_back); text-decoration: none; } #footbar > ul { list-style-type: none; margin: 0; } #footbar > ul >li { list-style-type: none; padding: 0.5em; } /*------------------------*/ #footer { } #calendar_wrap th, #calendar_wrap td{ text-align: center; } #copyright { text-align: left; /* Do not change it */ padding: 0 0.3em; margin: 0 1em; width: auto; height: auto; color: $mix(canvas_back, header_back, 40); font-size: 80%; } #copyright a{ } @media print{ #pagination, #footer-info { display: none; } } @media print { .pagebreak { page-break-inside: avoid; /* wrong when print one select post */ page-break-after: auto; } } /* drawer */ .drawer-opened { background: $change(panel_back); color: $get(canvas_text); border-color: $get(canvas_text); } .drawer-closed { border-color: $get(header_text); } #drawer { /* content: "โ‰ก"; */ display: block; width: 1.6em; height: auto; margin: 0.0em; float: left; } /* * ref: http://css-tricks.com/three-line-menu-navicon/ in comments */ #drawer-button { display: block; height: 0.26em; line-height: 0; width: auto; border-top: .74em double; border-bottom: .24em solid; margin: 0.2em; padding: 0em; } /* Text meant only for screen readers. */ .screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */ } .screen-reader-text:focus { background-color: #eee; clip: auto !important; clip-path: none; color: #444; display: block; font-size: 1em; height: auto; left: 5px; line-height: normal; padding: 15px 23px 14px; text-decoration: none; top: 5px; width: auto; z-index: 100000; /* Above WP toolbar. */ } /** WordPress */ .wp-caption { max-width: 100%; padding: 0.1em; margin: 0.5em; background: $get(panel_back); color: $get(canvas_text); border: 1px dotted $get(border_color); text-align: center; } .wp-caption img{ margin: 0.5em 0em; } .wp-caption-text{ color: $get(canvas_text); } table#wp-calendar { width: 100%; }
0.28897
0.045799
๏ปฟbody { margin:0px; background-image:url('../../images/draft/bg.png'); background-position:left top; background-repeat:repeat; background-attachment:scroll; background-size:79px 79px; position:relative; left:-40px; width:561px; margin-left:auto; margin-right:auto; text-align:left; } #base { position:absolute; z-index:0; } #u0 { position:absolute; left:0px; top:0px; width:0px; height:0px; } #u1_img { position:absolute; left:0px; top:0px; width:270px; height:270px; } #u1 { position:absolute; left:320px; top:120px; width:270px; height:270px; } #u2 { position:absolute; left:2px; top:127px; width:266px; visibility:hidden; word-wrap:break-word; } #u3_div { position:absolute; left:0px; top:0px; width:270px; height:49px; background:inherit; background-color:rgba(0, 0, 0, 0.298039215686275); border:none; border-radius:15px; border-bottom-right-radius:0px; border-bottom-left-radius:0px; -moz-box-shadow:none; -webkit-box-shadow:none; box-shadow:none; font-family:'ๅพฎ่ฝฏ้›…้ป‘ Bold', 'ๅพฎ่ฝฏ้›…้ป‘'; font-weight:700; font-style:normal; font-size:20px; } #u3 { position:absolute; left:320px; top:120px; width:270px; height:49px; font-family:'ๅพฎ่ฝฏ้›…้ป‘ Bold', 'ๅพฎ่ฝฏ้›…้ป‘'; font-weight:700; font-style:normal; font-size:20px; } #u4 { position:absolute; left:2px; top:11px; width:266px; word-wrap:break-word; } #u5 { position:absolute; left:0px; top:0px; width:0px; height:0px; } #u6_img { position:absolute; left:0px; top:0px; width:270px; height:270px; } #u6 { position:absolute; left:40px; top:120px; width:270px; height:270px; } #u7 { position:absolute; left:2px; top:127px; width:266px; visibility:hidden; word-wrap:break-word; } #u8_div { position:absolute; left:0px; top:0px; width:270px; height:49px; background:inherit; background-color:rgba(0, 0, 0, 0.298039215686275); border:none; border-radius:15px; border-bottom-right-radius:0px; border-bottom-left-radius:0px; -moz-box-shadow:none; -webkit-box-shadow:none; box-shadow:none; font-family:'Arial Negreta', 'Arial Normal', 'Arial'; font-weight:700; font-style:normal; font-size:20px; } #u8 { position:absolute; left:40px; top:120px; width:270px; height:49px; font-family:'Arial Negreta', 'Arial Normal', 'Arial'; font-weight:700; font-style:normal; font-size:20px; } #u9 { position:absolute; left:2px; top:12px; width:266px; word-wrap:break-word; } #u10_div { position:absolute; left:0px; top:0px; width:561px; height:35px; background:inherit; background-color:rgba(242, 242, 242, 1); border:none; border-radius:15px; -moz-box-shadow:none; -webkit-box-shadow:none; box-shadow:none; } #u10 { position:absolute; left:40px; top:417px; width:561px; height:35px; } #u11 { position:absolute; left:2px; top:2px; width:557px; word-wrap:break-word; } #u12_div { position:absolute; left:0px; top:0px; width:550px; height:54px; background:inherit; background-color:rgba(54, 169, 206, 1); border:none; border-radius:5px; -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2); -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2); box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2); font-size:20px; color:#FFFFFF; text-align:center; } #u12 { position:absolute; left:40px; top:45px; width:550px; height:54px; font-size:20px; color:#FFFFFF; text-align:center; } #u13 { position:absolute; left:10px; top:10px; width:530px; word-wrap:break-word; } body.a { background-color:rgba(255, 255, 255, 1); background-image:url('../../images/draft/bg.png'); background-position:left top; background-repeat:repeat; background-attachment:scroll; background-size:79px 79px; position:relative; left:-40px; width:270px; margin-left:auto; margin-right:auto; text-align:left; } #u1.a { left:40px; top:414px; } #u1_img.a { } #u2.a { } #u3.a { left:40px; top:414px; } #u3_div.a { position:absolute; left:0px; top:0px; width:270px; height:49px; background:inherit; background-color:rgba(0, 0, 0, 0.298039215686275); border:none; border-radius:15px; border-bottom-right-radius:0px; border-bottom-left-radius:0px; -moz-box-shadow:none; -webkit-box-shadow:none; box-shadow:none; font-family:'ๅพฎ่ฝฏ้›…้ป‘ Bold', 'ๅพฎ่ฝฏ้›…้ป‘'; font-weight:700; font-style:normal; font-size:20px; } #u4.a { } #u6.a { } #u6_img.a { } #u7.a { } #u8.a { } #u8_div.a { position:absolute; left:0px; top:0px; width:270px; height:49px; background:inherit; background-color:rgba(0, 0, 0, 0.298039215686275); border:none; border-radius:15px; border-bottom-right-radius:0px; border-bottom-left-radius:0px; -moz-box-shadow:none; -webkit-box-shadow:none; box-shadow:none; font-family:'Arial Negreta', 'Arial Normal', 'Arial'; font-weight:700; font-style:normal; font-size:20px; } #u9.a { } #u10.a { top:704px; width:270px; height:64px; } #u10_div.a { position:absolute; left:0px; top:0px; width:270px; height:64px; background:inherit; background-color:rgba(242, 242, 242, 1); border:none; border-radius:15px; -moz-box-shadow:none; -webkit-box-shadow:none; box-shadow:none; } #u11.a { top:16px; width:266px; } #u12.a { width:270px; } #u12_div.a { position:absolute; left:0px; top:0px; width:270px; height:54px; background:inherit; background-color:rgba(54, 169, 206, 1); border:none; border-radius:5px; -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2); -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2); box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2); font-size:20px; color:#FFFFFF; text-align:center; } #u13.a { width:250px; }
axure/files/draft/styles.css
๏ปฟbody { margin:0px; background-image:url('../../images/draft/bg.png'); background-position:left top; background-repeat:repeat; background-attachment:scroll; background-size:79px 79px; position:relative; left:-40px; width:561px; margin-left:auto; margin-right:auto; text-align:left; } #base { position:absolute; z-index:0; } #u0 { position:absolute; left:0px; top:0px; width:0px; height:0px; } #u1_img { position:absolute; left:0px; top:0px; width:270px; height:270px; } #u1 { position:absolute; left:320px; top:120px; width:270px; height:270px; } #u2 { position:absolute; left:2px; top:127px; width:266px; visibility:hidden; word-wrap:break-word; } #u3_div { position:absolute; left:0px; top:0px; width:270px; height:49px; background:inherit; background-color:rgba(0, 0, 0, 0.298039215686275); border:none; border-radius:15px; border-bottom-right-radius:0px; border-bottom-left-radius:0px; -moz-box-shadow:none; -webkit-box-shadow:none; box-shadow:none; font-family:'ๅพฎ่ฝฏ้›…้ป‘ Bold', 'ๅพฎ่ฝฏ้›…้ป‘'; font-weight:700; font-style:normal; font-size:20px; } #u3 { position:absolute; left:320px; top:120px; width:270px; height:49px; font-family:'ๅพฎ่ฝฏ้›…้ป‘ Bold', 'ๅพฎ่ฝฏ้›…้ป‘'; font-weight:700; font-style:normal; font-size:20px; } #u4 { position:absolute; left:2px; top:11px; width:266px; word-wrap:break-word; } #u5 { position:absolute; left:0px; top:0px; width:0px; height:0px; } #u6_img { position:absolute; left:0px; top:0px; width:270px; height:270px; } #u6 { position:absolute; left:40px; top:120px; width:270px; height:270px; } #u7 { position:absolute; left:2px; top:127px; width:266px; visibility:hidden; word-wrap:break-word; } #u8_div { position:absolute; left:0px; top:0px; width:270px; height:49px; background:inherit; background-color:rgba(0, 0, 0, 0.298039215686275); border:none; border-radius:15px; border-bottom-right-radius:0px; border-bottom-left-radius:0px; -moz-box-shadow:none; -webkit-box-shadow:none; box-shadow:none; font-family:'Arial Negreta', 'Arial Normal', 'Arial'; font-weight:700; font-style:normal; font-size:20px; } #u8 { position:absolute; left:40px; top:120px; width:270px; height:49px; font-family:'Arial Negreta', 'Arial Normal', 'Arial'; font-weight:700; font-style:normal; font-size:20px; } #u9 { position:absolute; left:2px; top:12px; width:266px; word-wrap:break-word; } #u10_div { position:absolute; left:0px; top:0px; width:561px; height:35px; background:inherit; background-color:rgba(242, 242, 242, 1); border:none; border-radius:15px; -moz-box-shadow:none; -webkit-box-shadow:none; box-shadow:none; } #u10 { position:absolute; left:40px; top:417px; width:561px; height:35px; } #u11 { position:absolute; left:2px; top:2px; width:557px; word-wrap:break-word; } #u12_div { position:absolute; left:0px; top:0px; width:550px; height:54px; background:inherit; background-color:rgba(54, 169, 206, 1); border:none; border-radius:5px; -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2); -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2); box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2); font-size:20px; color:#FFFFFF; text-align:center; } #u12 { position:absolute; left:40px; top:45px; width:550px; height:54px; font-size:20px; color:#FFFFFF; text-align:center; } #u13 { position:absolute; left:10px; top:10px; width:530px; word-wrap:break-word; } body.a { background-color:rgba(255, 255, 255, 1); background-image:url('../../images/draft/bg.png'); background-position:left top; background-repeat:repeat; background-attachment:scroll; background-size:79px 79px; position:relative; left:-40px; width:270px; margin-left:auto; margin-right:auto; text-align:left; } #u1.a { left:40px; top:414px; } #u1_img.a { } #u2.a { } #u3.a { left:40px; top:414px; } #u3_div.a { position:absolute; left:0px; top:0px; width:270px; height:49px; background:inherit; background-color:rgba(0, 0, 0, 0.298039215686275); border:none; border-radius:15px; border-bottom-right-radius:0px; border-bottom-left-radius:0px; -moz-box-shadow:none; -webkit-box-shadow:none; box-shadow:none; font-family:'ๅพฎ่ฝฏ้›…้ป‘ Bold', 'ๅพฎ่ฝฏ้›…้ป‘'; font-weight:700; font-style:normal; font-size:20px; } #u4.a { } #u6.a { } #u6_img.a { } #u7.a { } #u8.a { } #u8_div.a { position:absolute; left:0px; top:0px; width:270px; height:49px; background:inherit; background-color:rgba(0, 0, 0, 0.298039215686275); border:none; border-radius:15px; border-bottom-right-radius:0px; border-bottom-left-radius:0px; -moz-box-shadow:none; -webkit-box-shadow:none; box-shadow:none; font-family:'Arial Negreta', 'Arial Normal', 'Arial'; font-weight:700; font-style:normal; font-size:20px; } #u9.a { } #u10.a { top:704px; width:270px; height:64px; } #u10_div.a { position:absolute; left:0px; top:0px; width:270px; height:64px; background:inherit; background-color:rgba(242, 242, 242, 1); border:none; border-radius:15px; -moz-box-shadow:none; -webkit-box-shadow:none; box-shadow:none; } #u11.a { top:16px; width:266px; } #u12.a { width:270px; } #u12_div.a { position:absolute; left:0px; top:0px; width:270px; height:54px; background:inherit; background-color:rgba(54, 169, 206, 1); border:none; border-radius:5px; -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2); -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2); box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2); font-size:20px; color:#FFFFFF; text-align:center; } #u13.a { width:250px; }
0.316053
0.048294
@import url('https://fonts.googleapis.com/css?family=Ubuntu+Condensed|Ubuntu:300,400,700'); @import url('https://fonts.googleapis.com/css?family=Monoton'); /* ############### MAIN LAYOUT ############### */ * { margin: 0; padding: 0; box-sizing: border-box; border: none; color: #fff; } *:focus { outline: none; } ul { list-style: none; } body { text-align: center; font-family: 'Ubuntu Condensed', Ubuntu, Verdana, Arial, sans-serif; background-color: #333333; } h1 { font-size: 1.2em; font-weight: 300; text-align: left; padding: 0 10px; } .header { z-index: 2; position: fixed; width: 100%; height: 30px; display: flex; align-items: center; } .general { z-index: 2; position: fixed; width: 100%; height: 50px; top: 30px; } .sidebar { z-index: 2; position: fixed; width: 50px; bottom: 40px; top: 80px; } .toolbar { left: 0; } .colorbar { right: 0; } .status { z-index: 2; position: fixed; width: 100%; height: 40px; bottom: 0; } .artboard-wrapper { position: absolute; left: 0; right: 0; top: 0; bottom: 0; border: 50px solid transparent; border-top: 80px solid transparent; border-bottom: 40px solid transparent; z-index: 1; } .artboard { position: relative; width: 100%; height: 100%; top: 0; bottom: 0; left: 0; right: 0; padding: 30px; overflow: hidden; background-color: #1a1a1a; text-align: center; height: 100%; } .equalizer:before { content: ''; display: inline-block; vertical-align: middle; height: 100%; } @media screen and (max-width: 550px) { .general { height: 100px; } .sidebar { top: 130px; } .artboard-wrapper { border-top: 130px solid transparent; } } /* ############### PIXEL CANVAS ############### */ .pixel-canvas { background-color: #fff; vertical-align: middle; display: inline-block; border-collapse: collapse; border: 2px solid #000; } table, tr, td { box-sizing: border-box; } tr { } td { background-color: #fff; } td:hover { box-shadow: inset 0 0 5px 0 rgba(90, 90, 90, 0.75); } .bordered-cells { border: 1px solid #d3d3d3; } /* ############### GENERAL PANEL ############### */ .general-features { position: relative; transition: all 0.5s; padding: 5px 0; text-align: left; } .general-features .tools { display: inline-block; margin: 0 5px; } /* ############### TOOLBAR PANEL ############### */ .toolbar-features { padding: 10px 5px; } .toolbar-features .tools { display: block; margin: 5px 0; } /* ############### TOOLS ############### */ .tools { position: relative; transition: all 0.5s; } .toolButton { padding: 0px; border: none; background: none; color: white; display: block; width: 40px; height: 40px; transition: all 0.5s; } .toolButton img { display: block; margin: 6px; width: 28px; height: 28px; opacity: 0.75; transition: all 0.2s; } .toolButton:enabled:hover img { margin: 4px; width: 32px; height: 32px; opacity: 1; filter: drop-shadow(0px 0px 4px #000); } .toolButton:disabled img { opacity: 0.2; } .toolButton:enabled:active, .active-tool { box-shadow: inset 0px 0px 8px 0px rgba(0, 0, 0, 0.75); background-color: #272727; } .toolButton:enabled:active img, .active-tool img { margin: 8px; width: 24px; height: 24px; opacity: 1; } .toolButton.active-tool:hover img { margin: 8px; width: 24px; height: 24px; filter: none; } .size-picker { display: block; height: 40px; } .input-width, .input-height { display: block; float: left; font: 1.1em 'Ubuntu Condensed'; box-sizing: border-box; margin: 5px 5px; padding: 0 5px; outline: none; border: none; height: 30px; width: 50px; transition: all 0.5s; color: #fff; background-color: #555555; box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.75); } label { box-sizing: border-box; position: relative; padding: 3px 0; margin: 5px 0 5px 5px; float: left; font-weight: 700; font-size: 1.3em; height: 30px; color: #fff; opacity: 0.75; } /* ############### COLORS ############### */ .colorbar-features { padding: 10px 5px; } .colorbar-features .tools{ margin: 5px 0; } .color-picker::-webkit-color-swatch-wrapper, .color-picker::-webkit-color-swatch { padding: 0; border: none; outline: none; } .color-picker::-moz-color-swatch-wrapper, .color-picker::-moz-color-swatch { padding: 0; border: none; outline: none; } .color-picker { width: 30px; height: 30px; margin: 5px; padding: 0px; border: none; outline: none; background-image: none; background: none; } .color-picker:hover { cursor: pointer; } .swatches { padding: 0; width: 40px; margin: 10px 5px; } .swatch { width: 30px; height: 30px; transition: all 0.2s; } .swatch:hover { transform: scale(1.5); cursor: pointer; } .pink { background-color: #ff00ff; } .purple { background-color: #a008c2; } .violet { background-color: #5d0a8a; } .dark-blue { background-color: #19469e; } .blue { background-color: #0c8ef2; } .light-blue { background-color: #66ccf5; } .turquoise { background-color: #06eda4; } .sea-green { background-color: #03c15a; } .dark-green { background-color: #00940f; } .green { background-color: #00c914; } .lime { background-color: #6aff00; } .yellow { background-color: #ffff00; } .gold { background-color: #ffd700; } .orange { background-color: #ff9100; } .dark-orange { background-color: #ff4900; } .red { background-color: #ff0000; } .brown { background-color: #85501f; } .black { background-color: #000000; } .gray { background-color: #808080; } .white { background-color: #ffffff; } /* ############### CURSORS ############### */ .brush-cursor { cursor: url('../img/cursors/brush_cursor.png') 0 30, default; } .eyedropper-cursor { cursor: url('../img/cursors/eyedropper_cursor.png') 0 30, default; } .erase-cursor { cursor: url('../img/cursors/erase_cursor.png') 0 30, default; } .fill-cursor { cursor: url('../img/cursors/fill_cursor.png') 0 25, default; } .line-cursor { cursor: url('../img/cursors/line_cursor.png') 10 10, default; } .circle-cursor { cursor: url('../img/cursors/circle_cursor.png') 10 10, default; } .rectangle-cursor { cursor: url('../img/cursors/rectangle_cursor.png') 10 10, default; } /* ############### STATUSBAR PANEL ############### */ .status-features { position: relative; width: 100%; height: 40px; box-sizing: border-box; padding: 10px 0; text-align: left; } .status-info { float: left; box-sizing: border-box; color: #fff; margin: 0; padding: 0 15px; border-right: 1px solid rgb(140, 140, 140); } .status .status-info:last-child { border: none; } .status-info > div { display: inline-block; } .status-label { text-transform: uppercase; margin-right: 5px; } .markers { display: inline-block; } .markers li { display: inline-block; margin-right: 10px; } .markers li:last-child { margin-right: 0; } .status-color-box { box-sizing: border-box; display: block; float: left; width: 20px; height: 20px; margin-right: 5px; } .bg-color { background-color: #ffffff; } .bd-color { background-color: #d3d3d3; } .tl-color { background-color: #000000; } @media screen and (max-width: 930px) { .course { display: none; } } @media screen and (max-width: 720px) { .author { display: none; } .colors { border: none; } } @media screen and (max-width: 520px) { .colors .status-label { display: none; } } @media screen and (max-width: 480px) { .markers li span:last-child { display: none; } } @media screen and (max-width: 300px) { .colors { display: none; } .position { border: none; } } .status-link, .status-link:visited { color: #fff; } /* ############### HEPLPERS ############### */ .save-link { display: none; } .forPrint { display: none; } /* ############### HELP STYLES ############### */ .helpModal { position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: 10; background-color: rgba(0, 0, 0, 0.65); display: flex; flex-direction: column; justify-content: center; align-items: center; transition: all 0.3s; transform: scale(0); } .helpContent { position: relative; width: 60%; max-width: 800px; background-color: #fff; border-radius: 5px; padding: 2%; text-align: left; overflow: auto; box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.85); } .helpHeader { color: #000; margin-bottom: 2%; text-align: center; } .toolList { display: flex; flex-direction: row; flex-wrap: wrap; } .toolInstruction { width: 100%; display: flex; margin-bottom: 10px; } @media screen and (min-width: 761px) { .toolInstruction { width: 50%; } } @media screen and (min-width: 1141px) { .toolInstruction { width: 33.33%; } } .toolImage { display: inline-block; padding: 6px; width: 40px; height: 40px; margin-right: 10px; background-color: #333; } .toolImage img { display: block; width: 28px; height: 28px; opacity: 0.75; margin-right: 10px; } .cell-sizer-help { padding: 0; } .cell-sizer-help img { width: 40px; height: 40px; opacity: 1; } .toolDescription { font-size: 1.2em; color: #000; align-self: center; } .closeModal { position: absolute; font-size: 1.5em; padding: 0.5em; background-color: #fff; top: 0; right: 0; } .closeModal:hover .closeIcon { transform: scale(1.2); } .closeIcon { transition: all 0.2s; color: #000; } .showModal { transform: scale(1); } /* ############### PRINT STYLES ############### */ @media print { @page { margin: 0; } .header, .general, .artboard, .toolbar, .colorbar, .status, .helpModal { display: none; } .forPrint { display: block; } .forPrint img { display: block; max-width: 90%; margin: 1cm auto; } } /* ############### INPUT RANGE STYLES ############### */ .cell-sizer { height: 40px; -webkit-appearance: none; width: 100%; background-color: #333; } .cell-sizer:focus { outline: none; } .cell-sizer::-webkit-slider-runnable-track { width: 100%; height: 10px; cursor: pointer; animate: 0.2s; box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.75); background: #555; border-radius: 30px; } .cell-sizer::-webkit-slider-thumb { box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.75); height: 16px; width: 8px; border-radius: 5px; cursor: pointer; -webkit-appearance: none; margin-top: -3px; background: linear-gradient(to bottom, rgba(204,204,204,1) 0%, rgba(204,204,204,1) 25%, rgba(170,170,170,1) 75%, rgba(170,170,170,1) 100%); } .cell-sizer:hover::-webkit-slider-thumb { transform: scale(1.2); background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 25%, rgba(204,204,204,1) 75%, rgba(204,204,204,1) 100%); } .cell-sizer:focus::-webkit-slider-runnable-track { background-color: #555; } .cell-sizer::-moz-range-track { width: 100%; height: 10px; cursor: pointer; animate: 0.2s; box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.75); background-color: #555; border-radius: 31px; } .cell-sizer::-moz-range-thumb { box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.75); height: 16px; width: 8px; border-radius: 5px; cursor: pointer; -webkit-appearance: none; margin-top: -3px; background: linear-gradient(to bottom, rgba(204,204,204,1) 0%, rgba(204,204,204,1) 25%, rgba(170,170,170,1) 75%, rgba(170,170,170,1) 100%); } .cell-sizer:hover::-moz-range-thumb { transform: scale(1.2); background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 25%, rgba(204,204,204,1) 75%, rgba(204,204,204,1) 100%); } /* ############### VENDOR OVERWRITTEN STYLES ############### */ .cell-sizer::-ms-track { width: 100%; height: 10px; cursor: pointer; animate: 0.2s; box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.75); background: #555; border:none; border-radius: 31px; } .cell-sizer::-ms-fill-lower { background-color: #555; border: none; border-radius: 62px; box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.75); } .cell-sizer::-ms-fill-upper { background-color: #555; border: none; border-radius: 62px; box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.75); } .cell-sizer::-ms-thumb { box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.75); height: 16px; width: 8px; border-radius: 5px; cursor: pointer; -webkit-appearance: none; margin-top: -3px; background: linear-gradient(to bottom, rgba(204,204,204,1) 0%, rgba(204,204,204,1) 25%, rgba(170,170,170,1) 75%, rgba(170,170,170,1) 100%); } .cell-sizer:hover::-ms-thumb { transform: scale(1.2); background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 25%, rgba(204,204,204,1) 75%, rgba(204,204,204,1) 100%); } .cell-sizer:focus::-ms-fill-lower { background-color: #555; } .cell-sizer:focus::-ms-fill-upper { background-color: #555; } /* ############### VENDOR OVERWRITTEN STYLES ############### */ .mCSB_outside + .mCSB_scrollTools { right: -5px; } .mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal, .mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal { bottom: -5px; } .vertical-aligner { top: 50% !important; transform: translateY(-50%) !important; }
css/styles.css
@import url('https://fonts.googleapis.com/css?family=Ubuntu+Condensed|Ubuntu:300,400,700'); @import url('https://fonts.googleapis.com/css?family=Monoton'); /* ############### MAIN LAYOUT ############### */ * { margin: 0; padding: 0; box-sizing: border-box; border: none; color: #fff; } *:focus { outline: none; } ul { list-style: none; } body { text-align: center; font-family: 'Ubuntu Condensed', Ubuntu, Verdana, Arial, sans-serif; background-color: #333333; } h1 { font-size: 1.2em; font-weight: 300; text-align: left; padding: 0 10px; } .header { z-index: 2; position: fixed; width: 100%; height: 30px; display: flex; align-items: center; } .general { z-index: 2; position: fixed; width: 100%; height: 50px; top: 30px; } .sidebar { z-index: 2; position: fixed; width: 50px; bottom: 40px; top: 80px; } .toolbar { left: 0; } .colorbar { right: 0; } .status { z-index: 2; position: fixed; width: 100%; height: 40px; bottom: 0; } .artboard-wrapper { position: absolute; left: 0; right: 0; top: 0; bottom: 0; border: 50px solid transparent; border-top: 80px solid transparent; border-bottom: 40px solid transparent; z-index: 1; } .artboard { position: relative; width: 100%; height: 100%; top: 0; bottom: 0; left: 0; right: 0; padding: 30px; overflow: hidden; background-color: #1a1a1a; text-align: center; height: 100%; } .equalizer:before { content: ''; display: inline-block; vertical-align: middle; height: 100%; } @media screen and (max-width: 550px) { .general { height: 100px; } .sidebar { top: 130px; } .artboard-wrapper { border-top: 130px solid transparent; } } /* ############### PIXEL CANVAS ############### */ .pixel-canvas { background-color: #fff; vertical-align: middle; display: inline-block; border-collapse: collapse; border: 2px solid #000; } table, tr, td { box-sizing: border-box; } tr { } td { background-color: #fff; } td:hover { box-shadow: inset 0 0 5px 0 rgba(90, 90, 90, 0.75); } .bordered-cells { border: 1px solid #d3d3d3; } /* ############### GENERAL PANEL ############### */ .general-features { position: relative; transition: all 0.5s; padding: 5px 0; text-align: left; } .general-features .tools { display: inline-block; margin: 0 5px; } /* ############### TOOLBAR PANEL ############### */ .toolbar-features { padding: 10px 5px; } .toolbar-features .tools { display: block; margin: 5px 0; } /* ############### TOOLS ############### */ .tools { position: relative; transition: all 0.5s; } .toolButton { padding: 0px; border: none; background: none; color: white; display: block; width: 40px; height: 40px; transition: all 0.5s; } .toolButton img { display: block; margin: 6px; width: 28px; height: 28px; opacity: 0.75; transition: all 0.2s; } .toolButton:enabled:hover img { margin: 4px; width: 32px; height: 32px; opacity: 1; filter: drop-shadow(0px 0px 4px #000); } .toolButton:disabled img { opacity: 0.2; } .toolButton:enabled:active, .active-tool { box-shadow: inset 0px 0px 8px 0px rgba(0, 0, 0, 0.75); background-color: #272727; } .toolButton:enabled:active img, .active-tool img { margin: 8px; width: 24px; height: 24px; opacity: 1; } .toolButton.active-tool:hover img { margin: 8px; width: 24px; height: 24px; filter: none; } .size-picker { display: block; height: 40px; } .input-width, .input-height { display: block; float: left; font: 1.1em 'Ubuntu Condensed'; box-sizing: border-box; margin: 5px 5px; padding: 0 5px; outline: none; border: none; height: 30px; width: 50px; transition: all 0.5s; color: #fff; background-color: #555555; box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.75); } label { box-sizing: border-box; position: relative; padding: 3px 0; margin: 5px 0 5px 5px; float: left; font-weight: 700; font-size: 1.3em; height: 30px; color: #fff; opacity: 0.75; } /* ############### COLORS ############### */ .colorbar-features { padding: 10px 5px; } .colorbar-features .tools{ margin: 5px 0; } .color-picker::-webkit-color-swatch-wrapper, .color-picker::-webkit-color-swatch { padding: 0; border: none; outline: none; } .color-picker::-moz-color-swatch-wrapper, .color-picker::-moz-color-swatch { padding: 0; border: none; outline: none; } .color-picker { width: 30px; height: 30px; margin: 5px; padding: 0px; border: none; outline: none; background-image: none; background: none; } .color-picker:hover { cursor: pointer; } .swatches { padding: 0; width: 40px; margin: 10px 5px; } .swatch { width: 30px; height: 30px; transition: all 0.2s; } .swatch:hover { transform: scale(1.5); cursor: pointer; } .pink { background-color: #ff00ff; } .purple { background-color: #a008c2; } .violet { background-color: #5d0a8a; } .dark-blue { background-color: #19469e; } .blue { background-color: #0c8ef2; } .light-blue { background-color: #66ccf5; } .turquoise { background-color: #06eda4; } .sea-green { background-color: #03c15a; } .dark-green { background-color: #00940f; } .green { background-color: #00c914; } .lime { background-color: #6aff00; } .yellow { background-color: #ffff00; } .gold { background-color: #ffd700; } .orange { background-color: #ff9100; } .dark-orange { background-color: #ff4900; } .red { background-color: #ff0000; } .brown { background-color: #85501f; } .black { background-color: #000000; } .gray { background-color: #808080; } .white { background-color: #ffffff; } /* ############### CURSORS ############### */ .brush-cursor { cursor: url('../img/cursors/brush_cursor.png') 0 30, default; } .eyedropper-cursor { cursor: url('../img/cursors/eyedropper_cursor.png') 0 30, default; } .erase-cursor { cursor: url('../img/cursors/erase_cursor.png') 0 30, default; } .fill-cursor { cursor: url('../img/cursors/fill_cursor.png') 0 25, default; } .line-cursor { cursor: url('../img/cursors/line_cursor.png') 10 10, default; } .circle-cursor { cursor: url('../img/cursors/circle_cursor.png') 10 10, default; } .rectangle-cursor { cursor: url('../img/cursors/rectangle_cursor.png') 10 10, default; } /* ############### STATUSBAR PANEL ############### */ .status-features { position: relative; width: 100%; height: 40px; box-sizing: border-box; padding: 10px 0; text-align: left; } .status-info { float: left; box-sizing: border-box; color: #fff; margin: 0; padding: 0 15px; border-right: 1px solid rgb(140, 140, 140); } .status .status-info:last-child { border: none; } .status-info > div { display: inline-block; } .status-label { text-transform: uppercase; margin-right: 5px; } .markers { display: inline-block; } .markers li { display: inline-block; margin-right: 10px; } .markers li:last-child { margin-right: 0; } .status-color-box { box-sizing: border-box; display: block; float: left; width: 20px; height: 20px; margin-right: 5px; } .bg-color { background-color: #ffffff; } .bd-color { background-color: #d3d3d3; } .tl-color { background-color: #000000; } @media screen and (max-width: 930px) { .course { display: none; } } @media screen and (max-width: 720px) { .author { display: none; } .colors { border: none; } } @media screen and (max-width: 520px) { .colors .status-label { display: none; } } @media screen and (max-width: 480px) { .markers li span:last-child { display: none; } } @media screen and (max-width: 300px) { .colors { display: none; } .position { border: none; } } .status-link, .status-link:visited { color: #fff; } /* ############### HEPLPERS ############### */ .save-link { display: none; } .forPrint { display: none; } /* ############### HELP STYLES ############### */ .helpModal { position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: 10; background-color: rgba(0, 0, 0, 0.65); display: flex; flex-direction: column; justify-content: center; align-items: center; transition: all 0.3s; transform: scale(0); } .helpContent { position: relative; width: 60%; max-width: 800px; background-color: #fff; border-radius: 5px; padding: 2%; text-align: left; overflow: auto; box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.85); } .helpHeader { color: #000; margin-bottom: 2%; text-align: center; } .toolList { display: flex; flex-direction: row; flex-wrap: wrap; } .toolInstruction { width: 100%; display: flex; margin-bottom: 10px; } @media screen and (min-width: 761px) { .toolInstruction { width: 50%; } } @media screen and (min-width: 1141px) { .toolInstruction { width: 33.33%; } } .toolImage { display: inline-block; padding: 6px; width: 40px; height: 40px; margin-right: 10px; background-color: #333; } .toolImage img { display: block; width: 28px; height: 28px; opacity: 0.75; margin-right: 10px; } .cell-sizer-help { padding: 0; } .cell-sizer-help img { width: 40px; height: 40px; opacity: 1; } .toolDescription { font-size: 1.2em; color: #000; align-self: center; } .closeModal { position: absolute; font-size: 1.5em; padding: 0.5em; background-color: #fff; top: 0; right: 0; } .closeModal:hover .closeIcon { transform: scale(1.2); } .closeIcon { transition: all 0.2s; color: #000; } .showModal { transform: scale(1); } /* ############### PRINT STYLES ############### */ @media print { @page { margin: 0; } .header, .general, .artboard, .toolbar, .colorbar, .status, .helpModal { display: none; } .forPrint { display: block; } .forPrint img { display: block; max-width: 90%; margin: 1cm auto; } } /* ############### INPUT RANGE STYLES ############### */ .cell-sizer { height: 40px; -webkit-appearance: none; width: 100%; background-color: #333; } .cell-sizer:focus { outline: none; } .cell-sizer::-webkit-slider-runnable-track { width: 100%; height: 10px; cursor: pointer; animate: 0.2s; box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.75); background: #555; border-radius: 30px; } .cell-sizer::-webkit-slider-thumb { box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.75); height: 16px; width: 8px; border-radius: 5px; cursor: pointer; -webkit-appearance: none; margin-top: -3px; background: linear-gradient(to bottom, rgba(204,204,204,1) 0%, rgba(204,204,204,1) 25%, rgba(170,170,170,1) 75%, rgba(170,170,170,1) 100%); } .cell-sizer:hover::-webkit-slider-thumb { transform: scale(1.2); background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 25%, rgba(204,204,204,1) 75%, rgba(204,204,204,1) 100%); } .cell-sizer:focus::-webkit-slider-runnable-track { background-color: #555; } .cell-sizer::-moz-range-track { width: 100%; height: 10px; cursor: pointer; animate: 0.2s; box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.75); background-color: #555; border-radius: 31px; } .cell-sizer::-moz-range-thumb { box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.75); height: 16px; width: 8px; border-radius: 5px; cursor: pointer; -webkit-appearance: none; margin-top: -3px; background: linear-gradient(to bottom, rgba(204,204,204,1) 0%, rgba(204,204,204,1) 25%, rgba(170,170,170,1) 75%, rgba(170,170,170,1) 100%); } .cell-sizer:hover::-moz-range-thumb { transform: scale(1.2); background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 25%, rgba(204,204,204,1) 75%, rgba(204,204,204,1) 100%); } /* ############### VENDOR OVERWRITTEN STYLES ############### */ .cell-sizer::-ms-track { width: 100%; height: 10px; cursor: pointer; animate: 0.2s; box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.75); background: #555; border:none; border-radius: 31px; } .cell-sizer::-ms-fill-lower { background-color: #555; border: none; border-radius: 62px; box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.75); } .cell-sizer::-ms-fill-upper { background-color: #555; border: none; border-radius: 62px; box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.75); } .cell-sizer::-ms-thumb { box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.75); height: 16px; width: 8px; border-radius: 5px; cursor: pointer; -webkit-appearance: none; margin-top: -3px; background: linear-gradient(to bottom, rgba(204,204,204,1) 0%, rgba(204,204,204,1) 25%, rgba(170,170,170,1) 75%, rgba(170,170,170,1) 100%); } .cell-sizer:hover::-ms-thumb { transform: scale(1.2); background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 25%, rgba(204,204,204,1) 75%, rgba(204,204,204,1) 100%); } .cell-sizer:focus::-ms-fill-lower { background-color: #555; } .cell-sizer:focus::-ms-fill-upper { background-color: #555; } /* ############### VENDOR OVERWRITTEN STYLES ############### */ .mCSB_outside + .mCSB_scrollTools { right: -5px; } .mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal, .mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal { bottom: -5px; } .vertical-aligner { top: 50% !important; transform: translateY(-50%) !important; }
0.31059
0.066206
.calculator-box { display: block; width: 240px; display: flex; flex-direction: column; background-color: #262626; --offset: 20px; padding: var(--offset); } .calculator-box .calculator-display { width: calc(100% + 16px); margin-bottom: 12px; margin-top: -20px; margin-left: -20px; font-size: 30px; padding: 12px; background-color: #202020; display: flex; flex-direction: column; align-items: center; justify-content: space-evenly; } .calculator-box .calculator-display .output-value, .calculator-box .calculator-display .input-value { width: calc(100% - 16px); display: flex; flex-direction: row; align-items: center; overflow: hidden; margin-bottom: 5px; /*background-color: #D4E3E6;*/ color: white; /*border-left: 12px solid #D4E3E6;*/ /*border-right: 12px solid #D4E3E6;*/ font-family: inherit; margin: 0; } .calculator-box .calculator-display .output-value { justify-content: flex-end; border-radius: 0 0 5px 5px; padding-top: 8px; /* padding-bottom: 5px;*/ font-size: 1.25em; } .calculator-box .calculator-display .input-value { border-radius: 5px 5px 0 0; padding-top: 5px; height: 32px; font-size: 0.75em; opacity: 0.5; } .calculator-box .calculator-buttons { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(5, 1fr); row-gap: 8px; column-gap: 8px; width: 100%; height: 280px; outline: none; } .calculator-box .calculator-buttons .calc-button { color: white; font-weight: bold; font-size: 26px; font-family: inherit; border-radius: 6px; background-color: #575A55; border: none; } .calculator-box .calculator-buttons .calc-button:hover { cursor: pointer; } .calculator-box .calculator-buttons .calc-button:focus { outline: none; } .calculator-box .calculator-buttons .calc-button:active { background-color: #4A4D48; border: 2px solid #454743; } .calculator-box .calculator-buttons .calc-button-equal { grid-column: span 2; } .calculator-box .calculator-buttons .calc-button-c { background-color: #9E3C4B; border-color: #993A48; } .calculator-box .calculator-buttons .calc-button-c:active { background-color: #8F3644; border-color: #8A3441; } .calculator-box .calculator-buttons .calc-button-del { background-color: #829F3C; border-color: #7D993A; } .calculator-box .calculator-buttons .calc-button-del:active { background-color: #789438; border-color: #748F36; }
client/src/components/Calculator.css
.calculator-box { display: block; width: 240px; display: flex; flex-direction: column; background-color: #262626; --offset: 20px; padding: var(--offset); } .calculator-box .calculator-display { width: calc(100% + 16px); margin-bottom: 12px; margin-top: -20px; margin-left: -20px; font-size: 30px; padding: 12px; background-color: #202020; display: flex; flex-direction: column; align-items: center; justify-content: space-evenly; } .calculator-box .calculator-display .output-value, .calculator-box .calculator-display .input-value { width: calc(100% - 16px); display: flex; flex-direction: row; align-items: center; overflow: hidden; margin-bottom: 5px; /*background-color: #D4E3E6;*/ color: white; /*border-left: 12px solid #D4E3E6;*/ /*border-right: 12px solid #D4E3E6;*/ font-family: inherit; margin: 0; } .calculator-box .calculator-display .output-value { justify-content: flex-end; border-radius: 0 0 5px 5px; padding-top: 8px; /* padding-bottom: 5px;*/ font-size: 1.25em; } .calculator-box .calculator-display .input-value { border-radius: 5px 5px 0 0; padding-top: 5px; height: 32px; font-size: 0.75em; opacity: 0.5; } .calculator-box .calculator-buttons { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(5, 1fr); row-gap: 8px; column-gap: 8px; width: 100%; height: 280px; outline: none; } .calculator-box .calculator-buttons .calc-button { color: white; font-weight: bold; font-size: 26px; font-family: inherit; border-radius: 6px; background-color: #575A55; border: none; } .calculator-box .calculator-buttons .calc-button:hover { cursor: pointer; } .calculator-box .calculator-buttons .calc-button:focus { outline: none; } .calculator-box .calculator-buttons .calc-button:active { background-color: #4A4D48; border: 2px solid #454743; } .calculator-box .calculator-buttons .calc-button-equal { grid-column: span 2; } .calculator-box .calculator-buttons .calc-button-c { background-color: #9E3C4B; border-color: #993A48; } .calculator-box .calculator-buttons .calc-button-c:active { background-color: #8F3644; border-color: #8A3441; } .calculator-box .calculator-buttons .calc-button-del { background-color: #829F3C; border-color: #7D993A; } .calculator-box .calculator-buttons .calc-button-del:active { background-color: #789438; border-color: #748F36; }
0.574037
0.224714
@font-face { font-family: 'sequilight'; src: url('sequi_light-webfont.eot'); src: url('sequi_light-webfont.eot?#iefix') format('embedded-opentype'), url('sequi_light-webfont.woff') format('woff'), url('sequi_light-webfont.ttf') format('truetype'), url('sequi_light-webfont.svg#sequilight') format('svg'); font-weight: normal; font-style: normal; } h1 { font-family: 'sequilight', Arial, serif; font-size: 71px; line-height: 65px; text-align: center; } h2 { font-family: 'Roboto', Arial, serif; font-weight: 100; font-size: 35px; color: #28c2aa; text-align: center; } h3 { font-family: 'Roboto', Arial, serif; font-weight: 500; font-size: 80px; text-align: center; text-transform: uppercase; } h4 { font-family:'Roboto', Arial, serif; font-weight: 100; font-size: 20px; text-align: center; } h5 { font-family: 'Roboto', Arial, serif; font-weight: 400; font-size: 14px; text-align: center; line-height: 23px; } /*------ HEADER ------------------------*/ section#line { width: 100%; height: 4px; background-color: #0affd7; background-position: center top; margin: 0 auto 80px auto; display: block; } Header#home { position: relative; width: 978px; margin: auto; } Section#logo h1 span { font-size: 78px; letter-spacing: 6px; } header#home img { margin-top: 80px; position: absolute; } header#home h1,h2 { text-align: center; } header#home h1 { margin: 80px auto 5px auto; letter-spacing: 4px; } /*header > about*/ Section#about { width: 30%; height: 240px; margin-top: 5px; float: right; } Section#about h4 { margin-bottom: 5px; text-align: left; color: #28c2aa; font-size: 21px; } Section#about h5 { text-align: left; line-height: 17px; color: #2f2f2f; } Section#about h5 span { font-style: italic; color: #fff; } section#about address{ height: 120px; } /*header > about > email */ section#about address div.email a { text-decoration: none; text-align: left; } section#about address div.email { margin-top: 10px; height: 33px; } section#about address a div.icon-email { background-image: url(../img/icons-about.jpg); background-position: 33px 0px; width: 33px; height: 33px; overflow: hidden; float: left; margin-right: 10px; } section#about address div.email h5 { width: 100%; height: 33px; padding-top: 7px; -webkit-transition: .5s; -moz-transition: .5s; -o-transition: .5s; transition: .5s; } section#about address a:hover div.icon-email { background-position: 0px 0; } section#about address a:hover h5 { font-size: 15px; } /*header > about > linkedin */ section#about address div.linkedin a { text-decoration: none; text-align: left; } section#about address div.linkedin { margin-top: 10px; height: 33px; } section#about address a div.icon-linkedin { background-image: url(../img/icons-about.jpg); background-position: 33px 66px; width: 33px; height: 33px; overflow: hidden; float: left; margin-right: 10px; } section#about address div.linkedin h5 { width: 100%; height: 33px; padding-top: 7px; -webkit-transition: .5s; -moz-transition: .5s; -o-transition: .5s; transition: .5s; } section#about address a:hover div.icon-linkedin { background-position: 0px 66px; } section#about address a:hover h5 { font-size: 15px; } /*header > about > resume */ section#about address div.resume a { text-decoration: none; text-align: left; } section#about address div.resume { margin-top: 10px; height: 33px; } section#about address a div.icon-resume { background-image: url(../img/icons-about.jpg); background-position: 33px 33px; width: 33px; height: 33px; overflow: hidden; float: left; margin-right: 10px; } section#about address div.resume h5 { width: 100%; height: 33px; padding-top: 7px; -webkit-transition: .5s; -moz-transition: .5s; -o-transition: .5s; transition: .5s; } section#about address a:hover div.icon-resume { background-position: 0px 33px; } section#about address a:hover h5 { font-size: 15px; } /*header > scroll*/ section#scroll{ text-align: center; width: 55px; height: 80px; margin: 200px auto 110px auto; position: relative; } section#scroll h5{ text-transform: uppercase; font-weight: 300; color: #646464; } section#scroll img { width: 30px; height: 50px; margin: auto auto 115px auto; position: relative; } /*------ PROJECTS ------------------------*/ /*project > project 1*/ section#work ul li.project1 { width: 100%; height: 290px; background: url(../img/mpd-hover-bg.jpg) #000 no-repeat 50% 50%; background-color: #000; padding-top: 70px; overflow: hidden; } section#work ul li.project1 a.blackproject1{ text-decoration: none; display: block; z-index: 1; } section#work ul li.project1 .content-capa1 h5 { color: #000; width: 535px; margin: auto; } section#work ul li.project1 .content-capa1 h3 { color: #0d8ab9; margin-bottom: 5px; } section#work ul li.project1 .content-capa1 h4 { color: #000; margin-bottom: 40px; } section#work ul li.project1 .content-capa1 { display: block; position: relative; width: 100%; height: 290px; padding-top: 70px; background-color: #f4da4c; opacity: 10; top: -430px; -webkit-transition: .3s; -moz-transition: .3s; -o-transition: .3s; transition: .3s; } section#work ul li.project1:hover .content-capa1 { opacity: 0; filter: alpha(opacity=0); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } section#work ul li.project1 a.blackproject1 aside { width: 100%; height: 290px; padding-top: 70px; top: -70px; position: relative; margin: auto; z-index: 3; text-align: center; background-color: #000; filter: alpha(opacity=0); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); opacity: 0; -webkit-transition: .3s; -moz-transition: .3s; -o-transition: .3s; -ms-transition: .3s; transition: .3s; } section#work ul li.project1:hover a.blackproject1 aside { display: block; background-color: #000; filter: alpha(opacity=80); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; filter: alpha(opacity=80); opacity: 0.8; } section#work ul li.project1 a.blackproject1 aside img { width: 350px; height: 110px; margin: 20px auto auto auto; z-index: 3; text-align: center; } section#work ul li.project1 a.blackproject1 aside h3 { color: #03f1cc; } /*project > project 2*/ section#work ul li.project2 { width: 100%; height: 290px; background: url(../img/facetouch-hover-bg.jpg) #03a3dd no-repeat 50% 50%; background-color: #000; padding-top: 70px; overflow: hidden; } section#work ul li.project2 a.blackproject2{ text-decoration: none; display: block; z-index: 1; } section#work ul li.project2 .content-capa2 h5 { color: #000; width: 535px; margin: auto; } section#work ul li.project2 .content-capa2 h3 { color: #0a6db3; margin-bottom: 5px; } section#work ul li.project2 .content-capa2 h4 { color: #000; margin-bottom: 40px; } section#work ul li.project2 .content-capa2 { display: block; position: relative; width: 100%; height: 290px; padding-top: 70px; background-color: #dfdfdf; opacity: 10; top: -430px; -webkit-transition: .3s; -moz-transition: .3s; -o-transition: .3s; transition: .3s; } section#work ul li.project2:hover .content-capa2 { opacity: 0; filter: alpha(opacity=0); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } section#work ul li.project2 a.blackproject2 aside { width: 100%; height: 290px; padding-top: 70px; top: -70px; position: relative; margin: auto; z-index: 3; text-align: center; background-color: #000; filter: alpha(opacity=0); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); opacity: 0; -webkit-transition: .3s; -moz-transition: .3s; -o-transition: .3s; -ms-transition: .3s; transition: .3s; } section#work ul li.project2:hover a.blackproject2 aside { display: block; background-color: #000; filter: alpha(opacity=80); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; filter: alpha(opacity=80); opacity: 0.8; } section#work ul li.project2 a.blackproject2 aside img { width: 350px; height: 110px; margin: 20px auto auto auto; z-index: 3; text-align: center; } section#work ul li.project2 a.blackproject2 aside h3 { color: #03f1cc; } /*project > project 3*/ section#work ul li.project3 { width: 100%; height: 290px; background: url(../img/lula-hover-bg.jpg) #03a3dd no-repeat 50% 50%; background-color: #000; padding-top: 70px; overflow: hidden; } section#work ul li.project3 a.blackproject3{ text-decoration: none; display: block; z-index: 1; } section#work ul li.project3 .content-capa3 h5 { color: #000; width: 535px; margin: auto; } section#work ul li.project3 .content-capa3 h3 { color: #fff; margin-bottom: 5px; } section#work ul li.project3 .content-capa3 h4 { color: #000; margin-bottom: 40px; } section#work ul li.project3 .content-capa3 { display: block; position: relative; width: 100%; height: 290px; padding-top: 70px; background-color: #d71313; opacity: 10; top: -430px; -webkit-transition: .3s; -moz-transition: .3s; -o-transition: .3s; transition: .3s; } section#work ul li.project3:hover .content-capa3 { opacity: 0; filter: alpha(opacity=0); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } section#work ul li.project3 a.blackproject3 aside { width: 100%; height: 290px; padding-top: 70px; top: -70px; position: relative; margin: auto; z-index: 3; text-align: center; background-color: #000; filter: alpha(opacity=0); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); opacity: 0; -webkit-transition: .3s; -moz-transition: .3s; -o-transition: .3s; -ms-transition: .3s; transition: .3s; } section#work ul li.project3:hover a.blackproject3 aside { display: block; background-color: #000; filter: alpha(opacity=80); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; filter: alpha(opacity=80); opacity: 0.8; } section#work ul li.project3 a.blackproject3 aside img { width: 350px; height: 110px; margin: 20px auto auto auto; z-index: 3; text-align: center; } section#work ul li.project3 a.blackproject3 aside h3 { color: #03f1cc; } /*project > project 5 - METRO*/ section#work ul li.project5 { width: 100%; height: 290px; background: url(../img/metro-hover-bg.jpg) #0d8ab9 no-repeat 50% 50%; background-color: #000; padding-top: 70px; overflow: hidden; } section#work ul li.project5 a.blackproject5{ text-decoration: none; display: block; z-index: 1; } section#work ul li.project5 .content-capa5 h5 { color: #fff; width: 535px; margin: auto; } section#work ul li.project5 .content-capa5 h3 { color: #fff; margin-bottom: 5px; } section#work ul li.project5 .content-capa5 h4 { color: #fff; margin-bottom: 40px; } section#work ul li.project5 .content-capa5 { display: block; position: relative; width: 100%; height: 290px; padding-top: 70px; background-color: #0d8ab9; opacity: 10; top: -430px; -webkit-transition: .3s; -moz-transition: .3s; -o-transition: .3s; transition: .3s; } section#work ul li.project5:hover .content-capa5 { opacity: 0; filter: alpha(opacity=0); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } section#work ul li.project5 a.blackproject5 aside { width: 100%; height: 290px; padding-top: 70px; top: -70px; position: relative; margin: auto; z-index: 3; text-align: center; background-color: #000; filter: alpha(opacity=0); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); opacity: 0; -webkit-transition: .3s; -moz-transition: .3s; -o-transition: .3s; -ms-transition: .3s; transition: .3s; } section#work ul li.project5:hover a.blackproject5 aside { display: block; background-color: #000; filter: alpha(opacity=80); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; filter: alpha(opacity=80); opacity: 0.8; } section#work ul li.project5 a.blackproject5 aside img { width: 350px; height: 110px; margin: 20px auto auto auto; z-index: 3; text-align: center; } section#work ul li.project5 a.blackproject5 aside h3 { color: #03f1cc; } /*project > project 4*/ section#work ul li.project4 { width: 100%; height: 290px; background: url(../img/mpi-hover-bg.jpg) #03a3dd no-repeat 50% 50%; background-color: #000; padding-top: 70px; overflow: hidden; } section#work ul li.project4 a.blackproject4{ text-decoration: none; display: block; z-index: 1; } section#work ul li.project4 .content-capa4 h5 { color: #000; width: 535px; margin: auto; } section#work ul li.project4 .content-capa4 h3 { color: #fff; margin-bottom: 5px; } section#work ul li.project4 .content-capa4 h4 { color: #000; margin-bottom: 40px; } section#work ul li.project4 .content-capa4 { display: block; position: relative; width: 100%; height: 290px; padding-top: 70px; background-color: #ff7800; opacity: 10; top: -430px; -webkit-transition: .3s; -moz-transition: .3s; -o-transition: .3s; transition: .3s; } section#work ul li.project4:hover .content-capa4 { opacity: 0; filter: alpha(opacity=0); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } section#work ul li.project4 a.blackproject4 aside { width: 100%; height: 290px; padding-top: 70px; top: -70px; position: relative; margin: auto; z-index: 3; text-align: center; background-color: #000; filter: alpha(opacity=0); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); opacity: 0; -webkit-transition: .3s; -moz-transition: .3s; -o-transition: .3s; -ms-transition: .3s; transition: .3s; } section#work ul li.project4:hover a.blackproject4 aside { display: block; background-color: #000; filter: alpha(opacity=80); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; filter: alpha(opacity=80); opacity: 0.8; } section#work ul li.project4 a.blackproject4 aside img { width: 350px; height: 110px; margin: 20px auto auto auto; z-index: 3; text-align: center; } section#work ul li.project4 a.blackproject4 aside h3 { color: #03f1cc; } /*___________________*/ /*footer*/ footer { background-color: #03f1cc; margin: auto; } footer a nav { text-align: center; padding: 20px; } footer a.go-top nav { text-decoration: none; text-transform: uppercase; vertical-align: middle; color: #000; font-size: 20px; font-family:'Roboto', Arial, serif; font-weight: 300; }
css/taiastyle1.css
@font-face { font-family: 'sequilight'; src: url('sequi_light-webfont.eot'); src: url('sequi_light-webfont.eot?#iefix') format('embedded-opentype'), url('sequi_light-webfont.woff') format('woff'), url('sequi_light-webfont.ttf') format('truetype'), url('sequi_light-webfont.svg#sequilight') format('svg'); font-weight: normal; font-style: normal; } h1 { font-family: 'sequilight', Arial, serif; font-size: 71px; line-height: 65px; text-align: center; } h2 { font-family: 'Roboto', Arial, serif; font-weight: 100; font-size: 35px; color: #28c2aa; text-align: center; } h3 { font-family: 'Roboto', Arial, serif; font-weight: 500; font-size: 80px; text-align: center; text-transform: uppercase; } h4 { font-family:'Roboto', Arial, serif; font-weight: 100; font-size: 20px; text-align: center; } h5 { font-family: 'Roboto', Arial, serif; font-weight: 400; font-size: 14px; text-align: center; line-height: 23px; } /*------ HEADER ------------------------*/ section#line { width: 100%; height: 4px; background-color: #0affd7; background-position: center top; margin: 0 auto 80px auto; display: block; } Header#home { position: relative; width: 978px; margin: auto; } Section#logo h1 span { font-size: 78px; letter-spacing: 6px; } header#home img { margin-top: 80px; position: absolute; } header#home h1,h2 { text-align: center; } header#home h1 { margin: 80px auto 5px auto; letter-spacing: 4px; } /*header > about*/ Section#about { width: 30%; height: 240px; margin-top: 5px; float: right; } Section#about h4 { margin-bottom: 5px; text-align: left; color: #28c2aa; font-size: 21px; } Section#about h5 { text-align: left; line-height: 17px; color: #2f2f2f; } Section#about h5 span { font-style: italic; color: #fff; } section#about address{ height: 120px; } /*header > about > email */ section#about address div.email a { text-decoration: none; text-align: left; } section#about address div.email { margin-top: 10px; height: 33px; } section#about address a div.icon-email { background-image: url(../img/icons-about.jpg); background-position: 33px 0px; width: 33px; height: 33px; overflow: hidden; float: left; margin-right: 10px; } section#about address div.email h5 { width: 100%; height: 33px; padding-top: 7px; -webkit-transition: .5s; -moz-transition: .5s; -o-transition: .5s; transition: .5s; } section#about address a:hover div.icon-email { background-position: 0px 0; } section#about address a:hover h5 { font-size: 15px; } /*header > about > linkedin */ section#about address div.linkedin a { text-decoration: none; text-align: left; } section#about address div.linkedin { margin-top: 10px; height: 33px; } section#about address a div.icon-linkedin { background-image: url(../img/icons-about.jpg); background-position: 33px 66px; width: 33px; height: 33px; overflow: hidden; float: left; margin-right: 10px; } section#about address div.linkedin h5 { width: 100%; height: 33px; padding-top: 7px; -webkit-transition: .5s; -moz-transition: .5s; -o-transition: .5s; transition: .5s; } section#about address a:hover div.icon-linkedin { background-position: 0px 66px; } section#about address a:hover h5 { font-size: 15px; } /*header > about > resume */ section#about address div.resume a { text-decoration: none; text-align: left; } section#about address div.resume { margin-top: 10px; height: 33px; } section#about address a div.icon-resume { background-image: url(../img/icons-about.jpg); background-position: 33px 33px; width: 33px; height: 33px; overflow: hidden; float: left; margin-right: 10px; } section#about address div.resume h5 { width: 100%; height: 33px; padding-top: 7px; -webkit-transition: .5s; -moz-transition: .5s; -o-transition: .5s; transition: .5s; } section#about address a:hover div.icon-resume { background-position: 0px 33px; } section#about address a:hover h5 { font-size: 15px; } /*header > scroll*/ section#scroll{ text-align: center; width: 55px; height: 80px; margin: 200px auto 110px auto; position: relative; } section#scroll h5{ text-transform: uppercase; font-weight: 300; color: #646464; } section#scroll img { width: 30px; height: 50px; margin: auto auto 115px auto; position: relative; } /*------ PROJECTS ------------------------*/ /*project > project 1*/ section#work ul li.project1 { width: 100%; height: 290px; background: url(../img/mpd-hover-bg.jpg) #000 no-repeat 50% 50%; background-color: #000; padding-top: 70px; overflow: hidden; } section#work ul li.project1 a.blackproject1{ text-decoration: none; display: block; z-index: 1; } section#work ul li.project1 .content-capa1 h5 { color: #000; width: 535px; margin: auto; } section#work ul li.project1 .content-capa1 h3 { color: #0d8ab9; margin-bottom: 5px; } section#work ul li.project1 .content-capa1 h4 { color: #000; margin-bottom: 40px; } section#work ul li.project1 .content-capa1 { display: block; position: relative; width: 100%; height: 290px; padding-top: 70px; background-color: #f4da4c; opacity: 10; top: -430px; -webkit-transition: .3s; -moz-transition: .3s; -o-transition: .3s; transition: .3s; } section#work ul li.project1:hover .content-capa1 { opacity: 0; filter: alpha(opacity=0); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } section#work ul li.project1 a.blackproject1 aside { width: 100%; height: 290px; padding-top: 70px; top: -70px; position: relative; margin: auto; z-index: 3; text-align: center; background-color: #000; filter: alpha(opacity=0); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); opacity: 0; -webkit-transition: .3s; -moz-transition: .3s; -o-transition: .3s; -ms-transition: .3s; transition: .3s; } section#work ul li.project1:hover a.blackproject1 aside { display: block; background-color: #000; filter: alpha(opacity=80); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; filter: alpha(opacity=80); opacity: 0.8; } section#work ul li.project1 a.blackproject1 aside img { width: 350px; height: 110px; margin: 20px auto auto auto; z-index: 3; text-align: center; } section#work ul li.project1 a.blackproject1 aside h3 { color: #03f1cc; } /*project > project 2*/ section#work ul li.project2 { width: 100%; height: 290px; background: url(../img/facetouch-hover-bg.jpg) #03a3dd no-repeat 50% 50%; background-color: #000; padding-top: 70px; overflow: hidden; } section#work ul li.project2 a.blackproject2{ text-decoration: none; display: block; z-index: 1; } section#work ul li.project2 .content-capa2 h5 { color: #000; width: 535px; margin: auto; } section#work ul li.project2 .content-capa2 h3 { color: #0a6db3; margin-bottom: 5px; } section#work ul li.project2 .content-capa2 h4 { color: #000; margin-bottom: 40px; } section#work ul li.project2 .content-capa2 { display: block; position: relative; width: 100%; height: 290px; padding-top: 70px; background-color: #dfdfdf; opacity: 10; top: -430px; -webkit-transition: .3s; -moz-transition: .3s; -o-transition: .3s; transition: .3s; } section#work ul li.project2:hover .content-capa2 { opacity: 0; filter: alpha(opacity=0); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } section#work ul li.project2 a.blackproject2 aside { width: 100%; height: 290px; padding-top: 70px; top: -70px; position: relative; margin: auto; z-index: 3; text-align: center; background-color: #000; filter: alpha(opacity=0); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); opacity: 0; -webkit-transition: .3s; -moz-transition: .3s; -o-transition: .3s; -ms-transition: .3s; transition: .3s; } section#work ul li.project2:hover a.blackproject2 aside { display: block; background-color: #000; filter: alpha(opacity=80); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; filter: alpha(opacity=80); opacity: 0.8; } section#work ul li.project2 a.blackproject2 aside img { width: 350px; height: 110px; margin: 20px auto auto auto; z-index: 3; text-align: center; } section#work ul li.project2 a.blackproject2 aside h3 { color: #03f1cc; } /*project > project 3*/ section#work ul li.project3 { width: 100%; height: 290px; background: url(../img/lula-hover-bg.jpg) #03a3dd no-repeat 50% 50%; background-color: #000; padding-top: 70px; overflow: hidden; } section#work ul li.project3 a.blackproject3{ text-decoration: none; display: block; z-index: 1; } section#work ul li.project3 .content-capa3 h5 { color: #000; width: 535px; margin: auto; } section#work ul li.project3 .content-capa3 h3 { color: #fff; margin-bottom: 5px; } section#work ul li.project3 .content-capa3 h4 { color: #000; margin-bottom: 40px; } section#work ul li.project3 .content-capa3 { display: block; position: relative; width: 100%; height: 290px; padding-top: 70px; background-color: #d71313; opacity: 10; top: -430px; -webkit-transition: .3s; -moz-transition: .3s; -o-transition: .3s; transition: .3s; } section#work ul li.project3:hover .content-capa3 { opacity: 0; filter: alpha(opacity=0); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } section#work ul li.project3 a.blackproject3 aside { width: 100%; height: 290px; padding-top: 70px; top: -70px; position: relative; margin: auto; z-index: 3; text-align: center; background-color: #000; filter: alpha(opacity=0); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); opacity: 0; -webkit-transition: .3s; -moz-transition: .3s; -o-transition: .3s; -ms-transition: .3s; transition: .3s; } section#work ul li.project3:hover a.blackproject3 aside { display: block; background-color: #000; filter: alpha(opacity=80); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; filter: alpha(opacity=80); opacity: 0.8; } section#work ul li.project3 a.blackproject3 aside img { width: 350px; height: 110px; margin: 20px auto auto auto; z-index: 3; text-align: center; } section#work ul li.project3 a.blackproject3 aside h3 { color: #03f1cc; } /*project > project 5 - METRO*/ section#work ul li.project5 { width: 100%; height: 290px; background: url(../img/metro-hover-bg.jpg) #0d8ab9 no-repeat 50% 50%; background-color: #000; padding-top: 70px; overflow: hidden; } section#work ul li.project5 a.blackproject5{ text-decoration: none; display: block; z-index: 1; } section#work ul li.project5 .content-capa5 h5 { color: #fff; width: 535px; margin: auto; } section#work ul li.project5 .content-capa5 h3 { color: #fff; margin-bottom: 5px; } section#work ul li.project5 .content-capa5 h4 { color: #fff; margin-bottom: 40px; } section#work ul li.project5 .content-capa5 { display: block; position: relative; width: 100%; height: 290px; padding-top: 70px; background-color: #0d8ab9; opacity: 10; top: -430px; -webkit-transition: .3s; -moz-transition: .3s; -o-transition: .3s; transition: .3s; } section#work ul li.project5:hover .content-capa5 { opacity: 0; filter: alpha(opacity=0); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } section#work ul li.project5 a.blackproject5 aside { width: 100%; height: 290px; padding-top: 70px; top: -70px; position: relative; margin: auto; z-index: 3; text-align: center; background-color: #000; filter: alpha(opacity=0); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); opacity: 0; -webkit-transition: .3s; -moz-transition: .3s; -o-transition: .3s; -ms-transition: .3s; transition: .3s; } section#work ul li.project5:hover a.blackproject5 aside { display: block; background-color: #000; filter: alpha(opacity=80); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; filter: alpha(opacity=80); opacity: 0.8; } section#work ul li.project5 a.blackproject5 aside img { width: 350px; height: 110px; margin: 20px auto auto auto; z-index: 3; text-align: center; } section#work ul li.project5 a.blackproject5 aside h3 { color: #03f1cc; } /*project > project 4*/ section#work ul li.project4 { width: 100%; height: 290px; background: url(../img/mpi-hover-bg.jpg) #03a3dd no-repeat 50% 50%; background-color: #000; padding-top: 70px; overflow: hidden; } section#work ul li.project4 a.blackproject4{ text-decoration: none; display: block; z-index: 1; } section#work ul li.project4 .content-capa4 h5 { color: #000; width: 535px; margin: auto; } section#work ul li.project4 .content-capa4 h3 { color: #fff; margin-bottom: 5px; } section#work ul li.project4 .content-capa4 h4 { color: #000; margin-bottom: 40px; } section#work ul li.project4 .content-capa4 { display: block; position: relative; width: 100%; height: 290px; padding-top: 70px; background-color: #ff7800; opacity: 10; top: -430px; -webkit-transition: .3s; -moz-transition: .3s; -o-transition: .3s; transition: .3s; } section#work ul li.project4:hover .content-capa4 { opacity: 0; filter: alpha(opacity=0); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } section#work ul li.project4 a.blackproject4 aside { width: 100%; height: 290px; padding-top: 70px; top: -70px; position: relative; margin: auto; z-index: 3; text-align: center; background-color: #000; filter: alpha(opacity=0); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); opacity: 0; -webkit-transition: .3s; -moz-transition: .3s; -o-transition: .3s; -ms-transition: .3s; transition: .3s; } section#work ul li.project4:hover a.blackproject4 aside { display: block; background-color: #000; filter: alpha(opacity=80); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; filter: alpha(opacity=80); opacity: 0.8; } section#work ul li.project4 a.blackproject4 aside img { width: 350px; height: 110px; margin: 20px auto auto auto; z-index: 3; text-align: center; } section#work ul li.project4 a.blackproject4 aside h3 { color: #03f1cc; } /*___________________*/ /*footer*/ footer { background-color: #03f1cc; margin: auto; } footer a nav { text-align: center; padding: 20px; } footer a.go-top nav { text-decoration: none; text-transform: uppercase; vertical-align: middle; color: #000; font-size: 20px; font-family:'Roboto', Arial, serif; font-weight: 300; }
0.153867
0.061424
* { padding: 0; margin: 0; box-sizing: border-box; } body { font-family: 'Lato', sans-serif; font-weight: 400; font-size: 16px; line-height: 1.7; color: #eeeeee; } a { text-decoration: none; color: #ffffff; } /* ========================================= Heder Navigations ===========================================*/ header { display: flex; flex-direction: column; min-height: 100vh; /* mobile viewport bug fix */ min-height: -webkit-fill-available; background-image: linear-gradient(to right bottom, rgba(76, 216, 255, .5), rgba(30, 108, 217, .5)), url('img/header.jpeg'); background-size: cover; background-position: top; background-repeat: no-repeat; clip-path: polygon(0 0, 100% 0, 100% 75vh, 0% 100%); } nav.navbar { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; } .navbar h2 { padding: 15px 20px; text-transform: uppercase; } .navbar ul { list-style: none; display: flex; } .navbar ul li { border: 2px solid transparent; transition: 0.9s ease; } .navbar ul li:hover { border-bottom: 2px solid; } .navbar ul a { display: inline-block; margin-left: 10px; padding: 15px; text-transform: uppercase; } /* ========================================= Heder Text ===========================================*/ .header-text { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; } .heading-primary { margin-bottom: 2rem; text-transform: uppercase; backface-visibility: hidden; } .heading-primary-main { display: block; font-size: 2rem; font-weight: 400; letter-spacing: 5px; } .heading-primary-sub { display: block; font-size: 1.125rem; font-weight: 700; letter-spacing: 7px; } .btn-white { background-color: #ffffff; color: #777; font-size: 0.875rem; font-weight: 700; } .btn:link, .btn:visited { display: inline-block; padding: 10px 20px; text-transform: uppercase; text-decoration: none; border-radius: 100px; transition: all .2s; } .btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 0, 0, .2); }
Header/Landing Header Using HTML and CSS/style.css
* { padding: 0; margin: 0; box-sizing: border-box; } body { font-family: 'Lato', sans-serif; font-weight: 400; font-size: 16px; line-height: 1.7; color: #eeeeee; } a { text-decoration: none; color: #ffffff; } /* ========================================= Heder Navigations ===========================================*/ header { display: flex; flex-direction: column; min-height: 100vh; /* mobile viewport bug fix */ min-height: -webkit-fill-available; background-image: linear-gradient(to right bottom, rgba(76, 216, 255, .5), rgba(30, 108, 217, .5)), url('img/header.jpeg'); background-size: cover; background-position: top; background-repeat: no-repeat; clip-path: polygon(0 0, 100% 0, 100% 75vh, 0% 100%); } nav.navbar { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; } .navbar h2 { padding: 15px 20px; text-transform: uppercase; } .navbar ul { list-style: none; display: flex; } .navbar ul li { border: 2px solid transparent; transition: 0.9s ease; } .navbar ul li:hover { border-bottom: 2px solid; } .navbar ul a { display: inline-block; margin-left: 10px; padding: 15px; text-transform: uppercase; } /* ========================================= Heder Text ===========================================*/ .header-text { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; } .heading-primary { margin-bottom: 2rem; text-transform: uppercase; backface-visibility: hidden; } .heading-primary-main { display: block; font-size: 2rem; font-weight: 400; letter-spacing: 5px; } .heading-primary-sub { display: block; font-size: 1.125rem; font-weight: 700; letter-spacing: 7px; } .btn-white { background-color: #ffffff; color: #777; font-size: 0.875rem; font-weight: 700; } .btn:link, .btn:visited { display: inline-block; padding: 10px 20px; text-transform: uppercase; text-decoration: none; border-radius: 100px; transition: all .2s; } .btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 0, 0, .2); }
0.468304
0.109325
* { font-family: "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; } body { background-color:#06090F; color: white; } main { background-color:#06090F; height: calc(100vh - 100px - 24px); overflow-y: auto; } #grid { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); margin: 10px; } #bottom { background-color:#161B22; height: 100px; display: flex; justify-content: right; flex-direction: row-reverse; } #device-select { height: 100%; display: flex; flex-direction: column; justify-content: space-around; } #volume-select { height: 100%; display: flex; flex-direction: column; justify-content: space-around; } .slider { -webkit-appearance: none; width: 200px; height: 26px; background: transparent; outline: none; margin: 0px 20px; } .slider::-ms-track { background-color: lightgray; height: 5px; width: 100%; border-radius: 5px; border: none; border-color: transparent; border-width: 10px 0; } .slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 16px; height: 16px; border-radius: 50%; background-color: #00ACF8; cursor: pointer; } .slider::-ms-fill-lower { background-color: #00ACF8; border-radius: 6px; } select { display: block; width: 300px; margin: 0px 20px; } /* sound item styling */ .item { height: 50px; border-top: #30363D solid 1px; border-bottom: #30363D solid 1px; border: #30363D solid 1px; background-color:#0D1117; display: flex; align-items: center; border-radius: 7px; } .item > p { pointer-events: none; } .item-button { height: 16px; width: 16px; padding: 5px; border-radius: 50%; border: solid white 1px; transition: 0.2s; } .item-button:hover { border: solid white 2px; cursor: pointer; } .button-container { display: flex; align-items: center; justify-content: center; width: 40px; } .name { width: calc(100% - 140px); text-overflow: ellipsis; overflow: hidden; white-space: nowrap; -ms-user-select: none; user-select: none; } .duration { width: 50px; text-align: right; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; -ms-user-select: none; user-select: none; } .play-icon { background-image: url("{images:play.svg}"); background-repeat: no-repeat; background-position: center center; height: 100%; width: 100%; margin-left: 2px; } .pause-icon { background-image: url("{images:pause.svg}"); background-repeat: no-repeat; background-position: center center; background-size: 70%; height: 100%; width: 100%; } .selected { background-color: #191f27; } /* top bar */ nav { width: 100vw; height: 24px; background-color: #21252B; margin: 0px; padding: 0px; display: flex; position: relative; z-index: 100; } .menu-bar-button { border: none; height: 100%; font-size: 14px; line-height: 24px; margin: 0px; padding: 0px 10px; text-align: center; -ms-user-select: none; user-select: none; z-index: 10; position: relative } .menu-bar-button:hover { background-color: #383B41; cursor: pointer; } .menu { position: absolute; background-color: #333842; display: none; z-index: 10; padding: 5px 0px; width: 200px; box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.36); } .menu-item { font-size: 14px; line-height: 24px; margin: 0px; padding-left: 20px; -ms-user-select: none; user-select: none; } .menu-item:hover { background-color: #2C313A; cursor: pointer; } hr { margin: 5px 0px; height: 1px; background-color: #6B6E74; border: none; }
src/style.css
* { font-family: "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; } body { background-color:#06090F; color: white; } main { background-color:#06090F; height: calc(100vh - 100px - 24px); overflow-y: auto; } #grid { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); margin: 10px; } #bottom { background-color:#161B22; height: 100px; display: flex; justify-content: right; flex-direction: row-reverse; } #device-select { height: 100%; display: flex; flex-direction: column; justify-content: space-around; } #volume-select { height: 100%; display: flex; flex-direction: column; justify-content: space-around; } .slider { -webkit-appearance: none; width: 200px; height: 26px; background: transparent; outline: none; margin: 0px 20px; } .slider::-ms-track { background-color: lightgray; height: 5px; width: 100%; border-radius: 5px; border: none; border-color: transparent; border-width: 10px 0; } .slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 16px; height: 16px; border-radius: 50%; background-color: #00ACF8; cursor: pointer; } .slider::-ms-fill-lower { background-color: #00ACF8; border-radius: 6px; } select { display: block; width: 300px; margin: 0px 20px; } /* sound item styling */ .item { height: 50px; border-top: #30363D solid 1px; border-bottom: #30363D solid 1px; border: #30363D solid 1px; background-color:#0D1117; display: flex; align-items: center; border-radius: 7px; } .item > p { pointer-events: none; } .item-button { height: 16px; width: 16px; padding: 5px; border-radius: 50%; border: solid white 1px; transition: 0.2s; } .item-button:hover { border: solid white 2px; cursor: pointer; } .button-container { display: flex; align-items: center; justify-content: center; width: 40px; } .name { width: calc(100% - 140px); text-overflow: ellipsis; overflow: hidden; white-space: nowrap; -ms-user-select: none; user-select: none; } .duration { width: 50px; text-align: right; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; -ms-user-select: none; user-select: none; } .play-icon { background-image: url("{images:play.svg}"); background-repeat: no-repeat; background-position: center center; height: 100%; width: 100%; margin-left: 2px; } .pause-icon { background-image: url("{images:pause.svg}"); background-repeat: no-repeat; background-position: center center; background-size: 70%; height: 100%; width: 100%; } .selected { background-color: #191f27; } /* top bar */ nav { width: 100vw; height: 24px; background-color: #21252B; margin: 0px; padding: 0px; display: flex; position: relative; z-index: 100; } .menu-bar-button { border: none; height: 100%; font-size: 14px; line-height: 24px; margin: 0px; padding: 0px 10px; text-align: center; -ms-user-select: none; user-select: none; z-index: 10; position: relative } .menu-bar-button:hover { background-color: #383B41; cursor: pointer; } .menu { position: absolute; background-color: #333842; display: none; z-index: 10; padding: 5px 0px; width: 200px; box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.36); } .menu-item { font-size: 14px; line-height: 24px; margin: 0px; padding-left: 20px; -ms-user-select: none; user-select: none; } .menu-item:hover { background-color: #2C313A; cursor: pointer; } hr { margin: 5px 0px; height: 1px; background-color: #6B6E74; border: none; }
0.420719
0.146911
@media only screen and (max-width: 1139px){ .main-header .main-menu .navbar-collapse > ul > li{ margin-left:40px; } .counter-side .countdown .counter-column .count{ font-size:32px; } } @media only screen and (max-width: 1023px){ .main-header .main-menu .navbar-collapse > ul > li{ margin-left:18px; } .join-us .counter-side{ position:relative; width:100%; float:left; right:0px; height:auto; } .join-us .counter-side .inner-box{ padding:30px; position:relative; height:auto; } .main-header.fixed .header-lower{ position:relative !important; top:0px; } } @media only screen and (min-width: 800px) { .main-header .main-menu{ display:block !important; } } @media only screen and (min-width: 768px) and (max-width: 799px) { .main-header .main-menu{ display:none !important; } #side-navigation { opacity: 1; } #side-navigation .toggle-nav { opacity: 1; top: 110px; } } @media only screen and (max-width: 767px){ .header-top{ z-index:5; } #side-navigation.scrolled-down .toggle-nav{ top:16px; } .main-header .header-top .top-right{ display:none; } .main-header .header-top .top-left{ text-align:center !important; width:100%; } .main-header .header-top .top-left .phone-num, .main-header .header-top .top-left .email{ display:inline-block !important; float:none !important; margin:2px 10px !important; } .header-fixed.fixed .header-lower{ position:relative !important; } .main-header .logo{ float:none !important; width:100%; } .main-header .right-cont{ float:none; width:100%; padding:0px; margin:0px 0px 0px; } .main-header .main-menu{ display:none !important; } .parallax-section h3{ font-size:22px; } .parallax-section .theme-btn{ margin-bottom:10px; } .main-header .header-top .top-right{ padding-top:10px; text-align:left; } .main-slider .window-size .big-title h2{ font-size:30px; } .main-slider .tp-bullets, .main-slider .tp-bullets.hidebullets{ display:none; } .tri-column-outer{ display:block; } .tri-column-outer .column{ display:block; width:100% !important; } .main-header.fixed .header-lower{ position:relative; top:0px; } .sec-title h2{ font-size:22px; } .default-banner .window-size h2, .parallax-section h2{ font-size:24px; text-transform:capitalize; } .two-column-fluid .content-column, .two-column-fluid .image-side{ width:100%; float:left; position:relative; min-height:200px; } .two-column-fluid .column-inner{ padding:20px 15px; } .parallax-section.style-two .text{ padding:0px; } .parallax-section.style-two .text .theme-btn{ position:relative; margin:20px 0px; } .sidebar-page .comments-area .reply-btn{ position:relative; top:10px; } .blog-section .blog-post .lower-part{ padding-left:0px; } .theme-pagination li a, .blog-section .blog-post .lower-part .post-date{ position:relative; top:0px; margin-bottom:7px; } } @media only screen and (max-width: 599px){ .window-size .auto-container{ position:relative !important; min-height:0px !important; height:auto !important; } .default-banner .window-size{ padding:30px 15px !important; } .counter-side .proj-donation{ width:100%; margin-bottom:20px; } .help-us .text-column{ padding-left:0px; text-align:center; } .help-us .text-column .icon{ position:relative; margin-bottom:15px; display:inline-block; } } @media only screen and (max-width: 479px){ #side-navigation .toggle-nav{ top:120px; } #side-navigation.scrolled-down .toggle-nav{ top:16px; } .counter-side .countdown .counter-column{ margin:0px 0px !important; } .counter-side .countdown .counter-column .count{ font-size:24px; } .counter-side .countdown .counter-column .colon{ font-size:24px; left:12px; } .main-header .logo img{ max-width:200px; margin:5px 0px; } #side-navigation .toggle-nav{ left:-44px; } .featured-project .proj-donation{ padding-right:0px; } .featured-project .proj-donation .theme-btn{ position:relative; margin-top:10px; } }
template/css/responsive.css
@media only screen and (max-width: 1139px){ .main-header .main-menu .navbar-collapse > ul > li{ margin-left:40px; } .counter-side .countdown .counter-column .count{ font-size:32px; } } @media only screen and (max-width: 1023px){ .main-header .main-menu .navbar-collapse > ul > li{ margin-left:18px; } .join-us .counter-side{ position:relative; width:100%; float:left; right:0px; height:auto; } .join-us .counter-side .inner-box{ padding:30px; position:relative; height:auto; } .main-header.fixed .header-lower{ position:relative !important; top:0px; } } @media only screen and (min-width: 800px) { .main-header .main-menu{ display:block !important; } } @media only screen and (min-width: 768px) and (max-width: 799px) { .main-header .main-menu{ display:none !important; } #side-navigation { opacity: 1; } #side-navigation .toggle-nav { opacity: 1; top: 110px; } } @media only screen and (max-width: 767px){ .header-top{ z-index:5; } #side-navigation.scrolled-down .toggle-nav{ top:16px; } .main-header .header-top .top-right{ display:none; } .main-header .header-top .top-left{ text-align:center !important; width:100%; } .main-header .header-top .top-left .phone-num, .main-header .header-top .top-left .email{ display:inline-block !important; float:none !important; margin:2px 10px !important; } .header-fixed.fixed .header-lower{ position:relative !important; } .main-header .logo{ float:none !important; width:100%; } .main-header .right-cont{ float:none; width:100%; padding:0px; margin:0px 0px 0px; } .main-header .main-menu{ display:none !important; } .parallax-section h3{ font-size:22px; } .parallax-section .theme-btn{ margin-bottom:10px; } .main-header .header-top .top-right{ padding-top:10px; text-align:left; } .main-slider .window-size .big-title h2{ font-size:30px; } .main-slider .tp-bullets, .main-slider .tp-bullets.hidebullets{ display:none; } .tri-column-outer{ display:block; } .tri-column-outer .column{ display:block; width:100% !important; } .main-header.fixed .header-lower{ position:relative; top:0px; } .sec-title h2{ font-size:22px; } .default-banner .window-size h2, .parallax-section h2{ font-size:24px; text-transform:capitalize; } .two-column-fluid .content-column, .two-column-fluid .image-side{ width:100%; float:left; position:relative; min-height:200px; } .two-column-fluid .column-inner{ padding:20px 15px; } .parallax-section.style-two .text{ padding:0px; } .parallax-section.style-two .text .theme-btn{ position:relative; margin:20px 0px; } .sidebar-page .comments-area .reply-btn{ position:relative; top:10px; } .blog-section .blog-post .lower-part{ padding-left:0px; } .theme-pagination li a, .blog-section .blog-post .lower-part .post-date{ position:relative; top:0px; margin-bottom:7px; } } @media only screen and (max-width: 599px){ .window-size .auto-container{ position:relative !important; min-height:0px !important; height:auto !important; } .default-banner .window-size{ padding:30px 15px !important; } .counter-side .proj-donation{ width:100%; margin-bottom:20px; } .help-us .text-column{ padding-left:0px; text-align:center; } .help-us .text-column .icon{ position:relative; margin-bottom:15px; display:inline-block; } } @media only screen and (max-width: 479px){ #side-navigation .toggle-nav{ top:120px; } #side-navigation.scrolled-down .toggle-nav{ top:16px; } .counter-side .countdown .counter-column{ margin:0px 0px !important; } .counter-side .countdown .counter-column .count{ font-size:24px; } .counter-side .countdown .counter-column .colon{ font-size:24px; left:12px; } .main-header .logo img{ max-width:200px; margin:5px 0px; } #side-navigation .toggle-nav{ left:-44px; } .featured-project .proj-donation{ padding-right:0px; } .featured-project .proj-donation .theme-btn{ position:relative; margin-top:10px; } }
0.080659
0.059237
.card { width: 458px; background: var(--bg-color-2); border-radius: 50px; padding: 36px 24px; height: fit-content; } .deposit { border: 1px solid var(--border-color-1); border-radius: 30px; padding: 20px; margin-top: 38px; } .depositTop { display: flex; flex-direction: row; justify-content: space-between; font-size: 15px; line-height: 18px; color: var(--text-color-2); } .depositBottom { margin-top: 16px; display: flex; flex-direction: row; justify-content: space-between; } .tokenName { width: max-content; } .token { display: flex; flex-direction: row; justify-content: center; } .maxBtn { font-size: 13px; line-height: 16px; border: 1px solid var(--border-color-1); border-radius: 20px; padding: 2px 8px; display: flex; align-items: center; cursor: pointer; margin-right: 12px; } .maxBtnUnstake { margin-right: 0; } .selectedToken { font-style: normal; font-weight: normal; font-size: 18px; line-height: 22px; text-align: right; text-transform: uppercase; display: flex; flex-direction: row; align-items: center; cursor: pointer; } .selectedToken svg { width: 24px; } .selectedToken span { margin-left: 5px; margin-right: 5px; } .arrowWrapper { display: flex; justify-content: center; align-items: center; height: 70px; } .estimated { border: 1px solid var(--border-color-1); border-radius: 30px; padding: 20px; } .estimatedTop { display: flex; flex-direction: row; justify-content: space-between; font-size: 15px; line-height: 18px; color: var(--text-color-2); } .estimatedBottom { margin-top: 16px; display: flex; flex-direction: row; justify-content: space-between; } .info { display: flex; flex-direction: row; align-items: center; justify-content: space-between; font-weight: normal; font-size: 15px; line-height: 150%; color: var(--text-color-2); margin-top: 40px; } .info svg { margin-right: 10px; width: 24px; } .info span { width: 357px; } .btnWrapper button, .btnWrapper button:hover, .btnWrapper button:active, .btnWrapper button:focus { width: 100%; background: transparent; font-weight: bold; font-size: 15px; line-height: 18px; text-transform: uppercase; color: var(--text-color-4); border: 1px solid var(--text-color-4); border-radius: 30px; display: flex; align-items: center; justify-content: center; padding: 29px 30px; cursor: pointer; margin-top: 40px; } .btnWrapper button:hover { width: 100%; background: #FF8B8B; font-weight: bold; font-size: 15px; line-height: 18px; text-transform: uppercase; color: #000000; border: 1px solid #FF8B8B; border-radius: 30px; display: flex; align-items: center; justify-content: center; padding: 29px 30px; cursor: pointer; } .btnWrapper :global .ant-btn[disabled] { background: transparent; color: rgba(232, 232, 232, 0.55);; border: 1px solid rgba(232, 232, 232, 0.55);; cursor: not-allowed; } .stakeDescription1 { font-style: normal; font-weight: normal; font-size: 18px; line-height: 150%; color: var(--text-color-1); } .stakeDescription2 { font-style: normal; font-weight: normal; font-size: 18px; line-height: 150%; color: rgba(232, 232, 232, 0.8); margin-top: 18px; } @media screen and (max-width: 767px) { .card { width: 100%; border-radius: 30px; background: #000000; } .depositTop { font-size: 12px; line-height: 15px; } .depositBottom { font-size: 12px; line-height: 15px; } .maxBtn { font-size: 11px; line-height: 13px; border-radius: 15px; padding: 2px 8px; height: 25px; } .selectedToken { font-size: 13px; line-height: 16px; } .selectedToken svg { width: 18px; } .estimatedTop { font-size: 12px; line-height: 15px; } .info { font-size: 15px; line-height: 140%; margin-top: 30px; margin-bottom: 30px; } .info svg { width: 15px; } .arrowWrapper { height: 50px; } .depositBtn { font-size: 13px; line-height: 16px; } .tokens { display: flex; flex-direction: row; align-items: center; justify-content: space-between; overflow: scroll; padding-left: 42px; padding-right: 42px; } .stakeDescription1 { font-size: 15px; } .stakeDescription2 { font-size: 15px; } .info { font-size: 13px; } .btnWrapper button, .btnWrapper button:hover, .btnWrapper button:active, .btnWrapper button:focus { font-size: 13px; padding: 25px 25px; } }
src/views/stake/components/stake/styles.module.css
.card { width: 458px; background: var(--bg-color-2); border-radius: 50px; padding: 36px 24px; height: fit-content; } .deposit { border: 1px solid var(--border-color-1); border-radius: 30px; padding: 20px; margin-top: 38px; } .depositTop { display: flex; flex-direction: row; justify-content: space-between; font-size: 15px; line-height: 18px; color: var(--text-color-2); } .depositBottom { margin-top: 16px; display: flex; flex-direction: row; justify-content: space-between; } .tokenName { width: max-content; } .token { display: flex; flex-direction: row; justify-content: center; } .maxBtn { font-size: 13px; line-height: 16px; border: 1px solid var(--border-color-1); border-radius: 20px; padding: 2px 8px; display: flex; align-items: center; cursor: pointer; margin-right: 12px; } .maxBtnUnstake { margin-right: 0; } .selectedToken { font-style: normal; font-weight: normal; font-size: 18px; line-height: 22px; text-align: right; text-transform: uppercase; display: flex; flex-direction: row; align-items: center; cursor: pointer; } .selectedToken svg { width: 24px; } .selectedToken span { margin-left: 5px; margin-right: 5px; } .arrowWrapper { display: flex; justify-content: center; align-items: center; height: 70px; } .estimated { border: 1px solid var(--border-color-1); border-radius: 30px; padding: 20px; } .estimatedTop { display: flex; flex-direction: row; justify-content: space-between; font-size: 15px; line-height: 18px; color: var(--text-color-2); } .estimatedBottom { margin-top: 16px; display: flex; flex-direction: row; justify-content: space-between; } .info { display: flex; flex-direction: row; align-items: center; justify-content: space-between; font-weight: normal; font-size: 15px; line-height: 150%; color: var(--text-color-2); margin-top: 40px; } .info svg { margin-right: 10px; width: 24px; } .info span { width: 357px; } .btnWrapper button, .btnWrapper button:hover, .btnWrapper button:active, .btnWrapper button:focus { width: 100%; background: transparent; font-weight: bold; font-size: 15px; line-height: 18px; text-transform: uppercase; color: var(--text-color-4); border: 1px solid var(--text-color-4); border-radius: 30px; display: flex; align-items: center; justify-content: center; padding: 29px 30px; cursor: pointer; margin-top: 40px; } .btnWrapper button:hover { width: 100%; background: #FF8B8B; font-weight: bold; font-size: 15px; line-height: 18px; text-transform: uppercase; color: #000000; border: 1px solid #FF8B8B; border-radius: 30px; display: flex; align-items: center; justify-content: center; padding: 29px 30px; cursor: pointer; } .btnWrapper :global .ant-btn[disabled] { background: transparent; color: rgba(232, 232, 232, 0.55);; border: 1px solid rgba(232, 232, 232, 0.55);; cursor: not-allowed; } .stakeDescription1 { font-style: normal; font-weight: normal; font-size: 18px; line-height: 150%; color: var(--text-color-1); } .stakeDescription2 { font-style: normal; font-weight: normal; font-size: 18px; line-height: 150%; color: rgba(232, 232, 232, 0.8); margin-top: 18px; } @media screen and (max-width: 767px) { .card { width: 100%; border-radius: 30px; background: #000000; } .depositTop { font-size: 12px; line-height: 15px; } .depositBottom { font-size: 12px; line-height: 15px; } .maxBtn { font-size: 11px; line-height: 13px; border-radius: 15px; padding: 2px 8px; height: 25px; } .selectedToken { font-size: 13px; line-height: 16px; } .selectedToken svg { width: 18px; } .estimatedTop { font-size: 12px; line-height: 15px; } .info { font-size: 15px; line-height: 140%; margin-top: 30px; margin-bottom: 30px; } .info svg { width: 15px; } .arrowWrapper { height: 50px; } .depositBtn { font-size: 13px; line-height: 16px; } .tokens { display: flex; flex-direction: row; align-items: center; justify-content: space-between; overflow: scroll; padding-left: 42px; padding-right: 42px; } .stakeDescription1 { font-size: 15px; } .stakeDescription2 { font-size: 15px; } .info { font-size: 13px; } .btnWrapper button, .btnWrapper button:hover, .btnWrapper button:active, .btnWrapper button:focus { font-size: 13px; padding: 25px 25px; } }
0.489992
0.11358
* { box-sizing: border-box; margin: 0; } body { margin: 0; } /* Navigation Stylings */ .sidenav { height: 100%; /* 100% Full-height */ width: 0; /* 0 width - change this with JavaScript */ position: fixed; /* Stay in place */ z-index: 1; /* Stay on top */ top: 0; /* Stay at the top */ left: 0; background-color: rgb(0, 1, 15); /* Black*/ overflow-x: hidden; /* Disable horizontal scroll */ padding-top: 60px; /* Place content 60px from the top */ transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */ } /* The navigation menu links */ .sidenav a { padding: 8px 8px 8px 32px; font-family: montserrat, sans-serif; font-weight: 100; text-decoration: none; font-size: 25px; color: #ffffff; display: block; transition: 0.3s; } /* When you mouse over the navigation links, change their color */ .sidenav a:hover { background-color: #fa4b77; } /* Position and style the close button (top right corner) */ .sidenav .closebtn { position: absolute; top: 0; right: 25px; font-size: 36px; margin-left: 50px; } /* Style page content - use this if you want to push the page content to the right when you open the side navigation */ #main { transition: margin-left .5s; } span { color: #f56571; font-size: 1.8em; } .logo { margin-left: 32px; width: 90px; height: 75px; } .fa-fa-bars { background-color: #05122c; color: #aaffcd; } /* Backgrounds */ .color-pop { background-color: #05122c; } .link-btn { text-decoration: none; color: var(--primary-color); } :root { --primary-color: #05163a; } .content { z-index: 2; } .showcase { height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; padding: 0 20px; } .video-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; background: var(--primary-color) url('src/production\ ID_4873467.mp4') no-repeat center center/contain; } .video-container video { min-width: 100%; min-height: 100%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); object-fit: cover; } .video-container:after { content: ''; z-index: 1; height: 100%; width: 100%; top: 0; left: 0; background: rgba(44, 1, 21, 0.35); position: absolute; } .btn1 { margin-left: 8rem; padding: 18px 45px; font-size: 1.3em; background-color: rgba(3, 35, 110, 0.5); color: #f56571; font-weight: 100; border-radius: 5px; border: #021569; } input[type=text], select, textarea { width: 100%; padding: 12px; border: 1px solid black; border-radius: 4px; box-sizing: border-box; margin-top: 6px; margin-bottom: 18px; resize: vertical; } input[type=submit] { background-color: #05122c; color: #57f18a; padding: 12px 28px; border: none; border-radius: 4px; cursor: pointer; } input[type=submit]:hover { background-color: #4bfdb9; font-weight: 600; color: #05122c; } .contact-form { border-radius: 5px; background-color: #f2f2f2; padding: 20px; } .link-btn { display: inline-block; padding: 20px 40px; background: var(--primary-color); background-color: rgba(2, 22, 27, 0.5); font-family: montserrat; font-weight: 400; font-size: 1.3em; color: #fff; border-radius: 5px; border: solid rgb(36, 12, 1) 1px; margin-top: 25px; opacity: 0.9; } .link-btn:hover { transform: scale(1.16); background-color: #d1313e; } .btn1:hover:hover { transform: scale(1.18); background-color: #57f18a; color: #05122c; } .active { background-color: #061a69; } .sidenav:hover { background-color: #db2250; } /* Text Stylings */ .Display-text { font-family: carbon, sans-serif; text-shadow: 10px 8px#010f0a; color: #95ffac; font-weight: 900; font-size: 6.5em; line-height: 2; margin-bottom: 1.2rem; } .display-text2 { font-family: carbon, sans-serif; font-size: 4em; padding: 14rem 0rem 1rem 8rem; } .display-text3 { font-family: montserrat, sans-serif; font-weight: 200; font-size: 1.6em; color: white; padding-left: 8rem; margin-bottom: 4rem; } .text-color { color: #f56571; } .Subhead { font-family: Montserrat, sans-serif; background-color: rgba(2, 22, 27, 0.35); border-radius: 12px; padding: 1rem ; font-weight: 300; font-size: 1.5em; } .lowCap { color: white; font-size: 3em; padding-right: 5px; padding-left: 5px; } .lowCap1 { color: black; font-size: 3em; padding-right: 5px; padding-left: 5px; } .para { margin-left: 4rem;; margin-right: 4rem; margin-bottom: 2rem; font-size: 1.2em; } .para1 { margin-top: 6rem; margin-left: 6rem;; margin-right: 6rem; margin-bottom: 2rem; font-size: 1.8em; } h3 { font-size: 2em; padding: 4rem; font-family: Montserrat, sans-serif; font-weight: 300; } .p-color { background-color: #061a69; width: 91vw; color: white; padding: 2rem; margin-top: -8rem; padding-bottom: 2rem; } /* Flex Containers */ .even-cols { display: flex; } .even-cols > * { flex-basis: 100%; } /* Image Stylings */ .photo1 { width: 50vw; height: 95vh; max-width: 100%; } .hero-img { position: relative; margin-left: 4rem; margin-right: rem; width: 91vw; height: auto; max-width: 100%; max-height: min-content; display: inline-block; } .image-text { position: absolute; } .Photo-text { font-size: 3.5em; color: #57f18a; position: relative; margin-left: 6rem; bottom: 12rem; } .Subhead1 { font-family: Montserrat, sans-serif; text-shadow: 3px 2px #010f0a; margin-left: 6rem; font-weight: 100; color: white; padding: 8px; position: relative; font-size: 1.4em; bottom: 10rem; } figcaption { font-size: 1.4em; text-align: center; } /* Form Stylings */ #mySearch input[type=text] { width: 80%; margin-left: 6rem; margin-bottom: -8rem; } #searchBtn { padding: 10px 24px; background-color: #05122c; border: 1px solid #05122c; color: white; font-size: 0.9em; font-family: Montserrat, sans-serif; } .category { float: right; } footer { width: 100vw; height: 10vh; padding-top: 60px; padding-left: 20px; background-color: #010f0a; } /* Media Queries */ @media screen and (min-width: 320px) and (max-width: 800px) { .content { font-size: 0.6em; } .showcase { height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; padding: 0 20px; } } /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */ @media screen and (max-height: 450px) { .sidenav {padding-top: 15px;} .sidenav a {font-size: 18px;} } @media screen and (max-width: 360px) { .even-cols { display: flex; flex-direction: column; flex-wrap: wrap; text-align: center; align-items: center; } .col { max-width: 100%; width: 250px; height: auto; margin: 1rem; } .photo1 { width: 100%; height: auto; } .hero-img { width: 100%; height: auto; } .color-pop { text-align: center; font-size: 10px; } h3 .Subhead1 { text-align: center; font-size: 5px; left: 2px; margin-left: -8rem; } .Photo-text { text-align: center; font-size: 1.3em; display: inline-block; } .para1 { font-size: 5px; } }
main.css
* { box-sizing: border-box; margin: 0; } body { margin: 0; } /* Navigation Stylings */ .sidenav { height: 100%; /* 100% Full-height */ width: 0; /* 0 width - change this with JavaScript */ position: fixed; /* Stay in place */ z-index: 1; /* Stay on top */ top: 0; /* Stay at the top */ left: 0; background-color: rgb(0, 1, 15); /* Black*/ overflow-x: hidden; /* Disable horizontal scroll */ padding-top: 60px; /* Place content 60px from the top */ transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */ } /* The navigation menu links */ .sidenav a { padding: 8px 8px 8px 32px; font-family: montserrat, sans-serif; font-weight: 100; text-decoration: none; font-size: 25px; color: #ffffff; display: block; transition: 0.3s; } /* When you mouse over the navigation links, change their color */ .sidenav a:hover { background-color: #fa4b77; } /* Position and style the close button (top right corner) */ .sidenav .closebtn { position: absolute; top: 0; right: 25px; font-size: 36px; margin-left: 50px; } /* Style page content - use this if you want to push the page content to the right when you open the side navigation */ #main { transition: margin-left .5s; } span { color: #f56571; font-size: 1.8em; } .logo { margin-left: 32px; width: 90px; height: 75px; } .fa-fa-bars { background-color: #05122c; color: #aaffcd; } /* Backgrounds */ .color-pop { background-color: #05122c; } .link-btn { text-decoration: none; color: var(--primary-color); } :root { --primary-color: #05163a; } .content { z-index: 2; } .showcase { height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; padding: 0 20px; } .video-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; background: var(--primary-color) url('src/production\ ID_4873467.mp4') no-repeat center center/contain; } .video-container video { min-width: 100%; min-height: 100%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); object-fit: cover; } .video-container:after { content: ''; z-index: 1; height: 100%; width: 100%; top: 0; left: 0; background: rgba(44, 1, 21, 0.35); position: absolute; } .btn1 { margin-left: 8rem; padding: 18px 45px; font-size: 1.3em; background-color: rgba(3, 35, 110, 0.5); color: #f56571; font-weight: 100; border-radius: 5px; border: #021569; } input[type=text], select, textarea { width: 100%; padding: 12px; border: 1px solid black; border-radius: 4px; box-sizing: border-box; margin-top: 6px; margin-bottom: 18px; resize: vertical; } input[type=submit] { background-color: #05122c; color: #57f18a; padding: 12px 28px; border: none; border-radius: 4px; cursor: pointer; } input[type=submit]:hover { background-color: #4bfdb9; font-weight: 600; color: #05122c; } .contact-form { border-radius: 5px; background-color: #f2f2f2; padding: 20px; } .link-btn { display: inline-block; padding: 20px 40px; background: var(--primary-color); background-color: rgba(2, 22, 27, 0.5); font-family: montserrat; font-weight: 400; font-size: 1.3em; color: #fff; border-radius: 5px; border: solid rgb(36, 12, 1) 1px; margin-top: 25px; opacity: 0.9; } .link-btn:hover { transform: scale(1.16); background-color: #d1313e; } .btn1:hover:hover { transform: scale(1.18); background-color: #57f18a; color: #05122c; } .active { background-color: #061a69; } .sidenav:hover { background-color: #db2250; } /* Text Stylings */ .Display-text { font-family: carbon, sans-serif; text-shadow: 10px 8px#010f0a; color: #95ffac; font-weight: 900; font-size: 6.5em; line-height: 2; margin-bottom: 1.2rem; } .display-text2 { font-family: carbon, sans-serif; font-size: 4em; padding: 14rem 0rem 1rem 8rem; } .display-text3 { font-family: montserrat, sans-serif; font-weight: 200; font-size: 1.6em; color: white; padding-left: 8rem; margin-bottom: 4rem; } .text-color { color: #f56571; } .Subhead { font-family: Montserrat, sans-serif; background-color: rgba(2, 22, 27, 0.35); border-radius: 12px; padding: 1rem ; font-weight: 300; font-size: 1.5em; } .lowCap { color: white; font-size: 3em; padding-right: 5px; padding-left: 5px; } .lowCap1 { color: black; font-size: 3em; padding-right: 5px; padding-left: 5px; } .para { margin-left: 4rem;; margin-right: 4rem; margin-bottom: 2rem; font-size: 1.2em; } .para1 { margin-top: 6rem; margin-left: 6rem;; margin-right: 6rem; margin-bottom: 2rem; font-size: 1.8em; } h3 { font-size: 2em; padding: 4rem; font-family: Montserrat, sans-serif; font-weight: 300; } .p-color { background-color: #061a69; width: 91vw; color: white; padding: 2rem; margin-top: -8rem; padding-bottom: 2rem; } /* Flex Containers */ .even-cols { display: flex; } .even-cols > * { flex-basis: 100%; } /* Image Stylings */ .photo1 { width: 50vw; height: 95vh; max-width: 100%; } .hero-img { position: relative; margin-left: 4rem; margin-right: rem; width: 91vw; height: auto; max-width: 100%; max-height: min-content; display: inline-block; } .image-text { position: absolute; } .Photo-text { font-size: 3.5em; color: #57f18a; position: relative; margin-left: 6rem; bottom: 12rem; } .Subhead1 { font-family: Montserrat, sans-serif; text-shadow: 3px 2px #010f0a; margin-left: 6rem; font-weight: 100; color: white; padding: 8px; position: relative; font-size: 1.4em; bottom: 10rem; } figcaption { font-size: 1.4em; text-align: center; } /* Form Stylings */ #mySearch input[type=text] { width: 80%; margin-left: 6rem; margin-bottom: -8rem; } #searchBtn { padding: 10px 24px; background-color: #05122c; border: 1px solid #05122c; color: white; font-size: 0.9em; font-family: Montserrat, sans-serif; } .category { float: right; } footer { width: 100vw; height: 10vh; padding-top: 60px; padding-left: 20px; background-color: #010f0a; } /* Media Queries */ @media screen and (min-width: 320px) and (max-width: 800px) { .content { font-size: 0.6em; } .showcase { height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; padding: 0 20px; } } /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */ @media screen and (max-height: 450px) { .sidenav {padding-top: 15px;} .sidenav a {font-size: 18px;} } @media screen and (max-width: 360px) { .even-cols { display: flex; flex-direction: column; flex-wrap: wrap; text-align: center; align-items: center; } .col { max-width: 100%; width: 250px; height: auto; margin: 1rem; } .photo1 { width: 100%; height: auto; } .hero-img { width: 100%; height: auto; } .color-pop { text-align: center; font-size: 10px; } h3 .Subhead1 { text-align: center; font-size: 5px; left: 2px; margin-left: -8rem; } .Photo-text { text-align: center; font-size: 1.3em; display: inline-block; } .para1 { font-size: 5px; } }
0.474388
0.10942
*{ margin: 0; padding: 0; } body{ font-family: "ๅพฎ่ฝฏ้›…้ป‘"; font-size: 14px; background: url('../img/56a46b7590f5672af5b8.jpg') fixed center center; } .logo_box{ width: 280px; height: 490px; padding: 35px; color: #EEE; position: absolute; left: 50%; top:100px; margin-left: -175px; } .logo_box h3{ text-align: center; height: 20px; font: 20px "microsoft yahei",Helvetica,Tahoma,Arial,"Microsoft jhengHei",sans-serif; color: #FFFFFF; height: 20px; line-height: 20px; padding:0 0 35px 0; } .forms{ width: 280px; height: 485px; } .logon_inof{ width: 100%; min-height: 450px; padding-top: 35px; position: relative; } .input_outer{ height: 46px; padding: 0 5px; margin-bottom: 20px; border-radius: 50px; position: relative; border: rgba(255,255,255,0.2) 2px solid !important; } .u_user{ width: 25px; height: 25px; background: url('../img/login_ico.png'); background-position: -125px 0; position: absolute; margin: 12px 13px; } .us_uer{ width: 25px; height: 25px; background-image: url('../img/login_ico.png'); background-position: -125px -34px; position: absolute; margin: 12px 13px; } .l-login{ position: absolute; z-index: 1; left: 50px; top: 0; height: 46px; font: 14px "microsoft yahei",Helvetica,Tahoma,Arial,"Microsoft jhengHei"; line-height: 46px; } label{ color: rgb(255, 255, 255); display: block; } .text{ width: 220px; height: 46px; outline: none; display: inline-block; font: 14px "microsoft yahei",Helvetica,Tahoma,Arial,"Microsoft jhengHei"; margin-left: 50px; border: none; background: none; line-height: 46px; } /*///*/ .mb2{ margin-bottom: 20px } .mb2 a{ text-decoration: none; outline: none; } .submit { padding: 15px; margin-top: 20px; display: block; } .act-but{ height: 52px; line-height: 20px; text-align: center; font-size: 20px; border-radius: 50px; background: #0096e6; width: 275px; } /*////*/ .check{ width: 280px; height: 22px; } .clearfix::before{ content: ""; display: table; } .clearfix::after{ display: block; clear: both; content: ""; visibility: hidden; height: 0; } .login-rm{ float: left; } .login-fgetpwd { float: right; } .check{ width: 18px; height: 18px; background: #fff; border: 1px solid #e5e6e7; margin: 0 5px 0 0; border-radius: 2px; } .check-ok{ background-position: -128px -70px; width: 18px; height: 18px; display: inline-block; border: 1px solid #e5e6e7; margin: 0 5px 0 0; border-radius: 2px; vertical-align: middle } .checkbox{ vertical-align: middle; margin: 0 5px 0 0; } /*=====*/ /*ๅ…ถไป–็™ปๅฝ•ๅฃ*/ .logins{ width: 280px; height: 27px; line-height: 27px; float:left; padding-bottom: 30px; } .qq{ width: 27px; height: 27px; float: left; display: inline-block; text-align: center; margin-left: 5px; margin-right: 18px; } .wx{ width: 27px; height: 27px; text-align: center; line-height: 27px; display: inline-block; margin: 5px 18px auto 5px; } .wx img{ width: 16px; height: 16px; float: left; line-height: 27px; text-align: center; } /*////*/ .sas{ width: 280px; height: 18px; float: left; color: #FFFFFF; text-align: center; font-size: 16px; line-height: 16px; margin-bottom: 50px; } .sas a{ width: 280px; height: 18px; color: #FFFFFF; text-align: center; line-height: 18px; text-decoration: none; }
msz/static/css/union_login.css
*{ margin: 0; padding: 0; } body{ font-family: "ๅพฎ่ฝฏ้›…้ป‘"; font-size: 14px; background: url('../img/56a46b7590f5672af5b8.jpg') fixed center center; } .logo_box{ width: 280px; height: 490px; padding: 35px; color: #EEE; position: absolute; left: 50%; top:100px; margin-left: -175px; } .logo_box h3{ text-align: center; height: 20px; font: 20px "microsoft yahei",Helvetica,Tahoma,Arial,"Microsoft jhengHei",sans-serif; color: #FFFFFF; height: 20px; line-height: 20px; padding:0 0 35px 0; } .forms{ width: 280px; height: 485px; } .logon_inof{ width: 100%; min-height: 450px; padding-top: 35px; position: relative; } .input_outer{ height: 46px; padding: 0 5px; margin-bottom: 20px; border-radius: 50px; position: relative; border: rgba(255,255,255,0.2) 2px solid !important; } .u_user{ width: 25px; height: 25px; background: url('../img/login_ico.png'); background-position: -125px 0; position: absolute; margin: 12px 13px; } .us_uer{ width: 25px; height: 25px; background-image: url('../img/login_ico.png'); background-position: -125px -34px; position: absolute; margin: 12px 13px; } .l-login{ position: absolute; z-index: 1; left: 50px; top: 0; height: 46px; font: 14px "microsoft yahei",Helvetica,Tahoma,Arial,"Microsoft jhengHei"; line-height: 46px; } label{ color: rgb(255, 255, 255); display: block; } .text{ width: 220px; height: 46px; outline: none; display: inline-block; font: 14px "microsoft yahei",Helvetica,Tahoma,Arial,"Microsoft jhengHei"; margin-left: 50px; border: none; background: none; line-height: 46px; } /*///*/ .mb2{ margin-bottom: 20px } .mb2 a{ text-decoration: none; outline: none; } .submit { padding: 15px; margin-top: 20px; display: block; } .act-but{ height: 52px; line-height: 20px; text-align: center; font-size: 20px; border-radius: 50px; background: #0096e6; width: 275px; } /*////*/ .check{ width: 280px; height: 22px; } .clearfix::before{ content: ""; display: table; } .clearfix::after{ display: block; clear: both; content: ""; visibility: hidden; height: 0; } .login-rm{ float: left; } .login-fgetpwd { float: right; } .check{ width: 18px; height: 18px; background: #fff; border: 1px solid #e5e6e7; margin: 0 5px 0 0; border-radius: 2px; } .check-ok{ background-position: -128px -70px; width: 18px; height: 18px; display: inline-block; border: 1px solid #e5e6e7; margin: 0 5px 0 0; border-radius: 2px; vertical-align: middle } .checkbox{ vertical-align: middle; margin: 0 5px 0 0; } /*=====*/ /*ๅ…ถไป–็™ปๅฝ•ๅฃ*/ .logins{ width: 280px; height: 27px; line-height: 27px; float:left; padding-bottom: 30px; } .qq{ width: 27px; height: 27px; float: left; display: inline-block; text-align: center; margin-left: 5px; margin-right: 18px; } .wx{ width: 27px; height: 27px; text-align: center; line-height: 27px; display: inline-block; margin: 5px 18px auto 5px; } .wx img{ width: 16px; height: 16px; float: left; line-height: 27px; text-align: center; } /*////*/ .sas{ width: 280px; height: 18px; float: left; color: #FFFFFF; text-align: center; font-size: 16px; line-height: 16px; margin-bottom: 50px; } .sas a{ width: 280px; height: 18px; color: #FFFFFF; text-align: center; line-height: 18px; text-decoration: none; }
0.336222
0.082512
[data-animating="true"].svg #greenR { animation: moveGreenControlRight 1s linear infinite; } @keyframes moveGreenControlRight { 0% { transform: translateX(0); } 50% { transform: translateX(-17px); } 100% { transform: translateX(0); } } [data-animating="true"].svg #greenL { animation: moveGreenControlLeft 1s linear infinite; } @keyframes moveGreenControlLeft { 0% { transform: translateX(0); } 50% { transform: translateX(-17px); } 100% { transform: translateX(0); } } [data-animating="true"].svg .cdType { animation: changeColor 1s linear infinite; } [data-animating="true"].svg .cdBook { animation: changeColor 1s linear infinite; animation-delay: 0.6s; } [data-animating="true"].svg .bookRect { animation: changeColor 1s linear infinite; animation-delay: 0.3s; } @keyframes changeColor { 0% { fill: #fff; } 50% { fill: #5fc9ed; } 100% { fill: #fff; } } [data-animating="true"].svg #controlTop { animation: moveControlTop 1s linear infinite; } @keyframes moveControlTop { 0% { transform: translateY(0); } 50% { transform: translateY(22px); } 100% { transform: translateY(0); } } [data-animating="true"].svg #controlBottom { animation: moveControlBottom 1s linear infinite; } @keyframes moveControlBottom { 0% { transform: translateY(0); } 50% { transform: translateY(-22px); } 100% { transform: translateY(0); } } [data-animating="true"].svg #cogwheelTop, [data-animating="true"].svg #cogwheelBottom { animation: rotate 3s linear infinite; } @keyframes rotate { from { transform-origin: center; transform: rotate(0deg); } to { transform-origin: center; transform: rotate(360deg); } } [data-animating="true"].svg #cogwheelCenter { animation: rotateReverse 3s linear infinite; } @keyframes rotateReverse { from { transform-origin: center; transform: rotate(360deg); } to { transform-origin: center; transform: rotate(0deg); } } .select { background: #fff; color: #18a9e0; max-width: 300px; font-size: 1rem; border: 1px solid #fff; height: 3rem; padding: 0.5rem; margin-top: 1rem; margin-bottom: 1rem; text-transform: capitalize; }
app/components/parts/type/styles.css
[data-animating="true"].svg #greenR { animation: moveGreenControlRight 1s linear infinite; } @keyframes moveGreenControlRight { 0% { transform: translateX(0); } 50% { transform: translateX(-17px); } 100% { transform: translateX(0); } } [data-animating="true"].svg #greenL { animation: moveGreenControlLeft 1s linear infinite; } @keyframes moveGreenControlLeft { 0% { transform: translateX(0); } 50% { transform: translateX(-17px); } 100% { transform: translateX(0); } } [data-animating="true"].svg .cdType { animation: changeColor 1s linear infinite; } [data-animating="true"].svg .cdBook { animation: changeColor 1s linear infinite; animation-delay: 0.6s; } [data-animating="true"].svg .bookRect { animation: changeColor 1s linear infinite; animation-delay: 0.3s; } @keyframes changeColor { 0% { fill: #fff; } 50% { fill: #5fc9ed; } 100% { fill: #fff; } } [data-animating="true"].svg #controlTop { animation: moveControlTop 1s linear infinite; } @keyframes moveControlTop { 0% { transform: translateY(0); } 50% { transform: translateY(22px); } 100% { transform: translateY(0); } } [data-animating="true"].svg #controlBottom { animation: moveControlBottom 1s linear infinite; } @keyframes moveControlBottom { 0% { transform: translateY(0); } 50% { transform: translateY(-22px); } 100% { transform: translateY(0); } } [data-animating="true"].svg #cogwheelTop, [data-animating="true"].svg #cogwheelBottom { animation: rotate 3s linear infinite; } @keyframes rotate { from { transform-origin: center; transform: rotate(0deg); } to { transform-origin: center; transform: rotate(360deg); } } [data-animating="true"].svg #cogwheelCenter { animation: rotateReverse 3s linear infinite; } @keyframes rotateReverse { from { transform-origin: center; transform: rotate(360deg); } to { transform-origin: center; transform: rotate(0deg); } } .select { background: #fff; color: #18a9e0; max-width: 300px; font-size: 1rem; border: 1px solid #fff; height: 3rem; padding: 0.5rem; margin-top: 1rem; margin-bottom: 1rem; text-transform: capitalize; }
0.744656
0.195709
* { box-sizing: border-box; outline: none; } :root { --main-content-color: white; --main-background-color: rgb(31, 31, 31); /* --main-add-color: rgb(31, 31, 31); */ --main-accent-color: rgb(221, 207, 9); --main-invisible-color: rgba(0, 0, 0, 0); } body { background-color: var(--main-background-color); font-family: 'Roboto Condensed', sans-serif; letter-spacing: -.02em; color: var(--main-content-color); font-style: italic; padding-top: 10px; padding-bottom: 90px; min-height: 100%; position: relative; } body::-webkit-scrollbar { width: 8px; height: 8px; } body::-webkit-scrollbar-track { background: var(--main-background-color); } body::-webkit-scrollbar-thumb { border-radius: 4px; background: rgb(62, 62, 62); } .invisible { z-index: -1; position: absolute; left: -1000px; top: -1000px; } .creator { width: 100%; margin: auto; position: relative; display: flex; justify-content: center; } .creator__content { display: block; width: max-content; } .creator__input { border: unset; border-bottom: 2px solid var(--main-content-color); color: var(--main-content-color); text-align: center; font-size: 24px; width: 150px; margin-left: calc(50% - 75px); background-color: unset; transition: .2s; position: relative; margin-bottom: 12px; margin-top: 12px; font-family: 'Roboto Condensed', sans-serif; font-style: italic; font-weight: bold; } .creator__input::placeholder { font-size: 24px; color: grey; font-family: 'Roboto Condensed', sans-serif; font-style: italic; font-weight: bold; } .creator__name { font-size: 48px; color: var(--main-accent-color); margin: 0; margin-top: 24px; text-align: center; opacity: 0; transition: .2s; } .creator__description { font-size: 16px; margin: 0; text-align: center; opacity: 0; transition: .2s; } .itemsBox { min-height: 250px; height: max-content; width: 720px; padding-bottom: 70px; border: 3px solid var(--main-accent-color); border-radius: 16px; position: relative; opacity: 0; transition: .2s; } .itemsBox__item { color: var(--main-content-color); margin-top: 10px; margin-bottom: 10px; font-size: 18px; } .creator__trigger { width: 150px; display: flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 12px; border: 2px solid var(--main-accent-color); transition: .2s; cursor: pointer; position: absolute; left: calc(50% - 75px); bottom: 12px; font-weight: bold; } .creator__trigger:hover { border: 2px solid var(--main-accent-color); background-color: var(--main-accent-color); color: var(--main-background-color); transition: .2s; } .creator__accepter { width: max-content; padding: 12px 18px; border-radius: 12px; border: 2px solid var(--main-accent-color); transition: .2s; cursor: pointer; margin: auto; width: 200px; font-size: 24px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; margin-top: 24px; font-weight: bold; opacity: 0; transition: .2s; } .creator__accepter:hover { border: 2px solid var(--main-accent-color); background-color: var(--main-accent-color); color: var(--main-background-color); transition: .2s; } .creator__input:focus { border-bottom: 2px solid var(--main-accent-color); transition: .2s; } .tasks { display: flex; justify-content: center; flex-wrap: wrap; width: 100%; padding-left: 50px; padding-right: 50px; margin: auto; opacity: 0; transition: .2s; } .prefab { width: 250px; min-height: 250px; border-radius: 16px; padding: 16px; border: 3px solid var(--main-accent-color); position: relative; font-weight: 600; overflow: hidden; transition: .2s; margin: 12px; padding-bottom: 0px; cursor: pointer; } .prefab:hover { transition: .2s; box-shadow: 0px 0px 15px var(--main-accent-color); } .prefab:hover .prefab__number { transition: .2s; -webkit-text-stroke: 2px var(--main-accent-color); } .prefab:hover .prefab__starter { border: 2px solid var(--main-accent-color); background-color: var(--main-accent-color); color: var(--main-background-color); transition: .2s; } .prefab__name { color: var(--main-accent-color); text-transform: uppercase; width: 100%; font-size: 24px; text-align: center; } .prefab__number { text-transform: uppercase; width: 100%; font-size: 120px; position: absolute; bottom: -35px; left: -15px; color: white; transition: .2s; } @supports (-webkit-text-stroke: 3px white) { .prefab__number { -webkit-text-stroke: 2px var(--main-accent-color); -webkit-text-fill-color: var(--main-invisible-color); color: unset; } } .prefab__starter { position: absolute; bottom: 16px; right: 16px; width: max-content; padding: 12px 18px; border-radius: 12px; border: 2px solid var(--main-accent-color); transition: .2s; } .itemsBox__content { margin: 0; margin-top: 6px; padding: 0; padding-left: 40px; padding-right: 20px; word-wrap: break-word; } .prefab__content { margin: 0; margin-top: 6px; padding: 0; padding-left: 20px; padding-right: 20px; } .theme { display: flex; width: 220px; margin: auto; margin-top: 24px; margin-bottom: 24px; justify-content: space-between; border-radius: 15px; padding: 0; opacity: 0; transition: .2s; position: relative; } .theme__choice { width: 100px; height: 30px; margin: 0; border-radius: 15px; color: var(--main-content-color); border: 2px solid var(--main-content-color); display: flex; align-items: center; justify-content: center; font-weight: bold; cursor: pointer; transition: .2s; position: relative; z-index: 1; } .theme__choice_active { border: 2px solid var(--main-accent-color); color: var(--main-background-color); transition: .2s; } .theme__active { background-color: var(--main-accent-color); width: 100px; height: 30px; top: 0; left: 0; position: absolute; border-radius: 15px; z-index: 0; transition: .2s; } .theme__active_triggered { transition: .2s; transform: translateX(120px); } footer p{ padding-top: 50px; text-align: center; font-size: 14px; color: var(--main-content-color); font-weight: bold; position: absolute; width: 100%; bottom: 0; left: 0; } .notifications { position: fixed; bottom: 24px; right: 24px; width: 350px; height: max-content; display: flex; flex-wrap: wrap; align-items: flex-end; overflow: auto; } .notifications__note { width: 350px; min-height: 60px; height: max-content; margin-bottom: 12px; padding: 24px; background-color: var(--main-accent-color); color: var(--main-background-color); border-radius: 12px; font-weight: bold; cursor: pointer; position: relative; } .note__close { font-size: 24px; position: absolute; right: 12px; top: 4px; } .bubbles__bubble{ width: 100px; height: 100px; border-radius: 50px; position: absolute; opacity: 0; transition: .2s; animation-name: shadow; animation-duration: 5s; animation-iteration-count: infinite; } .bubbles__bubble_blue { top: 50px; left: 100px; /* background: linear-gradient(180deg, #62CDA7 0%, #41BDC1 33.85%, #27AFD6 67.71%, #009CF3 100%); box-shadow: 0px 0px 15px #34B6CC; */ background: var(--main-accent-color); box-shadow: 0px 0px 15px var(--main-accent-color); } .bubbles__bubble_red { top: 250px; left: 250px; /* background: linear-gradient(180deg, #FF5757 0%, #D8DB61 100%); box-shadow: 0px 0px 15px #ED975C; */ background: var(--main-accent-color); box-shadow: 0px 0px 15px var(--main-accent-color); animation-delay: 1s; } .bubbles__bubble_pink { top: 150px; right: 100px; /* background: linear-gradient(180deg, #C548FF 0%, #FFB8EF 100%); box-shadow: 0px 0px 15px #E17DF8; */ background: var(--main-accent-color); box-shadow: 0px 0px 15px var(--main-accent-color); animation-delay: 2s; } .bubbles__bubble_green { top: 350px; right: 400px; /* background: linear-gradient(180deg, #22CA5B 0%, #A7FFC0 100%); box-shadow: 0px 0px 15px #78D094; */ background: var(--main-accent-color); box-shadow: 0px 0px 15px var(--main-accent-color); animation-delay: 3s; } @media screen and (max-width: 1720px) { .bubbles__bubble_blue { top: 50px; left: 50px; } .bubbles__bubble_red { top: 250px; left: 150px; } .bubbles__bubble_pink { top: 150px; right: 50px; } .bubbles__bubble_green { top: 350px; right: 150px; } } @media screen and (max-width: 1380px) { .bubbles__bubble_blue { top: 50px; left: 50px; } .bubbles__bubble_red { display: none; } .bubbles__bubble_pink { top: 150px; right: 50px; } .bubbles__bubble_green { display: none; } } @media screen and (max-width: 1100px) { .bubbles__bubble_blue { display: none; } .bubbles__bubble_pink { display: none; } } @keyframes shadow { 0% { box-shadow: 0px 0px 15px var(--main-accent-color); } 50% { box-shadow: 0px 0px 25px var(--main-accent-color); } 100% { box-shadow: 0px 0px 15px var(--main-accent-color); } }
styles.css
* { box-sizing: border-box; outline: none; } :root { --main-content-color: white; --main-background-color: rgb(31, 31, 31); /* --main-add-color: rgb(31, 31, 31); */ --main-accent-color: rgb(221, 207, 9); --main-invisible-color: rgba(0, 0, 0, 0); } body { background-color: var(--main-background-color); font-family: 'Roboto Condensed', sans-serif; letter-spacing: -.02em; color: var(--main-content-color); font-style: italic; padding-top: 10px; padding-bottom: 90px; min-height: 100%; position: relative; } body::-webkit-scrollbar { width: 8px; height: 8px; } body::-webkit-scrollbar-track { background: var(--main-background-color); } body::-webkit-scrollbar-thumb { border-radius: 4px; background: rgb(62, 62, 62); } .invisible { z-index: -1; position: absolute; left: -1000px; top: -1000px; } .creator { width: 100%; margin: auto; position: relative; display: flex; justify-content: center; } .creator__content { display: block; width: max-content; } .creator__input { border: unset; border-bottom: 2px solid var(--main-content-color); color: var(--main-content-color); text-align: center; font-size: 24px; width: 150px; margin-left: calc(50% - 75px); background-color: unset; transition: .2s; position: relative; margin-bottom: 12px; margin-top: 12px; font-family: 'Roboto Condensed', sans-serif; font-style: italic; font-weight: bold; } .creator__input::placeholder { font-size: 24px; color: grey; font-family: 'Roboto Condensed', sans-serif; font-style: italic; font-weight: bold; } .creator__name { font-size: 48px; color: var(--main-accent-color); margin: 0; margin-top: 24px; text-align: center; opacity: 0; transition: .2s; } .creator__description { font-size: 16px; margin: 0; text-align: center; opacity: 0; transition: .2s; } .itemsBox { min-height: 250px; height: max-content; width: 720px; padding-bottom: 70px; border: 3px solid var(--main-accent-color); border-radius: 16px; position: relative; opacity: 0; transition: .2s; } .itemsBox__item { color: var(--main-content-color); margin-top: 10px; margin-bottom: 10px; font-size: 18px; } .creator__trigger { width: 150px; display: flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 12px; border: 2px solid var(--main-accent-color); transition: .2s; cursor: pointer; position: absolute; left: calc(50% - 75px); bottom: 12px; font-weight: bold; } .creator__trigger:hover { border: 2px solid var(--main-accent-color); background-color: var(--main-accent-color); color: var(--main-background-color); transition: .2s; } .creator__accepter { width: max-content; padding: 12px 18px; border-radius: 12px; border: 2px solid var(--main-accent-color); transition: .2s; cursor: pointer; margin: auto; width: 200px; font-size: 24px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; margin-top: 24px; font-weight: bold; opacity: 0; transition: .2s; } .creator__accepter:hover { border: 2px solid var(--main-accent-color); background-color: var(--main-accent-color); color: var(--main-background-color); transition: .2s; } .creator__input:focus { border-bottom: 2px solid var(--main-accent-color); transition: .2s; } .tasks { display: flex; justify-content: center; flex-wrap: wrap; width: 100%; padding-left: 50px; padding-right: 50px; margin: auto; opacity: 0; transition: .2s; } .prefab { width: 250px; min-height: 250px; border-radius: 16px; padding: 16px; border: 3px solid var(--main-accent-color); position: relative; font-weight: 600; overflow: hidden; transition: .2s; margin: 12px; padding-bottom: 0px; cursor: pointer; } .prefab:hover { transition: .2s; box-shadow: 0px 0px 15px var(--main-accent-color); } .prefab:hover .prefab__number { transition: .2s; -webkit-text-stroke: 2px var(--main-accent-color); } .prefab:hover .prefab__starter { border: 2px solid var(--main-accent-color); background-color: var(--main-accent-color); color: var(--main-background-color); transition: .2s; } .prefab__name { color: var(--main-accent-color); text-transform: uppercase; width: 100%; font-size: 24px; text-align: center; } .prefab__number { text-transform: uppercase; width: 100%; font-size: 120px; position: absolute; bottom: -35px; left: -15px; color: white; transition: .2s; } @supports (-webkit-text-stroke: 3px white) { .prefab__number { -webkit-text-stroke: 2px var(--main-accent-color); -webkit-text-fill-color: var(--main-invisible-color); color: unset; } } .prefab__starter { position: absolute; bottom: 16px; right: 16px; width: max-content; padding: 12px 18px; border-radius: 12px; border: 2px solid var(--main-accent-color); transition: .2s; } .itemsBox__content { margin: 0; margin-top: 6px; padding: 0; padding-left: 40px; padding-right: 20px; word-wrap: break-word; } .prefab__content { margin: 0; margin-top: 6px; padding: 0; padding-left: 20px; padding-right: 20px; } .theme { display: flex; width: 220px; margin: auto; margin-top: 24px; margin-bottom: 24px; justify-content: space-between; border-radius: 15px; padding: 0; opacity: 0; transition: .2s; position: relative; } .theme__choice { width: 100px; height: 30px; margin: 0; border-radius: 15px; color: var(--main-content-color); border: 2px solid var(--main-content-color); display: flex; align-items: center; justify-content: center; font-weight: bold; cursor: pointer; transition: .2s; position: relative; z-index: 1; } .theme__choice_active { border: 2px solid var(--main-accent-color); color: var(--main-background-color); transition: .2s; } .theme__active { background-color: var(--main-accent-color); width: 100px; height: 30px; top: 0; left: 0; position: absolute; border-radius: 15px; z-index: 0; transition: .2s; } .theme__active_triggered { transition: .2s; transform: translateX(120px); } footer p{ padding-top: 50px; text-align: center; font-size: 14px; color: var(--main-content-color); font-weight: bold; position: absolute; width: 100%; bottom: 0; left: 0; } .notifications { position: fixed; bottom: 24px; right: 24px; width: 350px; height: max-content; display: flex; flex-wrap: wrap; align-items: flex-end; overflow: auto; } .notifications__note { width: 350px; min-height: 60px; height: max-content; margin-bottom: 12px; padding: 24px; background-color: var(--main-accent-color); color: var(--main-background-color); border-radius: 12px; font-weight: bold; cursor: pointer; position: relative; } .note__close { font-size: 24px; position: absolute; right: 12px; top: 4px; } .bubbles__bubble{ width: 100px; height: 100px; border-radius: 50px; position: absolute; opacity: 0; transition: .2s; animation-name: shadow; animation-duration: 5s; animation-iteration-count: infinite; } .bubbles__bubble_blue { top: 50px; left: 100px; /* background: linear-gradient(180deg, #62CDA7 0%, #41BDC1 33.85%, #27AFD6 67.71%, #009CF3 100%); box-shadow: 0px 0px 15px #34B6CC; */ background: var(--main-accent-color); box-shadow: 0px 0px 15px var(--main-accent-color); } .bubbles__bubble_red { top: 250px; left: 250px; /* background: linear-gradient(180deg, #FF5757 0%, #D8DB61 100%); box-shadow: 0px 0px 15px #ED975C; */ background: var(--main-accent-color); box-shadow: 0px 0px 15px var(--main-accent-color); animation-delay: 1s; } .bubbles__bubble_pink { top: 150px; right: 100px; /* background: linear-gradient(180deg, #C548FF 0%, #FFB8EF 100%); box-shadow: 0px 0px 15px #E17DF8; */ background: var(--main-accent-color); box-shadow: 0px 0px 15px var(--main-accent-color); animation-delay: 2s; } .bubbles__bubble_green { top: 350px; right: 400px; /* background: linear-gradient(180deg, #22CA5B 0%, #A7FFC0 100%); box-shadow: 0px 0px 15px #78D094; */ background: var(--main-accent-color); box-shadow: 0px 0px 15px var(--main-accent-color); animation-delay: 3s; } @media screen and (max-width: 1720px) { .bubbles__bubble_blue { top: 50px; left: 50px; } .bubbles__bubble_red { top: 250px; left: 150px; } .bubbles__bubble_pink { top: 150px; right: 50px; } .bubbles__bubble_green { top: 350px; right: 150px; } } @media screen and (max-width: 1380px) { .bubbles__bubble_blue { top: 50px; left: 50px; } .bubbles__bubble_red { display: none; } .bubbles__bubble_pink { top: 150px; right: 50px; } .bubbles__bubble_green { display: none; } } @media screen and (max-width: 1100px) { .bubbles__bubble_blue { display: none; } .bubbles__bubble_pink { display: none; } } @keyframes shadow { 0% { box-shadow: 0px 0px 15px var(--main-accent-color); } 50% { box-shadow: 0px 0px 25px var(--main-accent-color); } 100% { box-shadow: 0px 0px 15px var(--main-accent-color); } }
0.580828
0.081813
TABLE { width: 100%; } .menu { float: left; width: 25%; padding: 5px; text-align: left; border-radius: 4px; box-shadow: rgba(0, 0, 0, 1.2) 0px 1px 3px; } .menu a{ width: 100%; } .menu p{ word-break: break-all; } .table1 { width: 72%; float: right; } .table1 img { object-fit: contain; } .table2 { border-radius: 15px; width: 65%; float: left; } .table3 { width: 72%; /* ะจะธั€ะธะฝะฐ ั‚ะฐะฑะปะธั†ั‹ */ } .buttonMenu1 { width: 28%; } .buttonMenu { width: 310px; } .table1 th { overflow: hidden; } .table1 img:hover { transition: transform 0.5s; transform: scale(1.5); } .range-filter { padding-top: 10px; width: 240px; margin: auto; margin-bottom: 10px; } .range-controls { position: relative; height: 80px; margin-bottom: 15px; padding: 0 30px; background: #34495e; border-radius: 5px; overflow: hidden; } .scale { margin-top: 39px; height: 2px; background: #d7dcde; } .bar { height: 2px; background: #00ca74; } .toggle { position: absolute; top: 30px; left: 30px; width: 4px; height: 4px; border: 8px solid white; background: #ababab; cursor: pointer; border-radius: 50%; } .min-toggle { left: 70px; } .max-toggle { left: 165px; } .price-controls input { width: 55px; padding: 8px 10px; margin-left: 10px; border: none; background: #34495e; font-size: 16px; font-family: "Tahoma", sans-serif; text-align: center; color: #283136; border-radius: 5px; color: white; } .min-price { margin-right: 14px; } .block1 { width: 50%; height: 25%; background: #ccc; border: solid 1px black; float: left; overflow-y: scroll; scroll-behavior: smooth; } .block2 { width: 72%; height: 16%; background: #a6e1ec; border: solid 1px black; float: right; overflow-y: scroll; scroll-behavior: smooth; } .block3 { width: 72%; height: 16%; float: right; align-content: center; scroll-behavior: smooth; } .block4 { width: 35%; height: 10%; float: right; align-content: center; scroll-behavior: smooth; } .block5 { width: 35%; height: 10%; float: left; align-content: center; scroll-behavior: smooth; } .block6 { width: 72%; height: 10%; background: #a6e1ec; border: solid 1px black; float: right; } body { padding: 10px; font-family: "Arial", sans-serif; font-size: 14px; line-height: 1.4; } .input1 { max-width: 330px; padding: 10px; margin: 0 auto; position: relative; height: auto; } #userform { margin-left: 380px; width: 500px; } #userform input, #userform select { float: right; width: 45%; margin-right: 20%; } #userform span { display: block; line-height: 25px; } #slider-range { float: none; } .pictureItem { width: 20%; float: left; } .pictureItem img{ object-fit: contain; } .infoItem { padding-left: 20px; width: 40%; float: left; } .comments{ padding-left: 20px; width: 40%; height: 100%; float: right; } .comments h3{ margin-bottom: 60px; } .comment{ } .sendComment{ width:50%; } .sendComment p{ }
src/main/webapp/resources/css/mainStyle.css
TABLE { width: 100%; } .menu { float: left; width: 25%; padding: 5px; text-align: left; border-radius: 4px; box-shadow: rgba(0, 0, 0, 1.2) 0px 1px 3px; } .menu a{ width: 100%; } .menu p{ word-break: break-all; } .table1 { width: 72%; float: right; } .table1 img { object-fit: contain; } .table2 { border-radius: 15px; width: 65%; float: left; } .table3 { width: 72%; /* ะจะธั€ะธะฝะฐ ั‚ะฐะฑะปะธั†ั‹ */ } .buttonMenu1 { width: 28%; } .buttonMenu { width: 310px; } .table1 th { overflow: hidden; } .table1 img:hover { transition: transform 0.5s; transform: scale(1.5); } .range-filter { padding-top: 10px; width: 240px; margin: auto; margin-bottom: 10px; } .range-controls { position: relative; height: 80px; margin-bottom: 15px; padding: 0 30px; background: #34495e; border-radius: 5px; overflow: hidden; } .scale { margin-top: 39px; height: 2px; background: #d7dcde; } .bar { height: 2px; background: #00ca74; } .toggle { position: absolute; top: 30px; left: 30px; width: 4px; height: 4px; border: 8px solid white; background: #ababab; cursor: pointer; border-radius: 50%; } .min-toggle { left: 70px; } .max-toggle { left: 165px; } .price-controls input { width: 55px; padding: 8px 10px; margin-left: 10px; border: none; background: #34495e; font-size: 16px; font-family: "Tahoma", sans-serif; text-align: center; color: #283136; border-radius: 5px; color: white; } .min-price { margin-right: 14px; } .block1 { width: 50%; height: 25%; background: #ccc; border: solid 1px black; float: left; overflow-y: scroll; scroll-behavior: smooth; } .block2 { width: 72%; height: 16%; background: #a6e1ec; border: solid 1px black; float: right; overflow-y: scroll; scroll-behavior: smooth; } .block3 { width: 72%; height: 16%; float: right; align-content: center; scroll-behavior: smooth; } .block4 { width: 35%; height: 10%; float: right; align-content: center; scroll-behavior: smooth; } .block5 { width: 35%; height: 10%; float: left; align-content: center; scroll-behavior: smooth; } .block6 { width: 72%; height: 10%; background: #a6e1ec; border: solid 1px black; float: right; } body { padding: 10px; font-family: "Arial", sans-serif; font-size: 14px; line-height: 1.4; } .input1 { max-width: 330px; padding: 10px; margin: 0 auto; position: relative; height: auto; } #userform { margin-left: 380px; width: 500px; } #userform input, #userform select { float: right; width: 45%; margin-right: 20%; } #userform span { display: block; line-height: 25px; } #slider-range { float: none; } .pictureItem { width: 20%; float: left; } .pictureItem img{ object-fit: contain; } .infoItem { padding-left: 20px; width: 40%; float: left; } .comments{ padding-left: 20px; width: 40%; height: 100%; float: right; } .comments h3{ margin-bottom: 60px; } .comment{ } .sendComment{ width:50%; } .sendComment p{ }
0.500244
0.219358
html, body { width: 100%; height: 100%; font-family: "Source Sans Pro", sans-serif; } #login-container { width: 100%; height: 100%; margin: auto; text-align: center; } #login-card { display: inline-block; width: 80%; max-width: 25em; height: 24em; margin-top: 10%; padding: 3em 1em 3em 1em; } #login-btn { width: 35%; min-width:10em; font-family: "Source Sans Pro", sans-serif; margin: auto; margin-top: 4em; box-shadow: 0px 4px 4px #0002; } #login-subtitle { display: block; margin: auto; margin-top: 0.5em; font-family: "Source Sans Pro", sans-serif; font-weight: 400; font-size: 0.75em; text-align: center; opacity: 0.5; } #login-logo { display: block; width: 20em; max-width: 75%; margin: auto; } .logo-img { height: 1.5em; } #section-btn { font-family: "Source Sans Pro", sans-serif; font-weight: 700; font-size: 1.2em; color: white; text-shadow: 0px 1px #3333; } #navbar { background: #9be0b4; } .uk-nav > li > a { padding: 0; } #section-dropdown { padding: 0; } .section-dropdown-entry { font-family: "Source Sans Pro", sans-serif; padding: 1em; border-bottom: 1px solid #ccc; border-top: 1px solid #eee; } .section-dropdown-entry-course-label { font-family: "Source Sans Pro", sans-serif; color: #000; opacity: 0.7; font-size: 1.5em; font-weight: 700; margin: 0em; } .section-dropdown-entry-time { font-family: "Source Sans Pro", sans-serif; color: #000; opacity: 0.6; font-size: 1em; font-weight: 400; margin: 0em; } #section-enroll-btn { font-family: "Source Sans Pro", sans-serif; text-transform: uppercase; line-height: 1em; padding: 0.5em; font-weight: 900; text-align: center; color: #9be0b4; border-top: 1px solid #eee; } .course-nav-entry { margin: 0; padding: 0; } .course-nav-entry-text { font-family: "Source Sans Pro", sans-serif; font-size: 1.5em; font-weight: 600; opacity: 0.8; margin: 0; padding: 0px 0px 0px 0.5em; } .course-hero { padding: 1em; } .course-hero-label { font-family: "Source Sans Pro", sans-serif; font-size: 2.5em; } .course-hero-alert { font-family: "Source Sans Pro", sans-serif; font-size: 1em; } #coursenav-container { padding-top: 1em; } #coursenav-title { font-family: "Source Sans Pro", sans-serif; font-size: 2em; font-weight: 600; padding-left: 0.5em; } .section-enroll { padding: 1em !important; font-family: "Source Sans Pro", sans-serif; } .section-enroll-container { max-width: 25em; } .section-enroll-data{ float: left } .section-enroll-spacetime { font-size: 1.2em; font-weight: 600; margin: 0; } .section-enroll-mentor-label { font-size: 0.75em; font-weight: 600; text-transform: uppercase; margin: 1em 0 0 0; } .section-enroll-mentor{ font-size: 1em; margin: 0; } .section-enroll-mentor{ font-size: 1em; margin: 0; } .section-enroll-capacity{ font-size: 1em; font-weight: 600; margin: 0.25em 0 1em 0; } .section-enroll-btn{ float: right; padding-top: 5em; } .section-enroll-btn > button { bottom: 1em; }
csm_web/frontend/static/frontend/css/style.css
html, body { width: 100%; height: 100%; font-family: "Source Sans Pro", sans-serif; } #login-container { width: 100%; height: 100%; margin: auto; text-align: center; } #login-card { display: inline-block; width: 80%; max-width: 25em; height: 24em; margin-top: 10%; padding: 3em 1em 3em 1em; } #login-btn { width: 35%; min-width:10em; font-family: "Source Sans Pro", sans-serif; margin: auto; margin-top: 4em; box-shadow: 0px 4px 4px #0002; } #login-subtitle { display: block; margin: auto; margin-top: 0.5em; font-family: "Source Sans Pro", sans-serif; font-weight: 400; font-size: 0.75em; text-align: center; opacity: 0.5; } #login-logo { display: block; width: 20em; max-width: 75%; margin: auto; } .logo-img { height: 1.5em; } #section-btn { font-family: "Source Sans Pro", sans-serif; font-weight: 700; font-size: 1.2em; color: white; text-shadow: 0px 1px #3333; } #navbar { background: #9be0b4; } .uk-nav > li > a { padding: 0; } #section-dropdown { padding: 0; } .section-dropdown-entry { font-family: "Source Sans Pro", sans-serif; padding: 1em; border-bottom: 1px solid #ccc; border-top: 1px solid #eee; } .section-dropdown-entry-course-label { font-family: "Source Sans Pro", sans-serif; color: #000; opacity: 0.7; font-size: 1.5em; font-weight: 700; margin: 0em; } .section-dropdown-entry-time { font-family: "Source Sans Pro", sans-serif; color: #000; opacity: 0.6; font-size: 1em; font-weight: 400; margin: 0em; } #section-enroll-btn { font-family: "Source Sans Pro", sans-serif; text-transform: uppercase; line-height: 1em; padding: 0.5em; font-weight: 900; text-align: center; color: #9be0b4; border-top: 1px solid #eee; } .course-nav-entry { margin: 0; padding: 0; } .course-nav-entry-text { font-family: "Source Sans Pro", sans-serif; font-size: 1.5em; font-weight: 600; opacity: 0.8; margin: 0; padding: 0px 0px 0px 0.5em; } .course-hero { padding: 1em; } .course-hero-label { font-family: "Source Sans Pro", sans-serif; font-size: 2.5em; } .course-hero-alert { font-family: "Source Sans Pro", sans-serif; font-size: 1em; } #coursenav-container { padding-top: 1em; } #coursenav-title { font-family: "Source Sans Pro", sans-serif; font-size: 2em; font-weight: 600; padding-left: 0.5em; } .section-enroll { padding: 1em !important; font-family: "Source Sans Pro", sans-serif; } .section-enroll-container { max-width: 25em; } .section-enroll-data{ float: left } .section-enroll-spacetime { font-size: 1.2em; font-weight: 600; margin: 0; } .section-enroll-mentor-label { font-size: 0.75em; font-weight: 600; text-transform: uppercase; margin: 1em 0 0 0; } .section-enroll-mentor{ font-size: 1em; margin: 0; } .section-enroll-mentor{ font-size: 1em; margin: 0; } .section-enroll-capacity{ font-size: 1em; font-weight: 600; margin: 0.25em 0 1em 0; } .section-enroll-btn{ float: right; padding-top: 5em; } .section-enroll-btn > button { bottom: 1em; }
0.355104
0.077797
body { position: relative; /*background: url("../images/dark_dotted_@2X.png") repeat; background-size: 5px 5px;*/ background: #333 url('../images/mainarea_back.jpg') repeat; } [ng-cloak] { display: none; } /******************************************************** Generic HTML Elements (p, a, li...) ********************************************************/ html { height: 100%; } body { height: 100%; } h3 { background: rgb(250, 250, 250); background: rgba(250, 250, 250, 0.1); color: white; font-weight: bold; padding: 5px; margin-top: 10px; margin-bottom: 5px; } a, a:visited, a:hover { color: #1496BB; cursor: pointer; } p { color: lightgray; } p.lead { font-size: 14px; } a { text-decoration: none; } label { color: #FE6B1B; } img { margin: 10px; } input[type=submit] { text-transform: uppercase; } .hidden { display: none; } /******************************************************** Zori specific : layout ********************************************************/ #header { position: absolute; } #main-wrapper { height: 100%; } #front-panel { height: 100%; } #toolbar-panel { z-index: 2; width: 100%; height: 30%; } #front-panel-links { z-index: 1; width: 100%; height: 40%; } #front-panel-footer { width: 70%; height: 30%; margin-left: 15%; } /******************************************************** Zori specific : Front panel ********************************************************/ #front-panel { padding: 0; margin: 0; } .zori-form-input { width: 100%; padding: 5px 1em; border: 1px solid rgb(250,250,250); border: 1px solid rgba(250,250,250,0.5); color: #eee; background-color: #333333; background-color: rgba(150, 150, 150, 0.2); margin-bottom: 10px; } .zori-form-input:focus { border: none; outline: 0; background-color: #333333; background-color: rgba(0, 0, 0, 0.4); } .front-panel ::-webkit-input-placeholder { text-align: center; } .front-panel :-moz-placeholder { text-align: center; } .front-panel ::-moz-placeholder { text-align: center; } .front-panel :-ms-input-placeholder { text-align: center; } .front-panel .btn-add-link { position: absolute; top: calc(50% - 15px); width: 20px; height: 30px; border: 0; border-top-left-radius: 0; border-bottom-left-radius: 0; border-top-right-radius: 50%; border-bottom-right-radius: 50%; padding: 6px 0 4px; background: rgb(198,198,198); /* Old browsers */ background: -moz-linear-gradient(top, rgba(198,198,198,1) 50%, rgba(165,165,165,1) 51%); border-top-right-radius: 50%; border-bottom-right-radius: 50%; padding: 6px 0 4px; background: rgb(198,198,198); /* Old browsers */ background: -moz-linear-gradient(top, rgba(198,198,198,1) 50%, rgba(165,165,165,1) 51%); background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,rgba(198,198,198,1)), color-stop(51%,rgba(165,165,165,1))); background: -webkit-linear-gradient(top, rgba(198,198,198,1) 50%,rgba(165,165,165,1) 51%); background: -o-linear-gradient(top, rgba(198,198,198,1) 50%,rgba(165,165,165,1) 51%); background: -ms-linear-gradient(top, rgba(198,198,198,1) 50%,rgba(165,165,165,1) 51%); background: linear-gradient(to bottom, rgba(198,198,198,1) 50%,rgba(165,165,165,1) 51%); } .front-panel .btn-add-link:focus, .front-panel li:focus { outline: none; } .front-panel .btn-add-link:active { background: rgb(133,133,133); } /******************************************************** Zori specific : toolbar-panel ********************************************************/ #toolbar-panel { box-shadow: 0 4px 14px #000; } #toolbar-panel .inner-wrapper { position: relative; width: 70%; height: 100%; margin-left: 15%; } #main-menu { position: absolute; bottom: 0; width: 100%; height: 30px; text-align: center; } #main-menu:hover { opacity: 1; } #main-menu li { display: inline-block; height: 30px; font-size: 18px; } #main-menu .ui-state-active { opacity: 1; } #main-menu .glitz, #main-menu .glitz a{ opacity: 1; color: red; } #main-menu .icon { line-height: 30px; padding: 0 1em; text-decoration: none; color: #FFFFFF; outline: none; } #main-menu .icon:active, #main-menu .ui-state-active .icon { color: #1496BB; } #main-menu span { display: none; } .main-menu-tab { position: absolute; top: 100%; width: 100%; height: 133%; /*background-color: #1496BB;*/ } /******************************************************** Zori specific : Registration modal ********************************************************/ #registration-modal {} /******************************************************** Zori specific : Front panel links ********************************************************/ #front-panel-links { background: #111 url('http://tof.canardpc.com/view/de0ea765-089a-488c-8a7a-3f67e458acc8.jpg') repeat; box-shadow: inset 0 -4px 14px #000; } #front-panel-links .inner-wrapper { position: relative; width: 70%; height: 100%; margin-left: 15%; } #front-panel-links ul { padding: 0; height: 100%; display: inline-block; } #scroller { width: 100%; height: 100%; overflow: hidden; position: relative; } #link-loader { position: absolute; top: calc(50% - 10px); left: calc(50% - 10px); width: 20px; height: 20px; color: #1496BB; line-height: 20px; font-size: 18px; } /******************************************************** Zori specific : Front panel footer ********************************************************/ #front-panel-footer { text-align: center; } #front-panel-footer blockquote { display: inline-block; margin: 0; font-size: 0.8em; line-height: 30px; color: #FFFFFF; cursor: default; } #front-panel-footer blockquote:hover { opacity: 1; } /******************************************************** Zori specific : categories ********************************************************/ .category-block { display: block; width: 8px; overflow: hidden; margin-right: 1px; height: 100%; } .category { box-sizing: border-box; border-radius: 0; padding: 2px; width: 100%; min-height: 10%; position: relative; display: block; cursor: pointer; background: rgb(198,198,198); /* Old browsers */ background: -moz-linear-gradient(top, rgba(198,198,198,1) 50%, rgba(255,255,255,0.2) 51%, rgba(255,255,255,0.2) 75%, rgba(255,255,255,0) 76%, rgba(255,255,255,0) 100%); background: -webkit-linear-gradient(top, rgba(198,198,198,1) 50%, rgba(255,255,255,0.2) 51%, rgba(255,255,255,0.2) 75%, rgba(255,255,255,0) 76%, rgba(255,255,255,0) 100%); background: -o-linear-gradient(top, rgba(198,198,198,1) 50%, rgba(255,255,255,0.2) 51%, rgba(255,255,255,0.2) 75%, rgba(255,255,255,0) 76%, rgba(255,255,255,0) 100%); background: -ms-linear-gradient(top, rgba(198,198,198,1) 50%, rgba(255,255,255,0.2) 51%, rgba(255,255,255,0.2) 75%, rgba(255,255,255,0) 76%, rgba(255,255,255,0) 100%); background: linear-gradient(to bottom, rgba(198,198,198,1) 50%, rgba(255,255,255,0.2) 51%, rgba(255,255,255,0.2) 75%, rgba(255,255,255,0) 76%, rgba(255,255,255,0) 100%); } /******************************************************** Zori specific : Admin ********************************************************/ .admin-panel .link-list { padding-left: 0; list-style-type: none; } .link-list .input-group-addon { padding: 5px; } .link-list .input-group-addon input { width: 30px; border-radius: 3px; } /******************************************************** Zori specific : Elements ********************************************************/ /*.play-button { background: transparent url("../images/logo-header.png") top left no-repeat; background-size: 32px 32px; padding-left: 35px; height: 32px; border: none; width: auto; text-align: left; }*/ .loader { -webkit-animation: cssAnimation 1s infinite linear; -moz-animation: cssAnimation 1s infinite linear; -o-animation: cssAnimation 1s infinite linear; } @-webkit-keyframes cssAnimation { from { -webkit-transform: rotate(0deg) scale(1) skew(1deg) translate(0px); } to { -webkit-transform: rotate(360deg) scale(1) skew(1deg) translate(0px); } } @-moz-keyframes cssAnimation { from { -moz-transform: rotate(0deg) scale(1) skew(1deg) translate(0px); } to { -moz-transform: rotate(360deg) scale(1) skew(1deg) translate(0px); } } @-o-keyframes cssAnimation { from { -o-transform: rotate(0deg) scale(1) skew(1deg) translate(0px); } to { -o-transform: rotate(360deg) scale(1) skew(1deg) translate(0px); } } .opacity-transition { opacity: 0.3; transition: opacity .2s ease-out; -moz-transition: opacity .2s ease-out; -webkit-transition: opacity .2s ease-out; -o-transition: opacity .2s ease-out; } .opacity-transition:hover { opacity: 1; } .loader { -webkit-animation: cssAnimation 1s infinite linear; -moz-animation: cssAnimation 1s infinite linear; -o-animation: cssAnimation 1s infinite linear; } @-webkit-keyframes cssAnimation { from { -webkit-transform: rotate(0deg) scale(1) skew(1deg) translate(0px); } to { -webkit-transform: rotate(360deg) scale(1) skew(1deg) translate(0px); } } @-moz-keyframes cssAnimation { from { -moz-transform: rotate(0deg) scale(1) skew(1deg) translate(0px); } to { -moz-transform: rotate(360deg) scale(1) skew(1deg) translate(0px); } } @-o-keyframes cssAnimation { from { -o-transform: rotate(0deg) scale(1) skew(1deg) translate(0px); } to { -o-transform: rotate(360deg) scale(1) skew(1deg) translate(0px); } } .opacity-transition { opacity: 0.3; transition: opacity .2s ease-out; -moz-transition: opacity .2s ease-out; -webkit-transition: opacity .2s ease-out; -o-transition: opacity .2s ease-out; } .opacity-transition:hover { opacity: 1; } /******************************************************** Zori specific : Tab control ********************************************************/ .main-menu-tab h2 { font-weight: bold; font-size: 1.2em; color: #FE6B1B; margin-bottom: 12px; } .main-menu-tab form label { text-transform: uppercase; font-weight: bolder; font-size: 0.8em; color: #FE6B1B; } .main-menu-tab input[type=submit] { background: white; color: #FE6B1B; font-weight: bold; margin-top: 10px; } .css-form input.ng-invalid.ng-dirty { background-color: #FA787E; } .css-form input.ng-valid.ng-dirty { background-color: #78FA89; } form .required:after { content: "*"; } /******************************************************** Generic tooltip ********************************************************/ .ui-tooltip { position: absolute; display: inline-block; padding: 20px; color: #FFFFFF; background-color: #1496BB; } .ui-tooltip-content { display: inline-block; width: 100%; color: #FFFFFF; text-align: center; } .ui-tooltip .arrow { overflow: hidden; position: absolute; left: 50%; margin-left: -5px; bottom: -8px; width: 0; height: 0; border-style: solid; border-width: 8.7px 5px 0 5px; border-color: #1496BB transparent transparent transparent; -webkit-transform:rotate(360deg); -moz-transform:rotate(360deg); -ms-transform:rotate(360deg); -o-transform:rotate(360deg); transform:rotate(360deg); } /******************************************************** Generic tabs ********************************************************/ .ui-tabs { position: relative; /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ zoom: 1; } .ui-tabs .ui-tabs-nav {} .ui-tabs .ui-tabs-nav li { white-space: nowrap; } .ui-tabs .ui-tabs-nav li a {} .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; } .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ } .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; } .ui-tabs .ui-tabs-hide { display: none !important; }
source/assets/css/main.css
body { position: relative; /*background: url("../images/dark_dotted_@2X.png") repeat; background-size: 5px 5px;*/ background: #333 url('../images/mainarea_back.jpg') repeat; } [ng-cloak] { display: none; } /******************************************************** Generic HTML Elements (p, a, li...) ********************************************************/ html { height: 100%; } body { height: 100%; } h3 { background: rgb(250, 250, 250); background: rgba(250, 250, 250, 0.1); color: white; font-weight: bold; padding: 5px; margin-top: 10px; margin-bottom: 5px; } a, a:visited, a:hover { color: #1496BB; cursor: pointer; } p { color: lightgray; } p.lead { font-size: 14px; } a { text-decoration: none; } label { color: #FE6B1B; } img { margin: 10px; } input[type=submit] { text-transform: uppercase; } .hidden { display: none; } /******************************************************** Zori specific : layout ********************************************************/ #header { position: absolute; } #main-wrapper { height: 100%; } #front-panel { height: 100%; } #toolbar-panel { z-index: 2; width: 100%; height: 30%; } #front-panel-links { z-index: 1; width: 100%; height: 40%; } #front-panel-footer { width: 70%; height: 30%; margin-left: 15%; } /******************************************************** Zori specific : Front panel ********************************************************/ #front-panel { padding: 0; margin: 0; } .zori-form-input { width: 100%; padding: 5px 1em; border: 1px solid rgb(250,250,250); border: 1px solid rgba(250,250,250,0.5); color: #eee; background-color: #333333; background-color: rgba(150, 150, 150, 0.2); margin-bottom: 10px; } .zori-form-input:focus { border: none; outline: 0; background-color: #333333; background-color: rgba(0, 0, 0, 0.4); } .front-panel ::-webkit-input-placeholder { text-align: center; } .front-panel :-moz-placeholder { text-align: center; } .front-panel ::-moz-placeholder { text-align: center; } .front-panel :-ms-input-placeholder { text-align: center; } .front-panel .btn-add-link { position: absolute; top: calc(50% - 15px); width: 20px; height: 30px; border: 0; border-top-left-radius: 0; border-bottom-left-radius: 0; border-top-right-radius: 50%; border-bottom-right-radius: 50%; padding: 6px 0 4px; background: rgb(198,198,198); /* Old browsers */ background: -moz-linear-gradient(top, rgba(198,198,198,1) 50%, rgba(165,165,165,1) 51%); border-top-right-radius: 50%; border-bottom-right-radius: 50%; padding: 6px 0 4px; background: rgb(198,198,198); /* Old browsers */ background: -moz-linear-gradient(top, rgba(198,198,198,1) 50%, rgba(165,165,165,1) 51%); background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,rgba(198,198,198,1)), color-stop(51%,rgba(165,165,165,1))); background: -webkit-linear-gradient(top, rgba(198,198,198,1) 50%,rgba(165,165,165,1) 51%); background: -o-linear-gradient(top, rgba(198,198,198,1) 50%,rgba(165,165,165,1) 51%); background: -ms-linear-gradient(top, rgba(198,198,198,1) 50%,rgba(165,165,165,1) 51%); background: linear-gradient(to bottom, rgba(198,198,198,1) 50%,rgba(165,165,165,1) 51%); } .front-panel .btn-add-link:focus, .front-panel li:focus { outline: none; } .front-panel .btn-add-link:active { background: rgb(133,133,133); } /******************************************************** Zori specific : toolbar-panel ********************************************************/ #toolbar-panel { box-shadow: 0 4px 14px #000; } #toolbar-panel .inner-wrapper { position: relative; width: 70%; height: 100%; margin-left: 15%; } #main-menu { position: absolute; bottom: 0; width: 100%; height: 30px; text-align: center; } #main-menu:hover { opacity: 1; } #main-menu li { display: inline-block; height: 30px; font-size: 18px; } #main-menu .ui-state-active { opacity: 1; } #main-menu .glitz, #main-menu .glitz a{ opacity: 1; color: red; } #main-menu .icon { line-height: 30px; padding: 0 1em; text-decoration: none; color: #FFFFFF; outline: none; } #main-menu .icon:active, #main-menu .ui-state-active .icon { color: #1496BB; } #main-menu span { display: none; } .main-menu-tab { position: absolute; top: 100%; width: 100%; height: 133%; /*background-color: #1496BB;*/ } /******************************************************** Zori specific : Registration modal ********************************************************/ #registration-modal {} /******************************************************** Zori specific : Front panel links ********************************************************/ #front-panel-links { background: #111 url('http://tof.canardpc.com/view/de0ea765-089a-488c-8a7a-3f67e458acc8.jpg') repeat; box-shadow: inset 0 -4px 14px #000; } #front-panel-links .inner-wrapper { position: relative; width: 70%; height: 100%; margin-left: 15%; } #front-panel-links ul { padding: 0; height: 100%; display: inline-block; } #scroller { width: 100%; height: 100%; overflow: hidden; position: relative; } #link-loader { position: absolute; top: calc(50% - 10px); left: calc(50% - 10px); width: 20px; height: 20px; color: #1496BB; line-height: 20px; font-size: 18px; } /******************************************************** Zori specific : Front panel footer ********************************************************/ #front-panel-footer { text-align: center; } #front-panel-footer blockquote { display: inline-block; margin: 0; font-size: 0.8em; line-height: 30px; color: #FFFFFF; cursor: default; } #front-panel-footer blockquote:hover { opacity: 1; } /******************************************************** Zori specific : categories ********************************************************/ .category-block { display: block; width: 8px; overflow: hidden; margin-right: 1px; height: 100%; } .category { box-sizing: border-box; border-radius: 0; padding: 2px; width: 100%; min-height: 10%; position: relative; display: block; cursor: pointer; background: rgb(198,198,198); /* Old browsers */ background: -moz-linear-gradient(top, rgba(198,198,198,1) 50%, rgba(255,255,255,0.2) 51%, rgba(255,255,255,0.2) 75%, rgba(255,255,255,0) 76%, rgba(255,255,255,0) 100%); background: -webkit-linear-gradient(top, rgba(198,198,198,1) 50%, rgba(255,255,255,0.2) 51%, rgba(255,255,255,0.2) 75%, rgba(255,255,255,0) 76%, rgba(255,255,255,0) 100%); background: -o-linear-gradient(top, rgba(198,198,198,1) 50%, rgba(255,255,255,0.2) 51%, rgba(255,255,255,0.2) 75%, rgba(255,255,255,0) 76%, rgba(255,255,255,0) 100%); background: -ms-linear-gradient(top, rgba(198,198,198,1) 50%, rgba(255,255,255,0.2) 51%, rgba(255,255,255,0.2) 75%, rgba(255,255,255,0) 76%, rgba(255,255,255,0) 100%); background: linear-gradient(to bottom, rgba(198,198,198,1) 50%, rgba(255,255,255,0.2) 51%, rgba(255,255,255,0.2) 75%, rgba(255,255,255,0) 76%, rgba(255,255,255,0) 100%); } /******************************************************** Zori specific : Admin ********************************************************/ .admin-panel .link-list { padding-left: 0; list-style-type: none; } .link-list .input-group-addon { padding: 5px; } .link-list .input-group-addon input { width: 30px; border-radius: 3px; } /******************************************************** Zori specific : Elements ********************************************************/ /*.play-button { background: transparent url("../images/logo-header.png") top left no-repeat; background-size: 32px 32px; padding-left: 35px; height: 32px; border: none; width: auto; text-align: left; }*/ .loader { -webkit-animation: cssAnimation 1s infinite linear; -moz-animation: cssAnimation 1s infinite linear; -o-animation: cssAnimation 1s infinite linear; } @-webkit-keyframes cssAnimation { from { -webkit-transform: rotate(0deg) scale(1) skew(1deg) translate(0px); } to { -webkit-transform: rotate(360deg) scale(1) skew(1deg) translate(0px); } } @-moz-keyframes cssAnimation { from { -moz-transform: rotate(0deg) scale(1) skew(1deg) translate(0px); } to { -moz-transform: rotate(360deg) scale(1) skew(1deg) translate(0px); } } @-o-keyframes cssAnimation { from { -o-transform: rotate(0deg) scale(1) skew(1deg) translate(0px); } to { -o-transform: rotate(360deg) scale(1) skew(1deg) translate(0px); } } .opacity-transition { opacity: 0.3; transition: opacity .2s ease-out; -moz-transition: opacity .2s ease-out; -webkit-transition: opacity .2s ease-out; -o-transition: opacity .2s ease-out; } .opacity-transition:hover { opacity: 1; } .loader { -webkit-animation: cssAnimation 1s infinite linear; -moz-animation: cssAnimation 1s infinite linear; -o-animation: cssAnimation 1s infinite linear; } @-webkit-keyframes cssAnimation { from { -webkit-transform: rotate(0deg) scale(1) skew(1deg) translate(0px); } to { -webkit-transform: rotate(360deg) scale(1) skew(1deg) translate(0px); } } @-moz-keyframes cssAnimation { from { -moz-transform: rotate(0deg) scale(1) skew(1deg) translate(0px); } to { -moz-transform: rotate(360deg) scale(1) skew(1deg) translate(0px); } } @-o-keyframes cssAnimation { from { -o-transform: rotate(0deg) scale(1) skew(1deg) translate(0px); } to { -o-transform: rotate(360deg) scale(1) skew(1deg) translate(0px); } } .opacity-transition { opacity: 0.3; transition: opacity .2s ease-out; -moz-transition: opacity .2s ease-out; -webkit-transition: opacity .2s ease-out; -o-transition: opacity .2s ease-out; } .opacity-transition:hover { opacity: 1; } /******************************************************** Zori specific : Tab control ********************************************************/ .main-menu-tab h2 { font-weight: bold; font-size: 1.2em; color: #FE6B1B; margin-bottom: 12px; } .main-menu-tab form label { text-transform: uppercase; font-weight: bolder; font-size: 0.8em; color: #FE6B1B; } .main-menu-tab input[type=submit] { background: white; color: #FE6B1B; font-weight: bold; margin-top: 10px; } .css-form input.ng-invalid.ng-dirty { background-color: #FA787E; } .css-form input.ng-valid.ng-dirty { background-color: #78FA89; } form .required:after { content: "*"; } /******************************************************** Generic tooltip ********************************************************/ .ui-tooltip { position: absolute; display: inline-block; padding: 20px; color: #FFFFFF; background-color: #1496BB; } .ui-tooltip-content { display: inline-block; width: 100%; color: #FFFFFF; text-align: center; } .ui-tooltip .arrow { overflow: hidden; position: absolute; left: 50%; margin-left: -5px; bottom: -8px; width: 0; height: 0; border-style: solid; border-width: 8.7px 5px 0 5px; border-color: #1496BB transparent transparent transparent; -webkit-transform:rotate(360deg); -moz-transform:rotate(360deg); -ms-transform:rotate(360deg); -o-transform:rotate(360deg); transform:rotate(360deg); } /******************************************************** Generic tabs ********************************************************/ .ui-tabs { position: relative; /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ zoom: 1; } .ui-tabs .ui-tabs-nav {} .ui-tabs .ui-tabs-nav li { white-space: nowrap; } .ui-tabs .ui-tabs-nav li a {} .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; } .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ } .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; } .ui-tabs .ui-tabs-hide { display: none !important; }
0.400749
0.092155
๏ปฟ@import url(base.css); @import url(responsive.css); @import url(icons.css); @import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700); #top-line{ width:100%; background:#169fe6; height:5px; display:block } #header{ min-height:130px } .contact-details{ float:right; margin:-1px 0 1px 0; display:block; color:#888; font-size:11px } .top-search{ float:right } .top-search input{ width:180px; font-size:11px; color:#888 } .search-btn{ float:right; position:relative; padding:0; top:0; right:0; margin:1px 0 0 -35px; background:url(images/search.png) center center no-repeat; width:35px; height:32px; cursor:pointer; border:none; z-index:100; box-shadow:none } .search-field{ float:right; position:relative } #logo{ margin-top:10px } #logo a img{ float:left; width:83px; height:100px } #tagline{ color:#888; border-left:1px solid #e8e8e8; margin:26px 0 0 20px; padding:5px 0 5px 20px; float:left; font-size:12px } .social-icons{ margin:23px 0 13px 0; float:right } .social-icons li{ display:inline; list-style:none; text-indent:-9999px; float:left; opacity:.5; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out } .ie8 .social-icons li{ background-color:#fff } .social-icons li a{ display:block; padding-left:11px; height:16px; width:16px } .social-icons li:hover{ opacity:1 } .twitter{ background:url(images/social/twitter.png) no-repeat 50% } .facebook{ background:url(images/social/facebook.png) no-repeat 50%; margin:0 -4px } .dribbble{ background:url(images/social/dribbble.png) no-repeat 50% } .linkedin{ background:url(images/social/linkedin.png) no-repeat 50% } .rss{ background:url(images/social/rss.png) no-repeat 50%; margin:0 -5px 0 0 } .amazon{ background:url(images/social/amazon.png) no-repeat 50% } .blogger{ background:url(images/social/blogger.png) no-repeat 50% } .deviantart{ background:url(images/social/deviantart.png) no-repeat 50% } .digg{ background:url(images/social/digg.png) no-repeat 50% } .flickr{ background:url(images/social/flickr.png) no-repeat 50% } .forrst{ background:url(images/social/forrst.png) no-repeat 50% } .lastfm{ background:url(images/social/lastfm.png) no-repeat 50% } .picasa{ background:url(images/social/picasa.png) no-repeat 50% } .pinterest{ background:url(images/social/pinterest.png) no-repeat 50% } .skype{ background:url(images/social/skype.png) no-repeat 50% } .tumblr{ background:url(images/social/tumblr.png) no-repeat 50% } .vimeo{ background:url(images/social/vimeo.png) no-repeat 50% } .wordpress{ background:url(images/social/wordpress.png) no-repeat 50% } .yahoo{ background:url(images/social/yahoo.png) no-repeat 50% } .youtube{ background:url(images/social/youtube.png) no-repeat 50% } #navigation{ height:49px; width:1040px; margin-left:-10px; background-color:#4c4c4c; float:left; left:1px } .style-2 .left-corner,.style-2 .right-corner{ display:none } .style-2{ width:1020px!important; margin-left:0!important } .style-2 ul li:first-child{ margin-left:1px!important } .js .selectnav{ display:none } .menu i.halflings{ margin:1px 2px 0 -2px } .menu li>div,.menu ul{ visibility:hidden; display:none } .menu li:hover>div,.menu li:hover>ul{ visibility:visible; display:block } .left-corner,.right-corner{ display:block; width:0; height:0; border-style:solid; position:relative; top:49px; float:left; opacity:.58 } .left-corner{ border-color:transparent #888 transparent transparent; border-width:0 9px 9px 0; float:left; left:1px } .right-corner{ border-color:#888 transparent transparent transparent; border-width:9px 9px 0 0; float:right; right:1px } .menu,.menu ul{ margin:0; padding:0; list-style:none } .menu li,.menu ul a{ position:relative } .menu>li{ float:left } .menu>li.floatr{ float:right } .menu li>a{ display:block } .menu ul{ position:absolute; display:none; width:170px } .menu ul ul{ top:0; left:170px } .menu li:hover>ul{ display:block } #navigation ul li:first-child{ margin-left:-8px } #navigation ul li ul li ul li:first-child,#navigation ul li ul li:first-child{ margin-left:0 } #current{ background-color:#169fe6; border-right:1px solid #169fe6; margin-left:-1px; padding-left:21px; z-index:8; position:relative } .menu a{ text-decoration:none } .menu>li>a{ color:#fff; font-weight:400; font-size:13px; line-height:18px; padding:15px 20px 16px 20px } .menu>li:hover>a{ background-color:#707070; border-left:none; padding-left:21px; border-right:1px solid #707070; margin:0 0 0 -1px } ul.menu li a{ -webkit-transition:background-color 80ms ease-in-out; -moz-transition:background-color 80ms ease-in-out; -o-transition:background-color 80ms ease-in-out; -ms-transition:background-color 80ms ease-in-out; transition:background-color 80ms ease-in-out } .menu ul li a{ -webkit-transition:background-color 20ms ease-in-out,color 20ms ease-in-out; -moz-transition:background-color 20ms ease-in-out,color 20ms ease-in-out; -o-transition:background-color 20ms ease-in-out,color 20ms ease-in-out; -ms-transition:background-color 20ms ease-in-out,color 20ms ease-in-out; transition:background-color 20ms ease-in-out,color 20ms ease-in-out } .menu>li>a{ border-right:1px solid #666 } .menu>li>a:hover{ border-right:1px solid #707070; margin:0 0 0 -1px } .menu li>ul>li>a img,.menu>li>a img{ border:0; margin-right:7px } .menu ul{ background-color:#fff; border:1px solid #e0e0e0; border-top:none; left:-1px; z-index:999; border-radius:0 0 2px 2px; -webkit-box-shadow:0 1px 1px rgba(0,0,0,.04); box-shadow:0 1px 1px rgba(0,0,0,.04) } .menu ul a{ color:#777; font-size:12px; line-height:18px; padding:9px 12px; border-top:1px solid #e6e6e6 } .menu ul a:hover{ background-color:#f5f5f5 } .longli a{ width:200px; background:#fff } .menu .cols1,.menu .cols2,.menu .cols3,.menu .cols4,.menu .cols5{ position:absolute; display:none; overflow:auto; z-index:999; background:#fff } .menu .col1,.menu .cols1{ width:160px } .menu .col2,.menu .cols2{ width:320px } .menu .col3,.menu .cols3{ width:530px } .menu .col4,.menu .cols4{ width:640px } .menu .col5,.menu .cols5{ width:800px } .menu>li.floatr>ul.cols1,ul.cols2,ul.cols3,ul.cols4,ul.cols5{ right:0 } .menu>li:hover>ul.cols1,ul.cols2,ul.cols3,ul.cols4,ul.cols5{ display:block } .menu .col1,.menu .col2,.menu .col3,.menu .col4,.menu .col5{ float:left } .menu li>ul.cols1,ul.cols2,ul.cols3,ul.cols4,ul.cols5{ background-color:#fff; border:1px solid #e0e0e0; border-top:none; left:-1px; padding:10px } ul.cols1 a:hover,ul.cols2 a:hover,ul.cols3 a:hover,ul.cols4 a:hover,ul.cols5 a:hover{ background:0 0; border:none } ul.cols1 a,ul.cols2 a,ul.cols3 a,ul.cols4 a,ul.cols5 a{ background:0 0; border:none } ul.cols1 p a,ul.cols2 p a,ul.cols3 p a,ul.cols4 p a,ul.cols5 p a{ padding:0 } .menu h4{ font-size:13px; color:#888; font-weight:400; margin:0 10px 5px; padding-bottom:5px; border-bottom:1px solid #e0e0e0; letter-spacing:0 } .menu h5{ font-size:13px; margin:8px 10px -3px 10px } .menu ol{ list-style:none; margin:7px 10px; padding:0 } .menu ol a{ color:#777; font-size:12px; padding:3px 0; line-height:15px } .menu ol a:hover{ color:#444 } .menu p{ font-size:12px; line-height:18px; margin:9px 10px; padding:0 } .menu p a{ color:#888; text-decoration:underline } .menu p a:hover{ color:#555 } .ls-container{ visibility:hidden; position:relative } .ls-lt-container{ position:absolute } .ls-lt-container,.ls-lt-container *{ text-align:left!important; direction:ltr!important } .ls-container-fullscreen{ margin:0 auto!important; padding:2%!important; background:#000!important; border-radius:0!important; -moz-border-radius:0!important; -webkit-border-radius:0!important; border:none!important } .ls-container-fullscreen .ls-fullscreen,.ls-container-fullscreen .ls-shadow,.ls-container-fullscreen .ls-thumbnail-wrapper{ display:none!important } .ls-overflow-hidden{ overflow:hidden } .ls-inner{ position:relative; background-position:center center; z-index:2 } .ls-loading-container{ position:absolute!important; display:none; z-index:3!important; left:50%!important; top:50%!important } .ls-loading-indicator{ margin:0 auto } .ls-inner,.ls-slide{ width:100%; height:100% } .ls-layer,.ls-slide{ position:absolute; display:none; background-position:center center; overflow:hidden } .ls-active,.ls-animating{ display:block!important } .ls-slide>*{ position:absolute; line-height:normal; margin:0; left:0; top:0 } .ls-slide .ls-bg{ left:0; top:0; transform:none!important; -o-transform:none!important; -ms-transform:none!important; -moz-transform:none!important; -webkit-transform:none!important } .ls-yourlogo{ position:absolute; z-index:99 } .ls-bar-timer{ position:absolute; width:0; height:2px; background:#fff; border-bottom:2px solid #555; opacity:.55; z-index:4; top:0 } .ls-circle-timer{ width:16px; height:16px; position:absolute; right:10px; top:10px; z-index:4; opacity:.65; display:none } .ls-ct-half{ background:#fff } .ls-ct-center{ background:#444 } .ls-ct-left,.ls-ct-right{ width:50%; height:100%; overflow:hidden } .ls-ct-left,.ls-ct-right{ float:left; position:relative } .ls-ct-rotate{ width:200%; height:100%; position:absolute; top:0 } .ls-ct-left .ls-ct-rotate,.ls-ct-right .ls-ct-half,.ls-ct-right .ls-ct-hider{ left:0 } .ls-ct-left .ls-ct-half,.ls-ct-left .ls-ct-hider,.ls-ct-right .ls-ct-rotate{ right:0 } .ls-ct-half,.ls-ct-hider{ position:absolute; top:0 } .ls-ct-hider{ width:50%; height:100%; overflow:hidden } .ls-ct-half{ width:200%; height:100% } .ls-ct-center{ width:50%; height:50%; left:25%; top:25%; position:absolute } .ls-ct-center,.ls-ct-half{ border-radius:100px; -moz-border-radius:100px; -webkit-border-radius:100px } .ls-bottom-nav-wrapper{ height:0 } .ls-bottom-slidebuttons{ text-align:left } .ls-below-thumbnails,.ls-bottom-nav-wrapper{ z-index:2; height:0; position:relative; text-align:center; margin:0 auto } .ls-below-thumbnails{ display:none; z-index:6 } .ls-bottom-nav-wrapper a,.ls-nav-next,.ls-nav-prev{ outline:0 } * .ls-bottom-nav-wrapper *,* .ls-bottom-nav-wrapper span *{ direction:ltr!important } .ls-bottom-slidebuttons{ position:relative; z-index:1000 } .ls-bottom-slidebuttons,.ls-nav-sides,.ls-nav-start,.ls-nav-stop{ position:relative } .ls-nothumb{ text-align:center!important } .ls-link{ position:absolute; width:100%!important; height:100%!important; left:0!important; top:0!important; background-image:url(blank.gif) } .ls-slide>a>*{ background-image:url(blank.gif) } .ls-vpcontainer{ width:100%; height:100%; position:absolute; left:0; top:0 } .ls-videopreview{ width:100%; height:100%; position:absolute; left:0; top:0; cursor:pointer } .ls-playvideo{ position:absolute; left:50%; top:50%; cursor:pointer } .ls-tn{ display:none!important } .ls-thumbnail-hover{ display:none; position:absolute; left:0 } .ls-thumbnail-hover-inner{ width:100%; height:100%; position:absolute; left:0; top:0; display:none } .ls-thumbnail-hover-bg{ position:absolute; width:100%; height:100%; left:0; top:0 } .ls-thumbnail-hover-img{ position:absolute; overflow:hidden } .ls-thumbnail-hover img{ max-width:none!important; position:absolute; display:inline-block; visibility:visible!important; left:50%; top:0 } .ls-thumbnail-hover span{ left:50%; top:100%; width:0; height:0; display:block; position:absolute; border-left-color:transparent!important; border-right-color:transparent!important; border-bottom-color:transparent!important } .ls-thumbnail-wrapper{ position:relative; width:100%; margin:0 auto; z-index:4 } .ls-thumbnail{ position:relative; margin:0 auto } .ls-thumbnail-inner,.ls-thumbnail-slide-container{ width:100% } .ls-thumbnail-slide-container{ overflow:hidden!important; position:relative } .ls-touchscroll{ overflow-x:auto!important } .ls-thumbnail-slide{ text-align:center; white-space:nowrap; float:left; position:relative } .ls-thumbnail-slide a{ overflow:hidden; display:inline-block; width:0; height:0; position:relative } .ls-thumbnail-slide img{ max-width:none!important; max-height:100%!important; height:100%; visibility:visible!important } .ls-shadow{ display:none; position:absolute; z-index:1; top:100%; width:100%; left:0; overflow:hidden!important; visibility:hidden } .ls-shadow img{ width:100%!important; height:auto!important; position:absolute!important; left:0!important; bottom:0!important } .ls-bottom-nav-wrapper,.ls-nav-next,.ls-nav-prev,.ls-thumbnail-wrapper{ visibility:hidden } .ls-wp-fullwidth-container{ width:100%; position:relative } .ls-wp-fullwidth-helper{ position:absolute } .ls-overflow-hidden{ overflow:hidden } .ls-lt-tile{ position:relative; float:left; perspective:1000px; -o-perspective:1000px; -ms-perspective:1000px; -moz-perspective:1000px; -webkit-perspective:1000px } .ls-lt-tile img{ visibility:visible; display:inline-block } .ls-curtiles{ overflow:hidden } .ls-curtiles,.ls-nexttiles{ position:absolute; width:100%; height:100%; left:0; top:0 } .ls-curtile,.ls-nexttile{ overflow:hidden; position:absolute; width:100%!important; height:100%!important; backface-visibility:hidden; -o-backface-visibility:hidden; -ms-backface-visibility:hidden; -moz-backface-visibility:hidden; -webkit-backface-visibility:hidden } .ls-curtile{ left:0; top:0 } .ls-curtile img,.ls-nexttile img{ position:absolute; filter:inherit } .ls-3d-container{ position:relative; overflow:visible!important } .ls-3d-box{ position:absolute; top:50%; left:50%; transform-style:preserve-3d; -o-transform-style:preserve-3d; -ms-transform-style:preserve-3d; -moz-transform-style:preserve-3d; -webkit-transform-style:preserve-3d } .ls-3d-box div{ overflow:hidden; background:#777; margin:0; padding:0; position:absolute } .ls-fullscreen{ position:absolute; z-index:10; cursor:pointer; display:block } #ls-global * .ls-bottom-nav-wrapper a,#ls-global * .ls-container .ls-fullscreen,#ls-global * .ls-container img,#ls-global * .ls-nav-next,#ls-global * .ls-nav-prev,#ls-global * .ls-thumbnail a,body * .ls-bottom-nav-wrapper a,body * .ls-container .ls-fullscreen,body * .ls-container img,body * .ls-nav-next,body * .ls-nav-prev,body * .ls-thumbnail a,html * .ls-bottom-nav-wrapper a,html * .ls-container .ls-fullscreen,html * .ls-container img,html * .ls-nav-next,html * .ls-nav-prev,html * .ls-thumbnail a{ transition:none; -o-transition:none; -ms-transition:none; -moz-transition:none; -webkit-transition:none; line-height:normal; outline:0; padding:0; border:0 } #ls-global * .ls-slide>*,#ls-global * .ls-slide>a,#ls-global * .ls-slide>div,#ls-global * .ls-slide>h1,#ls-global * .ls-slide>h2,#ls-global * .ls-slide>h3,#ls-global * .ls-slide>h4,#ls-global * .ls-slide>h5,#ls-global * .ls-slide>p,#ls-global * .ls-slide>span,body * .ls-slide>*,body * .ls-slide>a,body * .ls-slide>div,body * .ls-slide>h1,body * .ls-slide>h2,body * .ls-slide>h3,body * .ls-slide>h4,body * .ls-slide>h5,body * .ls-slide>p,body * .ls-slide>span,html * .ls-slide>*,html * .ls-slide>a,html * .ls-slide>div,html * .ls-slide>h1,html * .ls-slide>h2,html * .ls-slide>h3,html * .ls-slide>h4,html * .ls-slide>h5,html * .ls-slide>p,html * .ls-slide>span{ transition:none; -o-transition:none; -ms-transition:none; -moz-transition:none; -webkit-transition:none } #ls-global * .ls-slide>*,body * .ls-slide>*,html * .ls-slide>*{ margin:0 } #ls-global * .ls-container img,body * .ls-container img,html * .ls-container img{ background:0 0!important; min-width:0!important; max-width:none!important; border-radius:0; box-shadow:none; border:0; padding:0 } #ls-global * .ls-wp-container .ls-slide>*,body * .ls-wp-container .ls-slide>*,html * .ls-wp-container .ls-slide>*{ line-height:normal; outline:0; padding:0; margin:0; border:0 } #ls-global * .ls-wp-container .ls-slide>a>*,body * .ls-wp-container .ls-slide>a>*,html * .ls-wp-container .ls-slide>a>*{ margin:0 } #ls-global * .ls-wp-container .ls-slide>a,body * .ls-wp-container .ls-slide>a,html * .ls-wp-container .ls-slide>a{ text-decoration:none } .ls-container,.ls-container *,.ls-wp-fullwidth-container,.ls-wp-fullwidth-helper{ box-sizing:content-box!important; -moz-box-sizing:content-box!important; -webkit-box-sizing:content-box!important } #ls-global * .ls-yourlogo,body * .ls-yourlogo,html * .ls-yourlogo{ margin:0 } #ls-global * .ls-tn,body * .ls-tn,html * .ls-tn{ display:none } .site{ overflow:visible!important } .ls-debug-console *{ margin:0!important; padding:0!important; border:0!important; color:#fff!important; text-shadow:none!important; font-family:HelveticaNeue-Light,"Helvetica Neue Light",Helvetica,Arial,sans-serif!important; line-height:normal!important; -webkit-font-smoothing:antialiased!important; text-align:left!important; font-style:normal!important } .ls-debug-console h1{ padding-top:10px!important; font-size:17px!important; font-weight:700!important } .ls-debug-console h1:first-child{ padding-top:0!important } .ls-debug-console ul{ padding-top:10px!important; list-style:none!important } .ls-debug-console li{ margin-left:10px!important; font-size:13px!important; position:relative!important; font-weight:400!important } #ls-global * .ls-debug-console li ul,body * .ls-debug-console li ul,html * .ls-debug-console li ul{ display:none; width:260px; left:-10px } .ls-debug-console li ul{ position:absolute!important; bottom:100%!important; padding:10px 10px 10px 0!important; background:#fff!important; border-radius:10px!important; box-shadow:0 0 20px #000!important } #ls-global * .ls-debug-console li:hover ul,body * .ls-debug-console li:hover ul,html * .ls-debug-console li:hover ul{ display:block } .ls-debug-console li ul *{ color:#000!important } .ls-debug-console a{ text-decoration:none!important; border-bottom:1px dotted #fff!important } .ls-error{ border-radius:5px!important; -moz-border-radius:5px!important; -wenkit-border-radius:5px!important; background:#fff!important; height:auto!important; width:auto!important; color:#fff!important; padding:20px 40px 30px 80px!important; position:relative!important; box-shadow:0 2px 20px -5px #000 } .ls-error p{ line-height:normal!important; text-shadow:none!important; margin:0!important; padding:0!important; border:0!important; text-align:justify!important; font-family:Arial,sans-serif!important } .ls-error .ls-error-title{ line-height:40px!important; color:red!important; font-weight:700!important; font-size:16px!important } .ls-error .ls-error-text{ color:#555!important; font-weight:400!important; font-size:13px!important } .ls-error .ls-exclam{ width:40px!important; height:40px!important; position:absolute!important; left:20px!important; top:20px!important; border-radius:50px!important; -moz-border-radius:50px!important; -webkit-border-radius:50px!important; font-size:30px!important; font-weight:700!important; color:#fff!important; line-height:40px!important; background:red!important; text-align:center!important } #ls-global * .ls-container .ls-3d-container,#ls-global * .ls-container .ls-bottom-nav-wrapper,#ls-global * .ls-container .ls-fullscreen,#ls-global * .ls-container .ls-lt-container,#ls-global * .ls-container .ls-lt-container *,#ls-global * .ls-container .ls-shadow,#ls-global * .ls-container .ls-slide>*,#ls-global * .ls-container .ls-thumbnail-wrapper,.ls-gpuhack,body * .ls-container .ls-3d-container,body * .ls-container .ls-bottom-nav-wrapper,body * .ls-container .ls-fullscreen,body * .ls-container .ls-lt-container,body * .ls-container .ls-lt-container *,body * .ls-container .ls-shadow,body * .ls-container .ls-slide>*,body * .ls-container .ls-thumbnail-wrapper,html * .ls-container .ls-3d-container,html * .ls-container .ls-bottom-nav-wrapper,html * .ls-container .ls-fullscreen,html * .ls-container .ls-lt-container,html * .ls-container .ls-lt-container *,html * .ls-container .ls-shadow,html * .ls-container .ls-slide>*,html * .ls-container .ls-thumbnail-wrapper{ transform:translate3d(0,0,0); -o-transform:translate3d(0,0,0); -ms-transform:translate3d(0,0,0); -moz-transform:translate3d(0,0,0); -webkit-transform:translate3d(0,0,0) } .ls-videohack{ transform:none!important; -o-transform:none!important; -ms-transform:none!important; -moz-transform:none!important; -webkit-transform:none!important; transform-origin:none!important; -o-transform-origin:none!important; -ms-transform-origin:none!important; -moz-transform-origin:none!important; -webkit-transform-origin:none!important } .ls-oldiepnghack{ filter:none!important } .ls-gpuhack{ width:100%!important; height:100%!important; left:0!important; top:0!important } #ls-global * .ls-container .ls-webkit-hack,body * .ls-container .ls-webkit-hack,html * .ls-container .ls-webkit-hack{ width:100%; height:100%; position:absolute; left:0; top:0; z-index:1 } @media (transform-3d),(-o-transform-3d),(-ms-transform-3d),(-moz-transform-3d),(-webkit-transform-3d){ #ls-test3d{ position:absolute; left:9px; height:3px } } .ls-forcehide{ display:none!important } #layerslider-container{ background:url(images/layerslider-loader.gif) no-repeat center } .ls-nav-next,.ls-nav-prev,.ls-playvideo,.ls-playvideo:hover{ -webkit-transition:background-color .2s ease-in-out; -moz-transition:background-color .2s ease-in-out; -o-transition:background-color .2s ease-in-out; -ms-transition:background-color .2s ease-in-out; transition:background-color .2s ease-in-out } .ls-nav-next,.ls-nav-prev{ width:39px; height:71px; margin-top:-36px; display:block; position:absolute; z-index:100; cursor:pointer; text-indent:-9999px; top:50% } .ls-nav-prev{ background:url(images/slider-left.png) no-repeat 50%; background-color:#4c4c4c; left:0; border-radius:0 2px 2px 0 } .ls-nav-next{ background:url(images/slider-right.png) no-repeat 50%; background-color:#4c4c4c; right:0; border-radius:2px 0 0 2px } .ls-nav-next:hover,.ls-nav-prev:hover{ background-color:#169fe6 } .ls-playvideo{ width:50px; height:50px; display:block; margin-left:-25px; margin-top:-25px; background:url(images/layerslider-video.png) no-repeat 50%; opacity:.8 } .ls-playvideo:hover{ opacity:1 } .caption-color,.caption-gray,.caption-transparent{ padding:18px 22px; color:#fff; font-size:14px; font-weight:600; border-radius:2px; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1) } .caption-gray{ background:#4c4c4c } .caption-color{ background:#169fe6 } .caption-transparent{ background-color:#4c4c4c; background:rgba(0,0,0,.4) } .flex-container a:active,.flex-container a:focus,.flexslider a:active,.flexslider a:focus{ outline:0 } .flex-control-nav,.flex-direction-nav,.slides{ margin:0; padding:0; list-style:none } .flexslider{ margin:0; padding:0; z-index:1; position:relative } .flexslider .slides>li{ display:none } .flexslider .slides>li:first-child{ display:block } .flexslider .slides img{ width:100%; display:block } .flex-pauseplay span{ text-transform:capitalize } .slides:after{ content:"."; display:block; clear:both; visibility:hidden; line-height:0; height:0 } html[xmlns] .slides{ display:block } * html .slides{ height:1% } .no-js .slides>li:first-child{ display:block } .flexslider{ margin:0 0 0; border:none; position:relative; zoom:1 } .flexslider.home{ margin:0 } .flex-viewport{ max-height:2000px; -webkit-transition:all 1s ease; -moz-transition:all 1s ease; transition:all 1s ease } .loading .flex-viewport{ max-height:300px } .flexslider .slides{ zoom:1 } .carousel li{ margin-right:5px } .flex-direction-nav .flex-next{ background:url(images/slider-right.png) no-repeat 50%; background-color:#4c4c4c; right:0; border-radius:2px 0 0 2px } .flex-direction-nav .flex-prev{ background:url(images/slider-left.png) no-repeat 50%; background-color:#4c4c4c; left:0; border-radius:0 2px 2px 0 } .flex-direction-nav a{ width:39px; height:71px; margin-top:-36px; display:block; position:absolute; z-index:100; cursor:pointer; text-indent:-9999px; top:50%; opacity:1; -webkit-transition:opacity .2s ease-in-out,background-color .2s ease-in-out; -moz-transition:opacity .2s ease-in-out,background-color .2s ease-in-out; -o-transition:opacity .2s ease-in-out,background-color .2s ease-in-out; -ms-transition:opacity .2s ease-in-out,background-color .2s ease-in-out; transition:opacity .2s ease-in-out,background-color .2s ease-in-out } .flexslider.home:hover .flex-next,.flexslider.home:hover .flex-prev{ opacity:1 } .home .flex-direction-nav a{ opacity:0 } .flexslider .flex-next:hover,.flexslider .flex-prev:hover{ background-color:#169fe6 } .flex-control-nav{ width:100%; position:absolute; bottom:-40px; text-align:center } .flex-control-nav li{ margin:0 6px; display:inline-block; zoom:1 } .flex-control-paging li a{ width:14px; height:14px; display:block; background:#666; background:rgba(0,0,0,.5); cursor:pointer; text-indent:-9999px; -webkit-border-radius:20px; -moz-border-radius:20px; -o-border-radius:20px; border-radius:20px; box-shadow:inset 0 0 3px rgba(0,0,0,.3) } .flex-control-paging li a:hover{ background:#333; background:rgba(0,0,0,.7) } .flex-control-paging li a.flex-active{ background:#000; background:rgba(0,0,0,.9); cursor:default } .flex-control-thumbs{ margin:5px 0 0; position:static; overflow:hidden } .flex-control-thumbs li{ width:25%; float:left; margin:0 } .flex-control-thumbs img{ width:100%; display:block; opacity:.7; cursor:pointer } .flex-control-thumbs img:hover{ opacity:1 } .flex-control-thumbs .flex-active{ opacity:1; cursor:default } .slide-caption{ width:282px; padding:28px; margin:0; position:absolute; display:block; left:0; bottom:0; background-color:#222; background:rgba(0,0,0,.45) } .slide-caption h3{ color:#fff; padding-bottom:10px; margin:0; line-height:22px } .slide-caption p{ margin:0; line-height:19px; color:#bbb } .icon-box-container{ margin:40px 0 45px 0; float:left } .icon-box-container p{ margin:0 } .icon-box h3,.icon-box p{ margin-left:45px } .icon-box i{ float:left; font-size:28px; margin:8px 0 0 0; color:#404040 } .arl,.arr{ margin-top:20px; float:left; width:24px; height:24px; display:block; background-color:#eee; cursor:default; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.05); margin-right:1px } .arl i,.arr i{ margin:3px 0 0 9px; font-size:9px; color:#c8c8c8 } .arl{ border-radius:2px 0 0 2px } .arr{ border-radius:0 2px 2px 0 } .arl.active i,.arr.active i{ color:#fff } .arl.active,.arr.active{ background-color:#ccc; cursor:pointer; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.07) } .arl.active:hover,.arr.active:hover{ background-color:#169fe6; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1) } .carousel-navi{ margin:-10px 0 40px 0; float:left } .jcarousel{ position:relative; overflow:hidden } .jcarousel ul{ width:20000em; position:absolute; list-style:none; margin:0; padding:0 } .entire{ margin:30px 0 0 0 } .entire h3{ margin:0 0 8px 0 } .entire p{ margin:0 0 9px 0; color:#888 } .entire a{ color:#555 } .entire a:hover{ color:#888 } .item-description{ padding:14px 0 19px 0; background:#fff; border-radius:0 0 2px 2px; border-top:5px solid #e5e5e5; text-align:center; -webkit-transition:all 180ms ease-in-out; -moz-transition:all 180ms ease-in-out; -o-transition:all 180ms ease-in-out; -ms-transition:all 180ms ease-in-out; transition:all 180ms ease-in-out; -webkit-box-shadow:0 1px 1px rgba(0,0,0,.12),0 0 1px rgba(0,0,0,.1); box-shadow:0 1px 1px rgba(0,0,0,.12),0 0 1px rgba(0,0,0,.1) } .ie8 .item-description{ border-bottom:1px solid #e8e8e8 } .portfolio-item img{ -webkit-transition:opacity 180ms ease-in-out; -moz-transition:opacity 180ms ease-in-out; -o-transition:opacity 180ms ease-in-out; -ms-transition:opacity 180ms ease-in-out; transition:opacity 180ms ease-in-out } .portfolio-item:hover img{ opacity:.7 } .item-description h5{ margin-bottom:-3px; font-size:13px; font-weight:600 } .item-description span{ color:#888; font-size:13px; font-weight:300 } .portfolio-item{ margin:40px 0; display:block; background-color:#fff } .portfolio-item:hover>figure>.item-description{ -webkit-box-shadow:0 1px 1px rgba(0,0,0,.2),0 0 1px rgba(0,0,0,.1); box-shadow:0 1px 1px rgba(0,0,0,.2),0 0 1px rgba(0,0,0,.1); border-top:5px solid #169fe6 } .recent-blog{ margin-bottom:38px } .recent-blog h4{ line-height:21px; margin-bottom:10px } .recent-blog h4 a{ color:#333 } .recent-blog h4 a:hover{ color:#888 } .recent-blog p{ margin-top:7px; margin-bottom:0 } .margin-1{ margin:28px 0 22px 0 } .entry,.recent-blog h4,.recent-blog p{ margin-left:60px } .date{ float:left; text-align:center; height:0 } .date span{ display:block } .day{ background:#f2f2f2; padding:10px; font-size:16px; font-weight:500; color:#999; border-radius:2px 2px 0 0 } .month{ background:#ccc; padding:0 10px 2px 10px; color:#fff; border-radius:0 0 2px 2px; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.07) } .margin-reset{ margin-top:-10px } .sidebar.padding-reset{ padding-top:0 } .glyphicons{ margin:15px 0 0 0 } .glyphicons li{ margin:0 0 2px 1px } .glyphicons li i{ float:left; margin:0 5px 0 0 } .the-icons{ margin:18px 0 20px 0 } .the-icons li i{ font-size:22px; color:#555; float:left; margin:0 3px 0 0 } ul.the-icons li{ margin:0 0 14px 0 } #not-found{ margin:50px 0 75px 0 } #not-found h2{ text-align:center; font-size:210px; line-height:210px; font-weight:400; letter-spacing:-5px } #not-found p{ text-align:center; font-size:28px; line-height:36px } #not-found i{ color:#ddd; font-size:200px } .dropcap{ float:left; color:#169fe6; font-size:58px; line-height:54px; padding-top:4px; padding-right:10px; margin-top:-2px } .dropcap.gray{ color:#555 } .highlight.color,.highlight.gray,.highlight.light{ padding:2px 6px; color:#fff; border-radius:2px } .highlight.color{ background:#169fe6 } .highlight.gray{ background:#4c4c4c } .highlight.light{ background:#aaa } blockquote{ border-left:3px solid #e8e8e8; padding-left:20px; color:#888; line-height:20px; margin:5px 0 20px 15px } .skill-bar{ height:41px; position:relative; background:#f6f6f6; margin:0 0 10px 0; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.05) } .skill-bar-content[data-percentage]{ text-indent:-9999px } .skill-bar-content{ background:#169fe6; height:41px; width:0%; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.12) } .skill-bar .skill-title{ color:#fff; top:9px; left:15px; position:absolute } .skill-bar .percentage{ color:#666; position:absolute; top:9px; left:90% } .client-list li{ border:1px solid #e0e0e0; float:left; margin:-1px 0 0 -1px; -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03) } .team-name{ padding:20px 0 12px 0 } .team-name h5{ line-height:16px; font-size:13px } .team-name span{ display:block; font-weight:400; color:#888 } .team-about p{ margin-bottom:0 } .team-entry{ display:block; position:relative } .page-title{ -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03); border-bottom:1px solid #e0e0e0 } .page-title h2{ font-weight:400; padding:30px 0; float:left } #breadcrumbs ul{ float:right; padding:34px 0; font-size:12px } #breadcrumbs ul li{ display:inline-block; color:#888; padding:0 11px 0 0; margin:0 0 0 5px; background:url(images/breadcrumbs.png) no-repeat 100% 50% } #breadcrumbs ul li a,#breadcrumbs ul li:last-child a{ color:#169fe6 } #breadcrumbs ul li:first-child{ padding-right:0; margin-left:0 } #breadcrumbs ul li:first-child,#breadcrumbs ul li:last-child{ color:#888; background:0 0 } #breadcrumbs ul li:last-child{ padding:0; background:0 0 } .floated.sidebar.right{ background:#fcfcfc; margin-left:-1px; border-left:1px solid #e0e0e0; -webkit-box-shadow:inset 2px 0 0 0 rgba(0,0,0,.03),inset 0 2px 0 0 rgba(0,0,0,.03); box-shadow:inset 2px 0 0 0 rgba(0,0,0,.03),inset 0 2px 0 0 rgba(0,0,0,.03) } .floated.sidebar.left{ background:#fcfcfc; margin-right:-1px; border-right:1px solid #e0e0e0; -webkit-box-shadow:inset -2px 0 0 0 rgba(0,0,0,.03),inset 0 2px 0 0 rgba(0,0,0,.03); box-shadow:inset -2px 0 0 0 rgba(0,0,0,.03),inset 0 2px 0 0 rgba(0,0,0,.03) } .page-content,.sidebar{ padding:40px 0 } h4.margin{ margin:0 0 10px 0 } h3.margin{ margin:0 0 10px 0 } p.margin{ margin:0 0 25px 0 } .line{ height:1px; width:100%; margin:0 0 0 -40px; padding:0 80px 0 0; border-bottom:1px solid #e0e0e0; -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03) } .widget-search{ float:left } .ie8 .top-search,.ie8 .widget-search{ float:none } .widget-search input{ width:200px; color:#888 } .search-btn-widget{ float:right; position:relative; padding:0; top:0; right:0; margin:0 0 0 -35px; background:url(images/search-2.png) 50% no-repeat; background-color:#169fe6; width:35px; height:36px; cursor:pointer; border:none; z-index:100; border-radius:0 2px 2px 0; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.15); -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out } .search-btn-widget:hover{ background-color:#aaa; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1) } .categories a{ color:#666; display:block; padding:3px 0; padding-left:12px; background:url(images/categories.png) no-repeat left 7px } .categories li a:hover{ color:#888 } .categories li:first-child a{ margin:-6px 0 0 0 } .categories li span{ color:#aaa } .widget{ margin:30px 0 0 0 } .widget h4{ margin:0 0 12px 0 } .tags a{ padding:3px 10px 5px 10px; display:inline-block; color:#888; background-color:#f2f2f2; margin:0 2px 6px 0; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.05); border-radius:2px } .tags a:last-child{ margin-right:0 } .tags a:hover{ background:#169fe6; color:#fff; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.15) } .latest-post-blog{ margin-bottom:18px } .latest-post-blog p{ margin:0; color:#666; line-height:19px; margin-left:75px } .latest-post-blog p a{ color:#666; display:block } .latest-post-blog p a:hover{ color:#888 } .latest-post-blog p span{ color:#888; margin:5px 0 0 0; display:block } .latest-post-blog img{ float:left; width:56px; height:56px; border:1px solid #e0e0e0; padding:4px; -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03); -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out } .latest-post-blog img:hover{ background:#169fe6; border:1px solid #169fe6 } #twitter-blog li{ line-height:20px; margin:0 0 15px 0; padding:0 0 0 25px; background:url(images/twitter-01.png) no-repeat left 5% } #twitter-blog li:last-child{ margin:0 } #twitter-blog b a,#twitter-blog b a:hover{ color:#888; font-weight:400 } .flickr-widget-blog{ margin-right:-15px } .flickr-widget-blog img{ display:block; width:100% } .flickr-widget-blog a{ float:left; width:57px; height:57px; margin-right:10px; margin-bottom:10px; border:5px solid #e8e8e8; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out; border-radius:2px } .flickr-widget-blog a:hover{ border:5px solid #169fe6; border-radius:2px } .google-map-container{ margin:-4px 0 30px 0 } .google-map-container img{ max-width:none!important } #googlemaps{ height:30vh; display:block; padding-bottom:0!important } /*! fancyBox v2.1.3 fancyapps.com | fancyapps.com/fancybox/#license */ .fancybox-image,.fancybox-inner,.fancybox-nav,.fancybox-nav span,.fancybox-outer,.fancybox-skin,.fancybox-tmp,.fancybox-wrap,.fancybox-wrap iframe,.fancybox-wrap object{ padding:0; margin:0; border:0; outline:0; vertical-align:top } .fancybox-wrap{ position:absolute; top:0; left:0; z-index:8020 } .fancybox-skin{ position:relative; background:#f9f9f9; color:#444; text-shadow:none; -webkit-border-radius:4px; -moz-border-radius:4px; border-radius:4px } .fancybox-opened{ z-index:8030 } .fancybox-opened .fancybox-skin{ -webkit-box-shadow:0 10px 25px rgba(0,0,0,.5); -moz-box-shadow:0 10px 25px rgba(0,0,0,.5); box-shadow:0 10px 25px rgba(0,0,0,.5) } .fancybox-inner,.fancybox-outer{ position:relative } .fancybox-inner{ overflow:hidden } .fancybox-type-iframe .fancybox-inner{ -webkit-overflow-scrolling:touch } .fancybox-error{ color:#444; font:14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif; margin:0; padding:15px; white-space:nowrap } .fancybox-iframe,.fancybox-image{ display:block; width:100%; height:100% } .fancybox-image{ max-width:100%; max-height:100% } #fancybox-loading,.fancybox-close,.fancybox-next span,.fancybox-prev span{ background-image:url(images/fancybox_sprite.png) } #fancybox-loading{ position:fixed; top:50%; left:50%; margin-top:-22px; margin-left:-22px; background-position:0 -108px; opacity:.8; cursor:pointer; z-index:8060 } #fancybox-loading div{ width:44px; height:44px; background:url(images/fancybox_loading.gif) center center no-repeat } .fancybox-close{ position:absolute; top:-18px; right:-18px; width:36px; height:36px; cursor:pointer; z-index:8040 } .fancybox-nav{ position:absolute; top:0; width:40%; height:100%; cursor:pointer; text-decoration:none; background:transparent url(images/blank.gif); -webkit-tap-highlight-color:transparent; z-index:8040 } .fancybox-prev{ left:0 } .fancybox-next{ right:0 } .fancybox-nav span{ position:absolute; top:50%; width:36px; height:34px; margin-top:-18px; cursor:pointer; z-index:8040; visibility:hidden } .fancybox-prev span{ left:10px; background-position:0 -36px } .fancybox-next span{ right:10px; background-position:0 -72px } .fancybox-nav:hover span{ visibility:visible } .fancybox-tmp{ position:absolute; top:-99999px; left:-99999px; visibility:hidden; max-width:99999px; max-height:99999px; overflow:visible!important } .fancybox-lock{ overflow:hidden } .ie8 .fancybox-overlay{ background:url(images/fancybox_overlay.png)!important } .fancybox-overlay{ position:absolute; top:0; left:0; overflow:hidden; display:none; z-index:8010; background:url(images/fancybox_overlay.png) } .fancybox-overlay-fixed{ position:fixed; bottom:0; right:0 } .fancybox-lock .fancybox-overlay{ overflow:auto; overflow-y:scroll } .fancybox-title{ visibility:hidden; font:normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif; position:relative; text-shadow:none; z-index:8050 } .fancybox-opened .fancybox-title{ visibility:visible } .fancybox-title-float-wrap{ position:absolute; bottom:0; right:50%; margin-bottom:-35px; z-index:8050; text-align:center } .fancybox-title-float-wrap .child{ display:inline-block; margin-right:-100%; padding:2px 20px; background:0 0; background:rgba(0,0,0,.8); -webkit-border-radius:15px; -moz-border-radius:15px; border-radius:15px; text-shadow:0 1px 2px #222; color:#fff; font-weight:600; line-height:24px; white-space:nowrap } .fancybox-title-outside-wrap{ position:relative; margin-top:10px; color:#fff } .fancybox-title-inside-wrap{ padding-top:10px } .fancybox-title-over-wrap{ position:absolute; bottom:0; left:0; color:#fff; padding:10px; background:#000; background:rgba(0,0,0,.8) } #fancybox-buttons{ position:fixed; left:0; width:100%; z-index:8050 } #fancybox-buttons.top{ top:10px } #fancybox-buttons.bottom{ bottom:10px } #fancybox-buttons ul{ display:block; width:166px; height:30px; margin:0 auto; padding:0; list-style:none; border:1px solid #111; border-radius:3px; -webkit-box-shadow:inset 0 0 0 1px rgba(255,255,255,.05); -moz-box-shadow:inset 0 0 0 1px rgba(255,255,255,.05); box-shadow:inset 0 0 0 1px rgba(255,255,255,.05); background:#323232; background:-moz-linear-gradient(top,#444 0,#343434 50%,#292929 50%,#333 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#444),color-stop(50%,#343434),color-stop(50%,#292929),color-stop(100%,#333)); background:-webkit-linear-gradient(top,#444 0,#343434 50%,#292929 50%,#333 100%); background:-o-linear-gradient(top,#444 0,#343434 50%,#292929 50%,#333 100%); background:-ms-linear-gradient(top,#444 0,#343434 50%,#292929 50%,#333 100%); background:linear-gradient(top,#444 0,#343434 50%,#292929 50%,#333 100%) } #fancybox-buttons ul li{ float:left; margin:0; padding:0 } #fancybox-buttons a{ display:block; width:30px; height:30px; text-indent:-9999px; background-image:url(images/fancybox_buttons.png); background-repeat:no-repeat; outline:0; opacity:.8 } #fancybox-buttons a:hover{ opacity:1 } #fancybox-buttons a.btnPrev{ background-position:5px 0 } #fancybox-buttons a.btnNext{ background-position:-33px 0; border-right:1px solid #3e3e3e } #fancybox-buttons a.btnPlay{ background-position:0 -30px } #fancybox-buttons a.btnPlayOn{ background-position:-30px -30px } #fancybox-buttons a.btnToggle{ background-position:3px -60px; border-left:1px solid #111; border-right:1px solid #3e3e3e; width:35px } #fancybox-buttons a.btnToggleOn{ background-position:-27px -60px } #fancybox-buttons a.btnClose{ border-left:1px solid #111; width:35px; background-position:-56px 0 } #fancybox-buttons a.btnDisabled{ opacity:.4; cursor:default } .comments-sec{ float:left; width:100%; margin:30px 0 25px 0 } ol.commentlist{ float:left; width:100%; margin:0 } ol.commentlist li{ float:left; padding:10px 0 15px 0 } ol.commentlist li:first-child{ border:none; padding:25px 0 0 0 } ol.commentlist li{ list-style:none } ol li ol.childlist{ float:right; width:86%; margin:0 } ol.commentlist li ol.childlist li:first-child{ padding:25px 0 0 0 } ol.commentlist li ol.childlist li{ margin:0 0 15px 0 } .comments-amount{ color:#888 } ol li ol.childlist .comment-des{ float:left; width:78% } .avatar{ float:left } .avatar img{ float:left; border-radius:2px } .comment-des p{ margin:0 } .comment-des{ float:left; margin:-60px 0 0 81px; width:81%; background:#f6f6f6; color:#888; border-radius:2px; -webkit-box-shadow:: inset 0 -1px 0 0 rgba(0,0,0,.06); box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.06); padding:17px 20px 20px 20px } .arrow-comment{ width:10px; height:20px; position:relative; float:left; background:url(images/comment-arrow.png) no-repeat; margin-left:-30px } .comment-des strong{ float:left; padding-right:5px; font-size:13px } .comment-des span{ float:left; color:#888 } .comment-by{ float:left; width:100%; padding-bottom:8px; padding-top:5px } .comment-by span.reply{ color:#888; float:right; display:inline } .comment-by span.reply a{ float:right; height:17px; margin-left:5px; font-weight:400; float:right } .comment-by span.date{ color:#999; padding-right:7px; float:right } .portfolio-item.isotope{ margin:10px 0 } #filters{ display:block; margin:10px 0 24px -1px } #filters a{ color:#888; display:block; padding:4px 0 } #filters a:hover{ color:#666 } .selected{ color:#169fe6!important } .filters-dropdown{ position:relative; z-index:9; width:200px; height:20px; cursor:pointer; padding:6px 12px 8px 12px; display:inline-block; color:#888; background-color:#eee; margin:0 3px 6px 0; -webkit-transition:background-color .2s ease-out; -moz-transition:background-color .2s ease-out; -ms-transition:background-color .2s ease-out; -o-transition:background-color .2s ease-out; transition:background-color .2s ease-out; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.05); border-radius:2px } .filters-dropdown.active{ color:#fff; background-color:#169fe6; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.15) } .filters-dropdown.active:after{ border-color:#fff rgba(255,255,255,0) } .ie8 .filters-dropdown.active:after{ border-color:#fff transparent } .filters-dropdown.active .option-set{ opacity:1; pointer-events:auto; visibility:visible } .filters-dropdown:after{ content:""; width:0; height:0; position:absolute; right:12px; top:50%; margin-top:-2px; border-width:5px 5px 0 5px; border-style:solid; border-color:#aaa rgba(255,255,255,0) } .ie8 .filters-dropdown:after{ border-color:#aaa transparent } .filters-dropdown.active:after{ border-width:0 5px 5px 5px } .filters-dropdown .option-set{ width:190px; position:absolute; top:100%; margin-top:0; left:1px; z-index:1; border:inherit; background:#fff; list-style:none; -webkit-transition:opacity .2s ease-out; -moz-transition:opacity .2s ease-out; -ms-transition:opacity .2s ease-out; -o-transition:opacity .2s ease-out; transition:opacity .2s ease-out; opacity:0; pointer-events:none; padding:15px; -webkit-box-shadow:0 1px 1px rgba(0,0,0,.1),0 0 1px rgba(0,0,0,.2); box-shadow:0 1px 1px rgba(0,0,0,.1),0 0 1px rgba(0,0,0,.2); visibility:hidden } ul.option-set li a:active{ background:#fff } .ie8 .filters-dropdown .option-set{ display:none } .ie8 .filters-dropdown.active .option-set{ display:block } .page-content.portfolio{ padding:30px 0; background:#fcfcfc } .related-works{ margin-bottom:-40px; padding-bottom:40px; background:#fcfcfc } #portfolio-navi{ position:relative; float:right; display:block; margin:29px 0 0 10px } #portfolio-navi ul li{ display:inline } #portfolio-navi a{ padding:5px 10px 7px 10px; display:inline-block; color:#888; background-color:#f4f4f4; margin:0 0 6px 0; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.07); border-radius:2px } #portfolio-navi a:hover b{ opacity:1 } #portfolio-navi a:hover{ background-color:#169fe6; color:#fff; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.15) } .project-info{ padding:21px 25px; background:#f6f6f6; color:#888; border-radius:2px; -webkit-box-shadow:: inset 0 -1px 0 0 rgba(0,0,0,.07); box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.07) } .project-info .button{ line-height:22px } .project-info li:first-child{ padding-top:0 } .project-info li:last-child{ border-bottom:0 } .project-info li{ padding:2px 0 } .launch{ margin-top:10px } .project-tags{ margin-top:15px } .project-tags strong{ float:left; margin:5px 10px 20px 0 } .isotope-item{ z-index:2 } .isotope-hidden.isotope-item{ pointer-events:none; z-index:1 } .isotope,.isotope .isotope-item{ -webkit-transition-duration:.8s; -moz-transition-duration:.8s; -ms-transition-duration:.8s; -o-transition-duration:.8s; transition-duration:.8s } .isotope{ -webkit-transition-property:height,width; -moz-transition-property:height,width; -ms-transition-property:height,width; -o-transition-property:height,width; transition-property:height,width } .isotope .isotope-item{ -webkit-transition-property:-webkit-transform,opacity; -moz-transition-property:-moz-transform,opacity; -ms-transition-property:-ms-transform,opacity; -o-transition-property:top,left,opacity; transition-property:transform,opacity } .isotope .isotope-item.no-transition,.isotope.no-transition,.isotope.no-transition .isotope-item{ -webkit-transition-duration:0s; -moz-transition-duration:0s; -ms-transition-duration:0s; -o-transition-duration:0s; transition-duration:0s } .isotope.infinite-scrolling{ -webkit-transition:none; -moz-transition:none; -ms-transition:none; -o-transition:none; transition:none } .button,input[type=button],input[type=submit]{ padding:5px 14px 7px 14px; display:inline-block; border:0; font-weight:500; outline:0; font-size:13px; cursor:pointer; width:auto; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out; border-radius:2px; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.2); letter-spacing:-.2px } input[type=button],input[type=submit]{ float:left } .button i{ margin:0 2px 0 -1px; height:14px } .button i.halflings{ margin:2px 0 0 -1px } .button.medium{ padding:9px 18px; font-size:14px } .button.gray{ color:#fff; background:#4c4c4c; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.4) } .button.gray:hover{ background:#169fe6; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.2) } .button.light{ color:#fff; background:#aaa; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.15) } .button.light:hover{ background:#169fe6; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.2) } .button.color{ color:#fff; background:#169fe6; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.15) } .button.color:hover{ background:#aaa; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.15) } input[type=button],input[type=button]:focus,input[type=submit],input[type=submit]:focus{ color:#fff; background:#169fe6; padding:9px 11px; border:none!important } ininput[type=button]:hover,input[type=submit]:hover{ background:#aaa } .notification{ font-size:13px; line-height:18px; margin-bottom:15px; position:relative; padding:14px 40px 14px 18px; -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03) } .notification p{ margin:0 } .notification span{ font-weight:600 } .notification.success,.notification.success strong{ background-color:#ebf6e0; color:#5f9025; border:1px solid #b3dc82 } .notification.error,.notification.error strong{ background-color:#ffe9e9; color:#de5959; border:1px solid #fbc4c4 } .notification.warning,.notification.warning strong{ background-color:#fbfadd; color:#8f872e; border:1px solid #ded58a } .notification.notice,.notification.notice strong{ background-color:#e9f7fe; color:#5091b2; border:1px solid #b6d7e8 } .notification strong{ border:none!important } .notification.error .close,.notification.notice .close,.notification.success .close,.notification.warning .close{ padding:0 14px; position:absolute; right:0; top:20px; display:block; height:8px; weight:8px } .close i{ font-size:11px; margin:-5px 5px 0 0; float:left } .notification.success .close{ color:#8dbf52 } .notification.error .close{ color:#f59292 } .notification.warning .close{ color:#c6bd67 } .notification.notice .close{ color:#86b4cc } .tabs-nav{ list-style:none; margin:0; overflow:hidden; padding:0; width:100% } .tabs-nav li{ float:left; line-height:38px; overflow:hidden; padding:0; position:relative } .tabs-nav li a{ background-color:#f8f8f8; border:1px solid #e0e0e0; border-right:none; color:#888; font-weight:500; display:block; letter-spacing:0; outline:0; padding:0 20px; text-decoration:none; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out } .tabs-nav li:first-child a{ border-left:1px solid #e0e0e0 } .tabs-nav li:last-child a{ border-right:1px solid #e0e0e0 } .tabs-nav li.active a{ color:#333; font-weight:500 } .tabs-nav li.active i:before{ color:#555 } .tabs-nav li i:before{ color:#909090 } .tabs-nav li span{ margin-left:-7px } .tabs-nav li.active a i{ opacity:1 } .tabs-nav li i{ opacity:.64; margin:10px 0 0 0 } .tabs-nav li a:hover{ background:#fff } .tabs-nav li.active a{ background:#fff; border-bottom:1px solid #fff; border-top:1px solid #169fe6; color:#169fe6 } .tab-content{ padding:20px } .tabs-container{ border:1px solid #e0e0e0; margin:-1px 0 20px; overflow:hidden; width:100%; line-height:21px; -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03) } .accordion{ -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03) } .ui-accordion .ui-accordion-header{ display:block; cursor:pointer; position:relative; padding:0; font-size:13px; padding:14px 0 15px 0; line-height:26px; outline:0; color:#707070; border:1px solid #e0e0e0; margin-top:-1px; font-weight:500; -webkit-transition:background-color .2s ease-in-out; -moz-transition:background-color .2s ease-in-out; -o-transition:background-color .2s ease-in-out; -ms-transition:background-color .2s ease-in-out; transition:background-color .2s ease-in-out } .ui-accordion .ui-accordion-header{ background-color:#fcfcfc } .ui-accordion .ui-accordion-header:hover{ background-color:#fff } .ui-accordion .ui-accordion-header-active,.ui-accordion .ui-accordion-header-active:hover{ background-color:#fff; color:#169fe6; border-bottom:0 } .ui-accordion .ui-accordion-icons{ padding-left:50px } .ui-accordion .ui-accordion-header .ui-accordion-header-icon{ position:absolute; left:20px } .ui-accordion .ui-accordion-content{ padding:0 20px 20px 20px } .ui-accordion .ui-accordion-content p{ margin:0 } .ui-accordion .ui-accordion-content{ border:1px solid #e0e0e0; border-top:0 } .ui-accordion-icon,.ui-accordion-icon-active{ width:18px; height:18px; display:inline-block; background-color:#ccc; border-radius:2px; background-image:url(images/accordion-plus.png); background-repeat:no-repeat; background-position:50%; float:left; margin:5px 10px 0 0; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1); -webkit-transition:background-color .2s ease-in-out; -moz-transition:background-color .2s ease-in-out; -o-transition:background-color .2s ease-in-out; -ms-transition:background-color .2s ease-in-out; transition:background-color .2s ease-in-out } .ui-accordion-icon-active{ background-color:#169fe6; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.15); background-image:url(images/accordion-minus.png) } .toggle-wrap{ float:left; width:100%; border:1px solid #e0e0e0; margin-bottom:15px; -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03) } .trigger a{ display:block; cursor:pointer; position:relative; font-size:13px; padding:14px 0 15px 20px; line-height:26px; color:#707070; font-weight:500; -webkit-transition:background-color .2s ease-in-out; -moz-transition:background-color .2s ease-in-out; -o-transition:background-color .2s ease-in-out; -ms-transition:background-color .2s ease-in-out; transition:background-color .2s ease-in-out } .trigger a{ background-color:#fcfcfc } .trigger a:hover,.trigger.active a,.trigger.active a:hover{ background:#fff } .trigger.active a{ color:#169fe6 } .toggle-icon{ width:18px; height:18px; display:inline-block; background-color:#ccc; border-radius:2px; background-image:url(images/accordion-plus.png); background-repeat:no-repeat; background-position:50%; float:left; margin:5px 10px 0 0; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1); -webkit-transition:background-color .2s ease-in-out; -moz-transition:background-color .2s ease-in-out; -o-transition:background-color .2s ease-in-out; -ms-transition:background-color .2s ease-in-out; transition:background-color .2s ease-in-out } .trigger.active .toggle-icon{ background-color:#169fe6; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.15); background-image:url(images/accordion-minus.png) } .toggle-container p{ margin:0 } .toggle-container{ padding:0 20px 17px 20px } .large-notice{ background-color:#fcfcfc; border:1px solid #e0e0e0; padding:32px; -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03) } .large-notice h2{ margin-bottom:10px } .large-notice p{ font-size:14px; color:#888; line-height:22px } .check-list li,.plus-list li,.sign-list li,.star-list li{ list-style:none; margin:5px 0 } .check-list li:first-child,.plus-list li:first-child,.sign-list li:first-child,.star-list li:first-child{ margin-top:0 } .check-list li{ background:url(images/icon-list-check.png) no-repeat 0 3px; padding:0 0 0 18px } .sign-list li{ background:url(images/icon-list-sign.png) no-repeat 0 3px; padding:0 0 0 18px } .plus-list li{ background:url(images/icon-list-plus.png) no-repeat 0 3px; padding:0 0 0 18px } .star-list li{ background:url(images/icon-list-star.png) no-repeat 0 3px; padding:0 0 0 18px } table.standard-table{ width:100%; border-collapse:separate; border-spacing:0; border:none; margin-bottom:15px; -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03) } table.standard-table th{ border:1px solid #e0e0e0; border-right:none; background-color:#fafafa; text-align:left; padding:10px 15px; color:#444; vertical-align:top; font-size:14px; font-weight:600 } table.standard-table td:last-child{ border-right:1px solid #e0e0e0 } table.standard-table th:last-child{ border-right:1px solid #e0e0e0 } table.standard-table td{ padding:10px 15px; border:#e0e0e0 1px solid; border-top:none; border-right:none } table.standard-table tr:hover td{ background-color:#fafafa } .testimonial-container{ position:relative } .testimonials{ background:#f6f6f6; color:#888; padding:25px; line-height:21px; border-radius:2px; -webkit-box-shadow:: inset 0 -1px 0 0 rgba(0,0,0,.06); box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.06) } .testimonials-bg{ background:url(images/testimonials-bg.png) no-repeat; margin-top:-1px; display:block; margin-left:25px; width:200px; height:30px } .testimonials-author{ color:#169fe6; float:right; display:block; margin-top:-23px; margin-bottom:20px } .testimonials-author span{ color:#a0a0a0 } .flexslider.testimonial-slider .flex-direction-nav{ display:none } .arrow:after,.ui-tooltip{ background:#444 } .ui-tooltip{ color:#fff; padding:1px 8px; position:absolute; z-index:9999; font-size:11px; max-width:300px; -webkit-border-radius:2px; -moz-border-radius:2px; border-radius:2px } .fade{ opacity:0; -webkit-transition:opacity .1s ease-in-out; -moz-transition:opacity .1s ease-in-out; -o-transition:opacity .1s ease-in-out; -ms-transition:opacity .1s ease-in-out; transition:opacity .1s ease-in-out } .fade.in{ opacity:1 } .ie8 .arrow{ display:none } .arrow{ width:70px; height:5px; overflow:hidden; position:absolute; left:50%; margin-left:-35px; bottom:-5px } .arrow.top{ top:-16px; bottom:auto } .arrow.left{ left:20% } .arrow:after{ content:""; position:absolute; left:23px; top:-20px; width:21px; height:21px; -webkit-transform:rotate(45deg); -moz-transform:rotate(45deg); -ms-transform:rotate(45deg); -o-transform:rotate(45deg); tranform:rotate(45deg) } .arrow.top:after{ top:auto } .post{ margin:40px 0 } .post-content{ margin:0 0 0 63px } .post-img a img{ opacity:1; -webkit-transition:all 150ms ease-in-out; -moz-transition:all 150ms ease-in-out; -o-transition:all 150ms ease-in-out; -ms-transition:all 150ms ease-in-out; transition:all 150ms ease-in-out; margin:0 0 23px 0 } .post-img a:hover img{ opacity:.8 } .meta{ color:#888; margin:0 0 15px 0 } .meta a{ color:#888; text-decoration:none } .meta time{ margin:0 0 0 -2px } .meta a:hover{ color:#666 } .meta i.halflings{ display:inline-block; opacity:.53; margin:2px 5px 0 0 } .meta:after{ content:"."; display:block; clear:both; visibility:hidden; line-height:0; height:0 } .meta i.halflings:before{ color:#a5a5a5 } .meta span{ margin-right:12px; float:left } .meta h2{ line-height:26px; font-size:20px; font-weight:400; margin:0 0 2px 0 } .meta h2 a{ color:#444 } .meta h2 a:hover{ color:#666 } .medium-image{ float:left; margin:0 20px 0 0; width:28% } .medium-content{ float:left; width:59%; margin-left:60px } .post.medium{ margin-top:40px; margin-bottom:16px } .post.medium:after{ content:"."; display:block; clear:both; visibility:hidden; line-height:0; height:0 } .pagination{ margin:30px 0 } .pagination ul li a{ padding:6px 10px; border-bottom:none; display:inline-block; color:#888; float:left; margin-right:4px; background-color:#f4f4f4; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.07); border-radius:2px } .pagination .current{ background:#169fe6!important; color:#fff; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.15) } .pagination ul li a:hover{ background-color:#ccc; color:#fff; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1) } .about-author{ margin-bottom:40px; padding:20px; background:#f6f6f6; color:#888; border-radius:2px; -webkit-box-shadow:: inset 0 -1px 0 0 rgba(0,0,0,.06); box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.06) } .about-author p{ margin:0 0 2px 0 } .about-author img{ float:left; margin:7px 5px 5px 5px; width:65px; height:65px; border-radius:2px } .about-description{ margin:-2px 0 0 90px } .pricing-table{ float:left; margin:1px 0 0 -1px } .pricing-table h3{ font-size:16px; text-align:center; color:#fff; padding:6px 0; margin:0; font-weight:200 } .pricing-table ul{ padding:10px 0 0 0; border:1px solid #e0e0e0; border-top:0; background:#fff; -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03) } .pricing-table li{ color:#888; background:#fff; text-align:center; padding:4px 0 } li.sign-up{ border-top:1px solid #e0e0e0; background:#fafafa; padding:12px 0; margin-top:10px } li.sign-up a{ font-weight:200; letter-spacing:0 } li.sign-up a:hover{ opacity:.8 } .pricing-table h3,.pricing-table h4{ text-align:center; color:#fff; margin:0 } .pricing-table{ z-index:1; position:relative } .pricing-table h4{ padding:12px 0 10px 0 } .price,.time{ display:block; line-height:20px } .price{ font-size:24px; font-weight:400 } span.time{ font-size:12px; font-weight:200; opacity:.6 } .pricing-table.featured ul{ padding:10px 0 0 0; border:1px solid #e0e0e0; border-top:0; background:#fff; -webkit-box-shadow:0 0 0 0 transparent; box-shadow:0 0 0 0 transparent } .pricing-table.featured h3{ padding:11px 0 13px 0; margin:-12px 0 0 0 } .pricing-table.featured li.sign-up{ border-top:1px solid #e0e0e0; background:#fafafa; padding:18px 0; margin-top:10px } .featured div{ -webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.1); box-shadow:0 0 10px 0 rgba(0,0,0,.1) } .color-1 .sign-up .button,.pricing-table .color-1 h3{ background-color:#909090 } .pricing-table .color-1 h4{ background-color:grey } .color-2 .sign-up .button,.pricing-table .color-2 h3{ background-color:#565656 } .pricing-table .color-2 h4{ background-color:#4c4c4c } .pricing-table .color-3 h3{ background-color:#3dafea } .color-3 .sign-up .button,.pricing-table .color-3 h4{ background-color:#169fe6 } #contact fieldset div{ margin-bottom:20px } #contact fieldset div input{ width:220px } #contact textarea{ max-width:620px; min-width:620px; min-height:160px } #contact input,#contact select,#contact textarea{ -webkit-transition:background .2s ease-in-out,border-color .2s ease-in-out; -moz-transition:background .2s ease-in-out,border-color .2s ease-in-out; -o-transition:background .2s ease-in-out,border-color .2s ease-in-out; -ms-transition:background .2s ease-in-out,border-color .2s ease-in-out; transition:background .2s ease-in-out,border-color .2s ease-in-out } #contact input:focus,#contact select:focus,#contact textarea:focus{ border:1px solid #d6d6d6; outline:0; position:relative; z-index:5 } #contact input.error,#contact select.error,#contact textarea.error{ border:1px solid #f2c4c2; background:#ffeceb } #contact label span{ color:#ed1c1c } #contact input[type=submit][disabled]{ background:#aaa } #message{ margin:0; padding:0; display:block; background:transparent none } .loader{ padding:10px; float:left } #footer{ background:#4c4c4c; width:1020px; padding:30px 0 31px 0; margin:0 auto; font-size:12px } #footer-bottom{ background:#424242; width:1020px; padding:15px 0; margin:0 auto; font-size:12px } #footer,#footer a,#footer p{ color:#ddd } #footer a:hover{ color:#fff } #footer h4{ padding:0; margin:0 0 15px 0; font-size:14px; color:#fff } .copyright{ color:#aaa } .copyright a,.copyright span{ color:#eee!important } #sub-menu{ float:right; font-size:11px } #sub-menu ul li a{ color:#aaa } #sub-menu ul li a:hover{ color:#eee } #sub-menu ul li{ display:inline-block; border-left:1px solid #505050; margin:0; padding:0 8px 0 8px; line-height:12px } #sub-menu ul li:first-child{ border:none; padding-left:0 } #sub-menu ul li:last-child{ padding-right:0 } #logo-footer{ margin:10px 0 20px 0; width:85px; height:100px } .flickr-widget{ margin-right:-12px; margin-top:0 } .flickr-widget img{ display:block; width:100% } .flickr-widget a:hover{ border-color:#169fe6 } .flickr-widget a{ float:left; width:58px; height:58px; margin-right:9px; margin-bottom:9px; border:5px solid #424242; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out; border-radius:2px } .ie7 .flickr-widget a{ width:54px; height:54px } #twitter li{ margin:0 0 15px 0; padding:0 0 0 25px; background:url(images/social/twitter.png) no-repeat left 5% } #twitter li:last-child{ margin:0; padding:0 0 0 25px } #twitter a{ color:#fff } #twitter b a,#twitter b a:hover{ margin-top:5px; display:block; color:#999; font-weight:400 } .contact-details-alt li p strong{ color:#fff; float:left; margin:0 5px 5px 0 } .contact-details li p strong{ color:#666; float:left; margin:0 5px 5px 0 } span.hours{ float:right } .contact-informations.second{ margin:15px 0 0 0 } .address{ line-height:21px } .contact-details-alt li{ margin:0 0 15px 0 } .contact-details a,.contact-details li,.contact-details p{ color:#666 } .contact-informations p{ margin:0 } .contact-informations.hours i{ float:left; margin:0 5px 0 0 } .contact-details-alt p{ margin:-2px 0 0 22px; line-height:18px } .contact-informations li i{ float:left; margin:3px 5px 0 0 } .contact-details-alt li i{ float:left; margin:1px 0 0 0 } .shop-page.page-content{ margin:0 -10px } .container .four-shop.columns{ width:200px } #price-range input{ padding:0; background:0; border:0; box-shadow:none; margin:2px 0 0 4px; float:left; width:100px } #price-range .button{ float:right; padding:3px 11px 4px 11px; margin:-5px 0 0 0 } #price-range label{ float:left } .padding-range{ padding:0 8px } #slider-range{ margin:0 0 16px 0 } #price-range .ui-slider{ position:relative; text-align:left } #price-range .ui-slider .ui-slider-handle{ position:absolute; z-index:2; width:17px; height:17px; margin:2px 0 0 0; cursor:w-resize } #price-range .ui-slider .ui-slider-range{ position:absolute; z-index:1; height:14px; display:block; border:0; background-position:0 0 } #price-range .ui-widget-content{ box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.05); background-color:#f2f2f2; padding:2px 0; border-radius:2px } #price-range .ui-widget-header{ background:#169fe6; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1) } #price-range .ui-state-default{ background:#ddd; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.08); border-radius:2px } #price-range .ui-slider.ui-state-disabled .ui-slider-handle,#price-range .ui-slider.ui-state-disabled .ui-slider-range{ filter:inherit } #price-range .ui-slider-horizontal{ height:.8em } #price-range .ui-slider-horizontal .ui-slider-handle{ top:-.3em; margin-left:-.6em } #price-range .ui-slider-horizontal .ui-slider-range{ top:0; height:100% } #price-range .ui-slider-horizontal .ui-slider-range-min{ left:0 } #price-range .ui-slider-horizontal .ui-slider-range-max{ right:0 } #cart,.latest-shop-items{ padding:18px; width:84%; display:inline-block; background-color:#f2f2f2; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.05); border-radius:2px; color:#666 } .cart-items{ border-bottom:1px solid #e6e6e6; padding:0 0 10px 0 } #cart .button,.shop-item .button{ padding:5px 16px 6px 16px!important } #cart .button.color{ margin:0 0 0 2px } .cart-items li{ margin:0 0 10px 0 } .cart-items li:last-child{ margin:0 } a.cart-item-title{ color:#444; font-weight:600; display:block } a.cart-item-title:hover{ color:#888; display:block } .cart-item-amount{ color:#888; display:block; font-size:12px } .cart-subtotal{ display:block; margin:8px 0; color:#888 } .cart-subtotal strong{ color:#888; font-weight:500 } a.item-remove{ color:#eb4c4c; font-size:11px } .empty-cart{ color:#888 } .latest-shop-items{ margin-bottom:15px } .latest-shop-items p{ margin:0; color:#666; line-height:19px; margin-left:77px } .latest-shop-items p a{ color:#666; display:block } .latest-shop-items p a:hover{ color:#888 } .latest-shop-items p span{ color:#888; margin:5px 0 0 0; display:block } .latest-shop-items img{ float:left; width:56px; border:1px solid #e0e0e0; padding:4px; border-radius:2px; background:#fff; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out } .latest-shop-items img:hover{ background:#169fe6; border:1px solid #169fe6 } .shop-item img{ border:1px solid #eee; border-bottom:0; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; -webkit-transition:all 180ms ease-in-out; -moz-transition:all 180ms ease-in-out; -o-transition:all 180ms ease-in-out; -ms-transition:all 180ms ease-in-out; transition:all 180ms ease-in-out; -webkit-backface-visibility:hidden; -moz-backface-visibility:hidden; backface-visibility:hidden } .shop-item img:hover{ opacity:.7; border-color:#e7e7e7 } .shop-item .item-description{ padding:14px 10px 19px 10px } .shop-item .item-description h5{ line-height:18px; font-size:13px; font-weight:600; margin:3px 0 0 0; -webkit-transition:all 180ms ease-in-out; -moz-transition:all 180ms ease-in-out; -o-transition:all 180ms ease-in-out; -ms-transition:all 180ms ease-in-out; transition:all 180ms ease-in-out } .shop-item .item-description a:hover h5{ color:#888 } .shop-item .item-description span{ color:#666; font-size:13px; font-weight:300; display:block; margin:0 0 10px 0 } .shop-item{ margin:10px 0; display:block; background-color:#fff } .shop-item .item-description{ background-color:#f4f4f4; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.07); border-radius:0 0 2px 2px; border-color:#e8e8e8 } .shop-item .button{ padding:5px 13px 7px 13px } .pagination.shop{ margin:20px 0 40px 0 } .flexslider.shop{ border:1px solid #e0e0e0; -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03); margin:0 0 20px 0 } .flexslider.shop img{ -webkit-transition:all 180ms ease-in-out; -moz-transition:all 180ms ease-in-out; -o-transition:all 180ms ease-in-out; -ms-transition:all 180ms ease-in-out; transition:all 180ms ease-in-out; -webkit-backface-visibility:hidden; -moz-backface-visibility:hidden; backface-visibility:hidden } .flexslider.shop img:hover{ opacity:.7 } .flexslider.shop .flex-direction-nav{ display:none } table.standard-table.shop{ margin:0; border-bottom:1px solid #e0e0e0 } table.standard-table.shop th{ border-bottom:none; font-size:13px } table.standard-table.shop th{ margin-bottom:-1px } table.standard-table.shop td{ padding:10px 15px; border:#e0e0e0 1px solid; border-bottom:none } .product-info .price{ font-size:20px; font-weight:300; color:#777; margin:0 0 15px 0 } .product-info h3{ font-size:20px; font-weight:500; color:#333; line-height:26px; margin:0 0 7px 0 } .product-amount input{ width:20px; padding:5px; text-align:center; float:left; border-radius:2px 0 0 2px } .product-amount{ margin:0 0 15px 0; float:left } .increase-value{ float:left; color:#fff; background:#169fe6; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.15); cursor:pointer; border-radius:0 2px 2px 0; margin-left:-1px; font-size:11px; height:30px; width:30px; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out } .increase-value span{ margin:4px 0 0 11px; display:inline-block } .increase-value:hover{ background:#aaa; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1) } @media only screen and (max-width:767px){ .container .four-shop.columns{ width:260px } } @media only screen and (min-width:480px) and (max-width:767px){ .container .four-shop.columns{ width:360px } } @media only screen and (min-width:768px) and (max-width:959px){ .container .four-shop.columns{ width:140px } } @media only screen and (max-width:767px){ .shop-page.page-content{ margin:0 } } @media only screen and (min-width:768px) and (max-width:959px){ #cart .button.color{ margin:5px 0 0 0 } } @media only screen and (min-width:960px){ .jcarousel{ height:317px } } @media only screen and (min-width:768px) and (max-width:959px){ #footer,#footer-bottom,#wrapper{ width:714px } #navigation{ width:734px } .style-2{ width:714px!important } .contact-details-alt li p strong{ margin:0 5px 0 0 } .line{ margin:0 0 0 -28px; padding:0 56px 0 0 } .widget-search input{ width:134px } .cut{ display:none } .sidebar{ padding:28px 0 } .post{ margin:24px 0 } ol li ol.childlist .comment-des{ float:right; width:70% } .comment-des{ float:right; width:73% } #contact textarea{ max-width:425px; min-width:425px } .medium-image{ margin:0 25px 0 0; width:35% } .medium-content{ width:46% } .post.medium{ margin:30px 0 } #not-found h2{ font-size:160px; line-height:160px } #not-found i{ font-size:155px } #not-found p{ font-size:22px; line-height:32px } .client-list img{ width:130px; height:auto } } @media only screen and (max-width:767px){ #sub-menu{ float:left; margin:5px 0 0 0 } #header{ display:none } .menu{ margin-top:3px } #logo{ display:none } #tagline,.contact-details,.js #responsive,.left-corner,.right-corner,.slide-caption,.social-icons,.top-search{ display:none } .portfolio-item,.recent-blog{ margin:0 0 40px 0 } .js .selectnav{ display:block } #navigation{ margin:0; width:100%; height:auto; background:0 0 } .selectnav{ cursor:pointer; padding:10px; margin:0 0 30px 30px; float:left; font-size:14px } #header{ min-height:115px } #footer h4{ margin-top:20px } #footer{ padding-top:20px } .page-title{ padding-bottom:30px!important } #breadcrumbs ul{ float:left; padding:0; margin-top:5px; width:100% } .icon-box-container{ margin:30px 0 20px 0 } .icon-box{ margin-bottom:20px } .page-title h2{ padding:0; position:relative } .post{ margin:24px 0 } .meta span{ display:none } .line{ margin:0 0 0 -30px; padding:0 60px 0 0 } .floated.sidebar.left,.floated.sidebar.right{ -webkit-box-shadow:none; box-shadow:none; padding-bottom:0; margin:0; border:none } .floated.sidebar.left{ border-bottom:1px solid #e0e0e0 } .floated.sidebar.right{ border-top:1px solid #e0e0e0 } #portfolio-navi{ float:left; margin-left:0 } #not-found h2{ font-size:110px; line-height:120px } #not-found i{ font-size:105px } #not-found p{ font-size:22px; line-height:32px } body .container .columns.carousel-intro{ float:none!important } .comment-by{ margin-bottom:20px } .caption-color,.caption-gray,.caption-transparent{ display:none!important } .post.medium{ margin:40px 0 } #logo-footer{ margin:20px 0 } .pricing-table{ margin-bottom:20px } .pricing-table.featured{ margin-top:12px } } .small-table table{ border:1px solid #ddd } .small-table th{ padding:10px; border:1px solid #f0f0f0; font-weight:700; background-color:#f2f2f2 } .small-table td{ padding:5px; border:1px solid #f7f7f7; text-align:center } @media only screen and (min-width:480px) and (max-width:767px){ #footer,#footer-bottom,#wrapper{ width:420px } .selectnav{ width:355px } .container.floated{ width:420px; padding:0 } .blank.floated{ width:360px; padding:0 30px } .flickr-widget a{ width:73px; height:73px; margin-right:9px; margin-bottom:9px } ol li ol.childlist .comment-des{ float:right; width:61% } .comment-des{ float:right; width:67% } #contact textarea{ max-width:340px; min-width:340px } .medium-image{ margin:0 25px 0 0; width:30% } .medium-content{ width:46% } .client-list img{ width:179px; height:auto } } @media only screen and (max-width:479px){ #footer,#footer-bottom,#wrapper{ width:320px } .selectnav{ width:255px } .container.floated{ width:320px; padding:0 } .blank.floated{ width:260px; padding:0 30px } .flickr-widget a{ width:69px; height:69px; margin-right:9px; margin-bottom:9px } ol li ol.childlist .comment-des{ float:right; width:47% } .comment-des{ float:right; width:54% } #contact textarea{ max-width:240px; min-width:240px } .medium-image{ margin:0 25px 0 0; width:100% } .medium-content{ width:80% } .client-list img{ width:260px; height:auto } } @media (min--moz-device-pixel-ratio:1.3),(-o-min-device-pixel-ratio:2.6/2),(-webkit-min-device-pixel-ratio:1.3),(min-device-pixel-ratio:1.3),(min-resolution:1.3dppx){ #twitter li{ background:url(images/social/twitter@2x.png) no-repeat left 5%; background-size:16px auto } #twitter-blog li{ background:url(images/twitter-01@2x.png) no-repeat left 5%; background-size:16px auto } #breadcrumbs ul li{ background:url(images/breadcrumbs@2x.png) no-repeat 100% 50%; background-size:3px auto } .categories a{ background:url(images/categories@2x.png) no-repeat left 47%; background-size:5px auto } .search-btn{ background:url(images/search@2x.png) center center no-repeat; background-size:13px auto } .search-btn-widget{ background:url(images/search-2@2x.png) 50% no-repeat; background-color:#169fe6; background-size:13px auto } .flex-direction-nav .flex-next{ background:url(images/slider-right@2x.png) no-repeat 50%; background-color:#4c4c4c; right:0; background-size:25% } .flex-direction-nav .flex-prev{ background:url(images/slider-left@2x.png) no-repeat 50%; background-color:#4c4c4c; left:0; background-size:25% } .ls-fullwidth .ls-nav-prev{ background:url(images/slider-left@2x.png) no-repeat 50%; background-color:#4c4c4c; left:0; background-size:25% } .ls-fullwidth .ls-nav-next{ background:url(images/slider-right@2x.png) no-repeat 50%; background-color:#4c4c4c; right:0; background-size:25% } .ui-accordion-icon,.ui-accordion-icon-active{ background-image:url(images/accordion-plus@2x.png); background-repeat:no-repeat; background-position:50%; background-size:12px } .ui-accordion-icon-active{ background-image:url(images/accordion-minus@2x.png) } .toggle-icon{ background-image:url(images/accordion-plus@2x.png); background-repeat:no-repeat; background-position:50%; background-size:12px } .trigger.active .toggle-icon{ background-image:url(images/accordion-minus@2x.png); background-size:12px } .check-list li{ background:url(images/icon-list-check@2x.png) no-repeat 0 3px; padding:0 0 0 18px; background-size:13px 11px } .sign-list li{ background:url(images/icon-list-sign@2x.png) no-repeat 0 3px; padding:0 0 0 18px; background-size:12px } .plus-list li{ background:url(images/icon-list-plus@2x.png) no-repeat 0 3px; padding:0 0 0 18px; background-size:12px } .star-list li{ background:url(images/icon-list-star@2x.png) no-repeat 0 3px; padding:0 0 0 18px; background-size:12px } .twitter{ background:url(images/social/twitter@2x.png) no-repeat 50%; background-size:50% } .facebook{ background:url(images/social/facebook@2x.png) no-repeat 50%; margin:0 -4px; background-size:50% } .dribbble{ background:url(images/social/dribbble@2x.png) no-repeat 50%; background-size:50% } .linkedin{ background:url(images/social/linkedin@2x.png) no-repeat 50%; background-size:50% } .rss{ background:url(images/social/rss@2x.png) no-repeat 50%; margin:0 -5px 0 0; background-size:50% } .amazon{ background:url(images/social/amazon@2x.png) no-repeat 50%; background-size:50% } .blogger{ background:url(images/social/blogger@2x.png) no-repeat 50%; background-size:50% } .deviantart{ background:url(images/social/deviantart@2x.png) no-repeat 50%; background-size:50% } .digg{ background:url(images/social/digg@2x.png) no-repeat 50%; background-size:50% } .flickr{ background:url(images/social/flickr@2x.png) no-repeat 50%; background-size:50% } .forrst{ background:url(images/social/forrst@2x.png) no-repeat 50%; background-size:50% } .lastfm{ background:url(images/social/lastfm@2x.png) no-repeat 50%; background-size:50% } .picasa{ background:url(images/social/picasa@2x.png) no-repeat 50%; background-size:50% } .pinterest{ background:url(images/social/pinterest@2x.png) no-repeat 50%; background-size:50% } .skype{ background:url(images/social/skype@2x.png) no-repeat 50%; background-size:50% } .tumblr{ background:url(images/social/tumblr@2x.png) no-repeat 50%; background-size:50% } .vimeo{ background:url(images/social/vimeo@2x.png) no-repeat 50%; background-size:50% } .wordpress{ background:url(images/social/wordpress@2x.png) no-repeat 50%; background-size:50% } .yahoo{ background:url(images/social/yahoo@2x.png) no-repeat 50%; background-size:50% } .youtube{ background:url(images/social/youtube@2x.png) no-repeat 50%; background-size:50% } }
public/css/style.css
๏ปฟ@import url(base.css); @import url(responsive.css); @import url(icons.css); @import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700); #top-line{ width:100%; background:#169fe6; height:5px; display:block } #header{ min-height:130px } .contact-details{ float:right; margin:-1px 0 1px 0; display:block; color:#888; font-size:11px } .top-search{ float:right } .top-search input{ width:180px; font-size:11px; color:#888 } .search-btn{ float:right; position:relative; padding:0; top:0; right:0; margin:1px 0 0 -35px; background:url(images/search.png) center center no-repeat; width:35px; height:32px; cursor:pointer; border:none; z-index:100; box-shadow:none } .search-field{ float:right; position:relative } #logo{ margin-top:10px } #logo a img{ float:left; width:83px; height:100px } #tagline{ color:#888; border-left:1px solid #e8e8e8; margin:26px 0 0 20px; padding:5px 0 5px 20px; float:left; font-size:12px } .social-icons{ margin:23px 0 13px 0; float:right } .social-icons li{ display:inline; list-style:none; text-indent:-9999px; float:left; opacity:.5; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out } .ie8 .social-icons li{ background-color:#fff } .social-icons li a{ display:block; padding-left:11px; height:16px; width:16px } .social-icons li:hover{ opacity:1 } .twitter{ background:url(images/social/twitter.png) no-repeat 50% } .facebook{ background:url(images/social/facebook.png) no-repeat 50%; margin:0 -4px } .dribbble{ background:url(images/social/dribbble.png) no-repeat 50% } .linkedin{ background:url(images/social/linkedin.png) no-repeat 50% } .rss{ background:url(images/social/rss.png) no-repeat 50%; margin:0 -5px 0 0 } .amazon{ background:url(images/social/amazon.png) no-repeat 50% } .blogger{ background:url(images/social/blogger.png) no-repeat 50% } .deviantart{ background:url(images/social/deviantart.png) no-repeat 50% } .digg{ background:url(images/social/digg.png) no-repeat 50% } .flickr{ background:url(images/social/flickr.png) no-repeat 50% } .forrst{ background:url(images/social/forrst.png) no-repeat 50% } .lastfm{ background:url(images/social/lastfm.png) no-repeat 50% } .picasa{ background:url(images/social/picasa.png) no-repeat 50% } .pinterest{ background:url(images/social/pinterest.png) no-repeat 50% } .skype{ background:url(images/social/skype.png) no-repeat 50% } .tumblr{ background:url(images/social/tumblr.png) no-repeat 50% } .vimeo{ background:url(images/social/vimeo.png) no-repeat 50% } .wordpress{ background:url(images/social/wordpress.png) no-repeat 50% } .yahoo{ background:url(images/social/yahoo.png) no-repeat 50% } .youtube{ background:url(images/social/youtube.png) no-repeat 50% } #navigation{ height:49px; width:1040px; margin-left:-10px; background-color:#4c4c4c; float:left; left:1px } .style-2 .left-corner,.style-2 .right-corner{ display:none } .style-2{ width:1020px!important; margin-left:0!important } .style-2 ul li:first-child{ margin-left:1px!important } .js .selectnav{ display:none } .menu i.halflings{ margin:1px 2px 0 -2px } .menu li>div,.menu ul{ visibility:hidden; display:none } .menu li:hover>div,.menu li:hover>ul{ visibility:visible; display:block } .left-corner,.right-corner{ display:block; width:0; height:0; border-style:solid; position:relative; top:49px; float:left; opacity:.58 } .left-corner{ border-color:transparent #888 transparent transparent; border-width:0 9px 9px 0; float:left; left:1px } .right-corner{ border-color:#888 transparent transparent transparent; border-width:9px 9px 0 0; float:right; right:1px } .menu,.menu ul{ margin:0; padding:0; list-style:none } .menu li,.menu ul a{ position:relative } .menu>li{ float:left } .menu>li.floatr{ float:right } .menu li>a{ display:block } .menu ul{ position:absolute; display:none; width:170px } .menu ul ul{ top:0; left:170px } .menu li:hover>ul{ display:block } #navigation ul li:first-child{ margin-left:-8px } #navigation ul li ul li ul li:first-child,#navigation ul li ul li:first-child{ margin-left:0 } #current{ background-color:#169fe6; border-right:1px solid #169fe6; margin-left:-1px; padding-left:21px; z-index:8; position:relative } .menu a{ text-decoration:none } .menu>li>a{ color:#fff; font-weight:400; font-size:13px; line-height:18px; padding:15px 20px 16px 20px } .menu>li:hover>a{ background-color:#707070; border-left:none; padding-left:21px; border-right:1px solid #707070; margin:0 0 0 -1px } ul.menu li a{ -webkit-transition:background-color 80ms ease-in-out; -moz-transition:background-color 80ms ease-in-out; -o-transition:background-color 80ms ease-in-out; -ms-transition:background-color 80ms ease-in-out; transition:background-color 80ms ease-in-out } .menu ul li a{ -webkit-transition:background-color 20ms ease-in-out,color 20ms ease-in-out; -moz-transition:background-color 20ms ease-in-out,color 20ms ease-in-out; -o-transition:background-color 20ms ease-in-out,color 20ms ease-in-out; -ms-transition:background-color 20ms ease-in-out,color 20ms ease-in-out; transition:background-color 20ms ease-in-out,color 20ms ease-in-out } .menu>li>a{ border-right:1px solid #666 } .menu>li>a:hover{ border-right:1px solid #707070; margin:0 0 0 -1px } .menu li>ul>li>a img,.menu>li>a img{ border:0; margin-right:7px } .menu ul{ background-color:#fff; border:1px solid #e0e0e0; border-top:none; left:-1px; z-index:999; border-radius:0 0 2px 2px; -webkit-box-shadow:0 1px 1px rgba(0,0,0,.04); box-shadow:0 1px 1px rgba(0,0,0,.04) } .menu ul a{ color:#777; font-size:12px; line-height:18px; padding:9px 12px; border-top:1px solid #e6e6e6 } .menu ul a:hover{ background-color:#f5f5f5 } .longli a{ width:200px; background:#fff } .menu .cols1,.menu .cols2,.menu .cols3,.menu .cols4,.menu .cols5{ position:absolute; display:none; overflow:auto; z-index:999; background:#fff } .menu .col1,.menu .cols1{ width:160px } .menu .col2,.menu .cols2{ width:320px } .menu .col3,.menu .cols3{ width:530px } .menu .col4,.menu .cols4{ width:640px } .menu .col5,.menu .cols5{ width:800px } .menu>li.floatr>ul.cols1,ul.cols2,ul.cols3,ul.cols4,ul.cols5{ right:0 } .menu>li:hover>ul.cols1,ul.cols2,ul.cols3,ul.cols4,ul.cols5{ display:block } .menu .col1,.menu .col2,.menu .col3,.menu .col4,.menu .col5{ float:left } .menu li>ul.cols1,ul.cols2,ul.cols3,ul.cols4,ul.cols5{ background-color:#fff; border:1px solid #e0e0e0; border-top:none; left:-1px; padding:10px } ul.cols1 a:hover,ul.cols2 a:hover,ul.cols3 a:hover,ul.cols4 a:hover,ul.cols5 a:hover{ background:0 0; border:none } ul.cols1 a,ul.cols2 a,ul.cols3 a,ul.cols4 a,ul.cols5 a{ background:0 0; border:none } ul.cols1 p a,ul.cols2 p a,ul.cols3 p a,ul.cols4 p a,ul.cols5 p a{ padding:0 } .menu h4{ font-size:13px; color:#888; font-weight:400; margin:0 10px 5px; padding-bottom:5px; border-bottom:1px solid #e0e0e0; letter-spacing:0 } .menu h5{ font-size:13px; margin:8px 10px -3px 10px } .menu ol{ list-style:none; margin:7px 10px; padding:0 } .menu ol a{ color:#777; font-size:12px; padding:3px 0; line-height:15px } .menu ol a:hover{ color:#444 } .menu p{ font-size:12px; line-height:18px; margin:9px 10px; padding:0 } .menu p a{ color:#888; text-decoration:underline } .menu p a:hover{ color:#555 } .ls-container{ visibility:hidden; position:relative } .ls-lt-container{ position:absolute } .ls-lt-container,.ls-lt-container *{ text-align:left!important; direction:ltr!important } .ls-container-fullscreen{ margin:0 auto!important; padding:2%!important; background:#000!important; border-radius:0!important; -moz-border-radius:0!important; -webkit-border-radius:0!important; border:none!important } .ls-container-fullscreen .ls-fullscreen,.ls-container-fullscreen .ls-shadow,.ls-container-fullscreen .ls-thumbnail-wrapper{ display:none!important } .ls-overflow-hidden{ overflow:hidden } .ls-inner{ position:relative; background-position:center center; z-index:2 } .ls-loading-container{ position:absolute!important; display:none; z-index:3!important; left:50%!important; top:50%!important } .ls-loading-indicator{ margin:0 auto } .ls-inner,.ls-slide{ width:100%; height:100% } .ls-layer,.ls-slide{ position:absolute; display:none; background-position:center center; overflow:hidden } .ls-active,.ls-animating{ display:block!important } .ls-slide>*{ position:absolute; line-height:normal; margin:0; left:0; top:0 } .ls-slide .ls-bg{ left:0; top:0; transform:none!important; -o-transform:none!important; -ms-transform:none!important; -moz-transform:none!important; -webkit-transform:none!important } .ls-yourlogo{ position:absolute; z-index:99 } .ls-bar-timer{ position:absolute; width:0; height:2px; background:#fff; border-bottom:2px solid #555; opacity:.55; z-index:4; top:0 } .ls-circle-timer{ width:16px; height:16px; position:absolute; right:10px; top:10px; z-index:4; opacity:.65; display:none } .ls-ct-half{ background:#fff } .ls-ct-center{ background:#444 } .ls-ct-left,.ls-ct-right{ width:50%; height:100%; overflow:hidden } .ls-ct-left,.ls-ct-right{ float:left; position:relative } .ls-ct-rotate{ width:200%; height:100%; position:absolute; top:0 } .ls-ct-left .ls-ct-rotate,.ls-ct-right .ls-ct-half,.ls-ct-right .ls-ct-hider{ left:0 } .ls-ct-left .ls-ct-half,.ls-ct-left .ls-ct-hider,.ls-ct-right .ls-ct-rotate{ right:0 } .ls-ct-half,.ls-ct-hider{ position:absolute; top:0 } .ls-ct-hider{ width:50%; height:100%; overflow:hidden } .ls-ct-half{ width:200%; height:100% } .ls-ct-center{ width:50%; height:50%; left:25%; top:25%; position:absolute } .ls-ct-center,.ls-ct-half{ border-radius:100px; -moz-border-radius:100px; -webkit-border-radius:100px } .ls-bottom-nav-wrapper{ height:0 } .ls-bottom-slidebuttons{ text-align:left } .ls-below-thumbnails,.ls-bottom-nav-wrapper{ z-index:2; height:0; position:relative; text-align:center; margin:0 auto } .ls-below-thumbnails{ display:none; z-index:6 } .ls-bottom-nav-wrapper a,.ls-nav-next,.ls-nav-prev{ outline:0 } * .ls-bottom-nav-wrapper *,* .ls-bottom-nav-wrapper span *{ direction:ltr!important } .ls-bottom-slidebuttons{ position:relative; z-index:1000 } .ls-bottom-slidebuttons,.ls-nav-sides,.ls-nav-start,.ls-nav-stop{ position:relative } .ls-nothumb{ text-align:center!important } .ls-link{ position:absolute; width:100%!important; height:100%!important; left:0!important; top:0!important; background-image:url(blank.gif) } .ls-slide>a>*{ background-image:url(blank.gif) } .ls-vpcontainer{ width:100%; height:100%; position:absolute; left:0; top:0 } .ls-videopreview{ width:100%; height:100%; position:absolute; left:0; top:0; cursor:pointer } .ls-playvideo{ position:absolute; left:50%; top:50%; cursor:pointer } .ls-tn{ display:none!important } .ls-thumbnail-hover{ display:none; position:absolute; left:0 } .ls-thumbnail-hover-inner{ width:100%; height:100%; position:absolute; left:0; top:0; display:none } .ls-thumbnail-hover-bg{ position:absolute; width:100%; height:100%; left:0; top:0 } .ls-thumbnail-hover-img{ position:absolute; overflow:hidden } .ls-thumbnail-hover img{ max-width:none!important; position:absolute; display:inline-block; visibility:visible!important; left:50%; top:0 } .ls-thumbnail-hover span{ left:50%; top:100%; width:0; height:0; display:block; position:absolute; border-left-color:transparent!important; border-right-color:transparent!important; border-bottom-color:transparent!important } .ls-thumbnail-wrapper{ position:relative; width:100%; margin:0 auto; z-index:4 } .ls-thumbnail{ position:relative; margin:0 auto } .ls-thumbnail-inner,.ls-thumbnail-slide-container{ width:100% } .ls-thumbnail-slide-container{ overflow:hidden!important; position:relative } .ls-touchscroll{ overflow-x:auto!important } .ls-thumbnail-slide{ text-align:center; white-space:nowrap; float:left; position:relative } .ls-thumbnail-slide a{ overflow:hidden; display:inline-block; width:0; height:0; position:relative } .ls-thumbnail-slide img{ max-width:none!important; max-height:100%!important; height:100%; visibility:visible!important } .ls-shadow{ display:none; position:absolute; z-index:1; top:100%; width:100%; left:0; overflow:hidden!important; visibility:hidden } .ls-shadow img{ width:100%!important; height:auto!important; position:absolute!important; left:0!important; bottom:0!important } .ls-bottom-nav-wrapper,.ls-nav-next,.ls-nav-prev,.ls-thumbnail-wrapper{ visibility:hidden } .ls-wp-fullwidth-container{ width:100%; position:relative } .ls-wp-fullwidth-helper{ position:absolute } .ls-overflow-hidden{ overflow:hidden } .ls-lt-tile{ position:relative; float:left; perspective:1000px; -o-perspective:1000px; -ms-perspective:1000px; -moz-perspective:1000px; -webkit-perspective:1000px } .ls-lt-tile img{ visibility:visible; display:inline-block } .ls-curtiles{ overflow:hidden } .ls-curtiles,.ls-nexttiles{ position:absolute; width:100%; height:100%; left:0; top:0 } .ls-curtile,.ls-nexttile{ overflow:hidden; position:absolute; width:100%!important; height:100%!important; backface-visibility:hidden; -o-backface-visibility:hidden; -ms-backface-visibility:hidden; -moz-backface-visibility:hidden; -webkit-backface-visibility:hidden } .ls-curtile{ left:0; top:0 } .ls-curtile img,.ls-nexttile img{ position:absolute; filter:inherit } .ls-3d-container{ position:relative; overflow:visible!important } .ls-3d-box{ position:absolute; top:50%; left:50%; transform-style:preserve-3d; -o-transform-style:preserve-3d; -ms-transform-style:preserve-3d; -moz-transform-style:preserve-3d; -webkit-transform-style:preserve-3d } .ls-3d-box div{ overflow:hidden; background:#777; margin:0; padding:0; position:absolute } .ls-fullscreen{ position:absolute; z-index:10; cursor:pointer; display:block } #ls-global * .ls-bottom-nav-wrapper a,#ls-global * .ls-container .ls-fullscreen,#ls-global * .ls-container img,#ls-global * .ls-nav-next,#ls-global * .ls-nav-prev,#ls-global * .ls-thumbnail a,body * .ls-bottom-nav-wrapper a,body * .ls-container .ls-fullscreen,body * .ls-container img,body * .ls-nav-next,body * .ls-nav-prev,body * .ls-thumbnail a,html * .ls-bottom-nav-wrapper a,html * .ls-container .ls-fullscreen,html * .ls-container img,html * .ls-nav-next,html * .ls-nav-prev,html * .ls-thumbnail a{ transition:none; -o-transition:none; -ms-transition:none; -moz-transition:none; -webkit-transition:none; line-height:normal; outline:0; padding:0; border:0 } #ls-global * .ls-slide>*,#ls-global * .ls-slide>a,#ls-global * .ls-slide>div,#ls-global * .ls-slide>h1,#ls-global * .ls-slide>h2,#ls-global * .ls-slide>h3,#ls-global * .ls-slide>h4,#ls-global * .ls-slide>h5,#ls-global * .ls-slide>p,#ls-global * .ls-slide>span,body * .ls-slide>*,body * .ls-slide>a,body * .ls-slide>div,body * .ls-slide>h1,body * .ls-slide>h2,body * .ls-slide>h3,body * .ls-slide>h4,body * .ls-slide>h5,body * .ls-slide>p,body * .ls-slide>span,html * .ls-slide>*,html * .ls-slide>a,html * .ls-slide>div,html * .ls-slide>h1,html * .ls-slide>h2,html * .ls-slide>h3,html * .ls-slide>h4,html * .ls-slide>h5,html * .ls-slide>p,html * .ls-slide>span{ transition:none; -o-transition:none; -ms-transition:none; -moz-transition:none; -webkit-transition:none } #ls-global * .ls-slide>*,body * .ls-slide>*,html * .ls-slide>*{ margin:0 } #ls-global * .ls-container img,body * .ls-container img,html * .ls-container img{ background:0 0!important; min-width:0!important; max-width:none!important; border-radius:0; box-shadow:none; border:0; padding:0 } #ls-global * .ls-wp-container .ls-slide>*,body * .ls-wp-container .ls-slide>*,html * .ls-wp-container .ls-slide>*{ line-height:normal; outline:0; padding:0; margin:0; border:0 } #ls-global * .ls-wp-container .ls-slide>a>*,body * .ls-wp-container .ls-slide>a>*,html * .ls-wp-container .ls-slide>a>*{ margin:0 } #ls-global * .ls-wp-container .ls-slide>a,body * .ls-wp-container .ls-slide>a,html * .ls-wp-container .ls-slide>a{ text-decoration:none } .ls-container,.ls-container *,.ls-wp-fullwidth-container,.ls-wp-fullwidth-helper{ box-sizing:content-box!important; -moz-box-sizing:content-box!important; -webkit-box-sizing:content-box!important } #ls-global * .ls-yourlogo,body * .ls-yourlogo,html * .ls-yourlogo{ margin:0 } #ls-global * .ls-tn,body * .ls-tn,html * .ls-tn{ display:none } .site{ overflow:visible!important } .ls-debug-console *{ margin:0!important; padding:0!important; border:0!important; color:#fff!important; text-shadow:none!important; font-family:HelveticaNeue-Light,"Helvetica Neue Light",Helvetica,Arial,sans-serif!important; line-height:normal!important; -webkit-font-smoothing:antialiased!important; text-align:left!important; font-style:normal!important } .ls-debug-console h1{ padding-top:10px!important; font-size:17px!important; font-weight:700!important } .ls-debug-console h1:first-child{ padding-top:0!important } .ls-debug-console ul{ padding-top:10px!important; list-style:none!important } .ls-debug-console li{ margin-left:10px!important; font-size:13px!important; position:relative!important; font-weight:400!important } #ls-global * .ls-debug-console li ul,body * .ls-debug-console li ul,html * .ls-debug-console li ul{ display:none; width:260px; left:-10px } .ls-debug-console li ul{ position:absolute!important; bottom:100%!important; padding:10px 10px 10px 0!important; background:#fff!important; border-radius:10px!important; box-shadow:0 0 20px #000!important } #ls-global * .ls-debug-console li:hover ul,body * .ls-debug-console li:hover ul,html * .ls-debug-console li:hover ul{ display:block } .ls-debug-console li ul *{ color:#000!important } .ls-debug-console a{ text-decoration:none!important; border-bottom:1px dotted #fff!important } .ls-error{ border-radius:5px!important; -moz-border-radius:5px!important; -wenkit-border-radius:5px!important; background:#fff!important; height:auto!important; width:auto!important; color:#fff!important; padding:20px 40px 30px 80px!important; position:relative!important; box-shadow:0 2px 20px -5px #000 } .ls-error p{ line-height:normal!important; text-shadow:none!important; margin:0!important; padding:0!important; border:0!important; text-align:justify!important; font-family:Arial,sans-serif!important } .ls-error .ls-error-title{ line-height:40px!important; color:red!important; font-weight:700!important; font-size:16px!important } .ls-error .ls-error-text{ color:#555!important; font-weight:400!important; font-size:13px!important } .ls-error .ls-exclam{ width:40px!important; height:40px!important; position:absolute!important; left:20px!important; top:20px!important; border-radius:50px!important; -moz-border-radius:50px!important; -webkit-border-radius:50px!important; font-size:30px!important; font-weight:700!important; color:#fff!important; line-height:40px!important; background:red!important; text-align:center!important } #ls-global * .ls-container .ls-3d-container,#ls-global * .ls-container .ls-bottom-nav-wrapper,#ls-global * .ls-container .ls-fullscreen,#ls-global * .ls-container .ls-lt-container,#ls-global * .ls-container .ls-lt-container *,#ls-global * .ls-container .ls-shadow,#ls-global * .ls-container .ls-slide>*,#ls-global * .ls-container .ls-thumbnail-wrapper,.ls-gpuhack,body * .ls-container .ls-3d-container,body * .ls-container .ls-bottom-nav-wrapper,body * .ls-container .ls-fullscreen,body * .ls-container .ls-lt-container,body * .ls-container .ls-lt-container *,body * .ls-container .ls-shadow,body * .ls-container .ls-slide>*,body * .ls-container .ls-thumbnail-wrapper,html * .ls-container .ls-3d-container,html * .ls-container .ls-bottom-nav-wrapper,html * .ls-container .ls-fullscreen,html * .ls-container .ls-lt-container,html * .ls-container .ls-lt-container *,html * .ls-container .ls-shadow,html * .ls-container .ls-slide>*,html * .ls-container .ls-thumbnail-wrapper{ transform:translate3d(0,0,0); -o-transform:translate3d(0,0,0); -ms-transform:translate3d(0,0,0); -moz-transform:translate3d(0,0,0); -webkit-transform:translate3d(0,0,0) } .ls-videohack{ transform:none!important; -o-transform:none!important; -ms-transform:none!important; -moz-transform:none!important; -webkit-transform:none!important; transform-origin:none!important; -o-transform-origin:none!important; -ms-transform-origin:none!important; -moz-transform-origin:none!important; -webkit-transform-origin:none!important } .ls-oldiepnghack{ filter:none!important } .ls-gpuhack{ width:100%!important; height:100%!important; left:0!important; top:0!important } #ls-global * .ls-container .ls-webkit-hack,body * .ls-container .ls-webkit-hack,html * .ls-container .ls-webkit-hack{ width:100%; height:100%; position:absolute; left:0; top:0; z-index:1 } @media (transform-3d),(-o-transform-3d),(-ms-transform-3d),(-moz-transform-3d),(-webkit-transform-3d){ #ls-test3d{ position:absolute; left:9px; height:3px } } .ls-forcehide{ display:none!important } #layerslider-container{ background:url(images/layerslider-loader.gif) no-repeat center } .ls-nav-next,.ls-nav-prev,.ls-playvideo,.ls-playvideo:hover{ -webkit-transition:background-color .2s ease-in-out; -moz-transition:background-color .2s ease-in-out; -o-transition:background-color .2s ease-in-out; -ms-transition:background-color .2s ease-in-out; transition:background-color .2s ease-in-out } .ls-nav-next,.ls-nav-prev{ width:39px; height:71px; margin-top:-36px; display:block; position:absolute; z-index:100; cursor:pointer; text-indent:-9999px; top:50% } .ls-nav-prev{ background:url(images/slider-left.png) no-repeat 50%; background-color:#4c4c4c; left:0; border-radius:0 2px 2px 0 } .ls-nav-next{ background:url(images/slider-right.png) no-repeat 50%; background-color:#4c4c4c; right:0; border-radius:2px 0 0 2px } .ls-nav-next:hover,.ls-nav-prev:hover{ background-color:#169fe6 } .ls-playvideo{ width:50px; height:50px; display:block; margin-left:-25px; margin-top:-25px; background:url(images/layerslider-video.png) no-repeat 50%; opacity:.8 } .ls-playvideo:hover{ opacity:1 } .caption-color,.caption-gray,.caption-transparent{ padding:18px 22px; color:#fff; font-size:14px; font-weight:600; border-radius:2px; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1) } .caption-gray{ background:#4c4c4c } .caption-color{ background:#169fe6 } .caption-transparent{ background-color:#4c4c4c; background:rgba(0,0,0,.4) } .flex-container a:active,.flex-container a:focus,.flexslider a:active,.flexslider a:focus{ outline:0 } .flex-control-nav,.flex-direction-nav,.slides{ margin:0; padding:0; list-style:none } .flexslider{ margin:0; padding:0; z-index:1; position:relative } .flexslider .slides>li{ display:none } .flexslider .slides>li:first-child{ display:block } .flexslider .slides img{ width:100%; display:block } .flex-pauseplay span{ text-transform:capitalize } .slides:after{ content:"."; display:block; clear:both; visibility:hidden; line-height:0; height:0 } html[xmlns] .slides{ display:block } * html .slides{ height:1% } .no-js .slides>li:first-child{ display:block } .flexslider{ margin:0 0 0; border:none; position:relative; zoom:1 } .flexslider.home{ margin:0 } .flex-viewport{ max-height:2000px; -webkit-transition:all 1s ease; -moz-transition:all 1s ease; transition:all 1s ease } .loading .flex-viewport{ max-height:300px } .flexslider .slides{ zoom:1 } .carousel li{ margin-right:5px } .flex-direction-nav .flex-next{ background:url(images/slider-right.png) no-repeat 50%; background-color:#4c4c4c; right:0; border-radius:2px 0 0 2px } .flex-direction-nav .flex-prev{ background:url(images/slider-left.png) no-repeat 50%; background-color:#4c4c4c; left:0; border-radius:0 2px 2px 0 } .flex-direction-nav a{ width:39px; height:71px; margin-top:-36px; display:block; position:absolute; z-index:100; cursor:pointer; text-indent:-9999px; top:50%; opacity:1; -webkit-transition:opacity .2s ease-in-out,background-color .2s ease-in-out; -moz-transition:opacity .2s ease-in-out,background-color .2s ease-in-out; -o-transition:opacity .2s ease-in-out,background-color .2s ease-in-out; -ms-transition:opacity .2s ease-in-out,background-color .2s ease-in-out; transition:opacity .2s ease-in-out,background-color .2s ease-in-out } .flexslider.home:hover .flex-next,.flexslider.home:hover .flex-prev{ opacity:1 } .home .flex-direction-nav a{ opacity:0 } .flexslider .flex-next:hover,.flexslider .flex-prev:hover{ background-color:#169fe6 } .flex-control-nav{ width:100%; position:absolute; bottom:-40px; text-align:center } .flex-control-nav li{ margin:0 6px; display:inline-block; zoom:1 } .flex-control-paging li a{ width:14px; height:14px; display:block; background:#666; background:rgba(0,0,0,.5); cursor:pointer; text-indent:-9999px; -webkit-border-radius:20px; -moz-border-radius:20px; -o-border-radius:20px; border-radius:20px; box-shadow:inset 0 0 3px rgba(0,0,0,.3) } .flex-control-paging li a:hover{ background:#333; background:rgba(0,0,0,.7) } .flex-control-paging li a.flex-active{ background:#000; background:rgba(0,0,0,.9); cursor:default } .flex-control-thumbs{ margin:5px 0 0; position:static; overflow:hidden } .flex-control-thumbs li{ width:25%; float:left; margin:0 } .flex-control-thumbs img{ width:100%; display:block; opacity:.7; cursor:pointer } .flex-control-thumbs img:hover{ opacity:1 } .flex-control-thumbs .flex-active{ opacity:1; cursor:default } .slide-caption{ width:282px; padding:28px; margin:0; position:absolute; display:block; left:0; bottom:0; background-color:#222; background:rgba(0,0,0,.45) } .slide-caption h3{ color:#fff; padding-bottom:10px; margin:0; line-height:22px } .slide-caption p{ margin:0; line-height:19px; color:#bbb } .icon-box-container{ margin:40px 0 45px 0; float:left } .icon-box-container p{ margin:0 } .icon-box h3,.icon-box p{ margin-left:45px } .icon-box i{ float:left; font-size:28px; margin:8px 0 0 0; color:#404040 } .arl,.arr{ margin-top:20px; float:left; width:24px; height:24px; display:block; background-color:#eee; cursor:default; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.05); margin-right:1px } .arl i,.arr i{ margin:3px 0 0 9px; font-size:9px; color:#c8c8c8 } .arl{ border-radius:2px 0 0 2px } .arr{ border-radius:0 2px 2px 0 } .arl.active i,.arr.active i{ color:#fff } .arl.active,.arr.active{ background-color:#ccc; cursor:pointer; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.07) } .arl.active:hover,.arr.active:hover{ background-color:#169fe6; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1) } .carousel-navi{ margin:-10px 0 40px 0; float:left } .jcarousel{ position:relative; overflow:hidden } .jcarousel ul{ width:20000em; position:absolute; list-style:none; margin:0; padding:0 } .entire{ margin:30px 0 0 0 } .entire h3{ margin:0 0 8px 0 } .entire p{ margin:0 0 9px 0; color:#888 } .entire a{ color:#555 } .entire a:hover{ color:#888 } .item-description{ padding:14px 0 19px 0; background:#fff; border-radius:0 0 2px 2px; border-top:5px solid #e5e5e5; text-align:center; -webkit-transition:all 180ms ease-in-out; -moz-transition:all 180ms ease-in-out; -o-transition:all 180ms ease-in-out; -ms-transition:all 180ms ease-in-out; transition:all 180ms ease-in-out; -webkit-box-shadow:0 1px 1px rgba(0,0,0,.12),0 0 1px rgba(0,0,0,.1); box-shadow:0 1px 1px rgba(0,0,0,.12),0 0 1px rgba(0,0,0,.1) } .ie8 .item-description{ border-bottom:1px solid #e8e8e8 } .portfolio-item img{ -webkit-transition:opacity 180ms ease-in-out; -moz-transition:opacity 180ms ease-in-out; -o-transition:opacity 180ms ease-in-out; -ms-transition:opacity 180ms ease-in-out; transition:opacity 180ms ease-in-out } .portfolio-item:hover img{ opacity:.7 } .item-description h5{ margin-bottom:-3px; font-size:13px; font-weight:600 } .item-description span{ color:#888; font-size:13px; font-weight:300 } .portfolio-item{ margin:40px 0; display:block; background-color:#fff } .portfolio-item:hover>figure>.item-description{ -webkit-box-shadow:0 1px 1px rgba(0,0,0,.2),0 0 1px rgba(0,0,0,.1); box-shadow:0 1px 1px rgba(0,0,0,.2),0 0 1px rgba(0,0,0,.1); border-top:5px solid #169fe6 } .recent-blog{ margin-bottom:38px } .recent-blog h4{ line-height:21px; margin-bottom:10px } .recent-blog h4 a{ color:#333 } .recent-blog h4 a:hover{ color:#888 } .recent-blog p{ margin-top:7px; margin-bottom:0 } .margin-1{ margin:28px 0 22px 0 } .entry,.recent-blog h4,.recent-blog p{ margin-left:60px } .date{ float:left; text-align:center; height:0 } .date span{ display:block } .day{ background:#f2f2f2; padding:10px; font-size:16px; font-weight:500; color:#999; border-radius:2px 2px 0 0 } .month{ background:#ccc; padding:0 10px 2px 10px; color:#fff; border-radius:0 0 2px 2px; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.07) } .margin-reset{ margin-top:-10px } .sidebar.padding-reset{ padding-top:0 } .glyphicons{ margin:15px 0 0 0 } .glyphicons li{ margin:0 0 2px 1px } .glyphicons li i{ float:left; margin:0 5px 0 0 } .the-icons{ margin:18px 0 20px 0 } .the-icons li i{ font-size:22px; color:#555; float:left; margin:0 3px 0 0 } ul.the-icons li{ margin:0 0 14px 0 } #not-found{ margin:50px 0 75px 0 } #not-found h2{ text-align:center; font-size:210px; line-height:210px; font-weight:400; letter-spacing:-5px } #not-found p{ text-align:center; font-size:28px; line-height:36px } #not-found i{ color:#ddd; font-size:200px } .dropcap{ float:left; color:#169fe6; font-size:58px; line-height:54px; padding-top:4px; padding-right:10px; margin-top:-2px } .dropcap.gray{ color:#555 } .highlight.color,.highlight.gray,.highlight.light{ padding:2px 6px; color:#fff; border-radius:2px } .highlight.color{ background:#169fe6 } .highlight.gray{ background:#4c4c4c } .highlight.light{ background:#aaa } blockquote{ border-left:3px solid #e8e8e8; padding-left:20px; color:#888; line-height:20px; margin:5px 0 20px 15px } .skill-bar{ height:41px; position:relative; background:#f6f6f6; margin:0 0 10px 0; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.05) } .skill-bar-content[data-percentage]{ text-indent:-9999px } .skill-bar-content{ background:#169fe6; height:41px; width:0%; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.12) } .skill-bar .skill-title{ color:#fff; top:9px; left:15px; position:absolute } .skill-bar .percentage{ color:#666; position:absolute; top:9px; left:90% } .client-list li{ border:1px solid #e0e0e0; float:left; margin:-1px 0 0 -1px; -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03) } .team-name{ padding:20px 0 12px 0 } .team-name h5{ line-height:16px; font-size:13px } .team-name span{ display:block; font-weight:400; color:#888 } .team-about p{ margin-bottom:0 } .team-entry{ display:block; position:relative } .page-title{ -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03); border-bottom:1px solid #e0e0e0 } .page-title h2{ font-weight:400; padding:30px 0; float:left } #breadcrumbs ul{ float:right; padding:34px 0; font-size:12px } #breadcrumbs ul li{ display:inline-block; color:#888; padding:0 11px 0 0; margin:0 0 0 5px; background:url(images/breadcrumbs.png) no-repeat 100% 50% } #breadcrumbs ul li a,#breadcrumbs ul li:last-child a{ color:#169fe6 } #breadcrumbs ul li:first-child{ padding-right:0; margin-left:0 } #breadcrumbs ul li:first-child,#breadcrumbs ul li:last-child{ color:#888; background:0 0 } #breadcrumbs ul li:last-child{ padding:0; background:0 0 } .floated.sidebar.right{ background:#fcfcfc; margin-left:-1px; border-left:1px solid #e0e0e0; -webkit-box-shadow:inset 2px 0 0 0 rgba(0,0,0,.03),inset 0 2px 0 0 rgba(0,0,0,.03); box-shadow:inset 2px 0 0 0 rgba(0,0,0,.03),inset 0 2px 0 0 rgba(0,0,0,.03) } .floated.sidebar.left{ background:#fcfcfc; margin-right:-1px; border-right:1px solid #e0e0e0; -webkit-box-shadow:inset -2px 0 0 0 rgba(0,0,0,.03),inset 0 2px 0 0 rgba(0,0,0,.03); box-shadow:inset -2px 0 0 0 rgba(0,0,0,.03),inset 0 2px 0 0 rgba(0,0,0,.03) } .page-content,.sidebar{ padding:40px 0 } h4.margin{ margin:0 0 10px 0 } h3.margin{ margin:0 0 10px 0 } p.margin{ margin:0 0 25px 0 } .line{ height:1px; width:100%; margin:0 0 0 -40px; padding:0 80px 0 0; border-bottom:1px solid #e0e0e0; -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03) } .widget-search{ float:left } .ie8 .top-search,.ie8 .widget-search{ float:none } .widget-search input{ width:200px; color:#888 } .search-btn-widget{ float:right; position:relative; padding:0; top:0; right:0; margin:0 0 0 -35px; background:url(images/search-2.png) 50% no-repeat; background-color:#169fe6; width:35px; height:36px; cursor:pointer; border:none; z-index:100; border-radius:0 2px 2px 0; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.15); -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out } .search-btn-widget:hover{ background-color:#aaa; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1) } .categories a{ color:#666; display:block; padding:3px 0; padding-left:12px; background:url(images/categories.png) no-repeat left 7px } .categories li a:hover{ color:#888 } .categories li:first-child a{ margin:-6px 0 0 0 } .categories li span{ color:#aaa } .widget{ margin:30px 0 0 0 } .widget h4{ margin:0 0 12px 0 } .tags a{ padding:3px 10px 5px 10px; display:inline-block; color:#888; background-color:#f2f2f2; margin:0 2px 6px 0; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.05); border-radius:2px } .tags a:last-child{ margin-right:0 } .tags a:hover{ background:#169fe6; color:#fff; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.15) } .latest-post-blog{ margin-bottom:18px } .latest-post-blog p{ margin:0; color:#666; line-height:19px; margin-left:75px } .latest-post-blog p a{ color:#666; display:block } .latest-post-blog p a:hover{ color:#888 } .latest-post-blog p span{ color:#888; margin:5px 0 0 0; display:block } .latest-post-blog img{ float:left; width:56px; height:56px; border:1px solid #e0e0e0; padding:4px; -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03); -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out } .latest-post-blog img:hover{ background:#169fe6; border:1px solid #169fe6 } #twitter-blog li{ line-height:20px; margin:0 0 15px 0; padding:0 0 0 25px; background:url(images/twitter-01.png) no-repeat left 5% } #twitter-blog li:last-child{ margin:0 } #twitter-blog b a,#twitter-blog b a:hover{ color:#888; font-weight:400 } .flickr-widget-blog{ margin-right:-15px } .flickr-widget-blog img{ display:block; width:100% } .flickr-widget-blog a{ float:left; width:57px; height:57px; margin-right:10px; margin-bottom:10px; border:5px solid #e8e8e8; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out; border-radius:2px } .flickr-widget-blog a:hover{ border:5px solid #169fe6; border-radius:2px } .google-map-container{ margin:-4px 0 30px 0 } .google-map-container img{ max-width:none!important } #googlemaps{ height:30vh; display:block; padding-bottom:0!important } /*! fancyBox v2.1.3 fancyapps.com | fancyapps.com/fancybox/#license */ .fancybox-image,.fancybox-inner,.fancybox-nav,.fancybox-nav span,.fancybox-outer,.fancybox-skin,.fancybox-tmp,.fancybox-wrap,.fancybox-wrap iframe,.fancybox-wrap object{ padding:0; margin:0; border:0; outline:0; vertical-align:top } .fancybox-wrap{ position:absolute; top:0; left:0; z-index:8020 } .fancybox-skin{ position:relative; background:#f9f9f9; color:#444; text-shadow:none; -webkit-border-radius:4px; -moz-border-radius:4px; border-radius:4px } .fancybox-opened{ z-index:8030 } .fancybox-opened .fancybox-skin{ -webkit-box-shadow:0 10px 25px rgba(0,0,0,.5); -moz-box-shadow:0 10px 25px rgba(0,0,0,.5); box-shadow:0 10px 25px rgba(0,0,0,.5) } .fancybox-inner,.fancybox-outer{ position:relative } .fancybox-inner{ overflow:hidden } .fancybox-type-iframe .fancybox-inner{ -webkit-overflow-scrolling:touch } .fancybox-error{ color:#444; font:14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif; margin:0; padding:15px; white-space:nowrap } .fancybox-iframe,.fancybox-image{ display:block; width:100%; height:100% } .fancybox-image{ max-width:100%; max-height:100% } #fancybox-loading,.fancybox-close,.fancybox-next span,.fancybox-prev span{ background-image:url(images/fancybox_sprite.png) } #fancybox-loading{ position:fixed; top:50%; left:50%; margin-top:-22px; margin-left:-22px; background-position:0 -108px; opacity:.8; cursor:pointer; z-index:8060 } #fancybox-loading div{ width:44px; height:44px; background:url(images/fancybox_loading.gif) center center no-repeat } .fancybox-close{ position:absolute; top:-18px; right:-18px; width:36px; height:36px; cursor:pointer; z-index:8040 } .fancybox-nav{ position:absolute; top:0; width:40%; height:100%; cursor:pointer; text-decoration:none; background:transparent url(images/blank.gif); -webkit-tap-highlight-color:transparent; z-index:8040 } .fancybox-prev{ left:0 } .fancybox-next{ right:0 } .fancybox-nav span{ position:absolute; top:50%; width:36px; height:34px; margin-top:-18px; cursor:pointer; z-index:8040; visibility:hidden } .fancybox-prev span{ left:10px; background-position:0 -36px } .fancybox-next span{ right:10px; background-position:0 -72px } .fancybox-nav:hover span{ visibility:visible } .fancybox-tmp{ position:absolute; top:-99999px; left:-99999px; visibility:hidden; max-width:99999px; max-height:99999px; overflow:visible!important } .fancybox-lock{ overflow:hidden } .ie8 .fancybox-overlay{ background:url(images/fancybox_overlay.png)!important } .fancybox-overlay{ position:absolute; top:0; left:0; overflow:hidden; display:none; z-index:8010; background:url(images/fancybox_overlay.png) } .fancybox-overlay-fixed{ position:fixed; bottom:0; right:0 } .fancybox-lock .fancybox-overlay{ overflow:auto; overflow-y:scroll } .fancybox-title{ visibility:hidden; font:normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif; position:relative; text-shadow:none; z-index:8050 } .fancybox-opened .fancybox-title{ visibility:visible } .fancybox-title-float-wrap{ position:absolute; bottom:0; right:50%; margin-bottom:-35px; z-index:8050; text-align:center } .fancybox-title-float-wrap .child{ display:inline-block; margin-right:-100%; padding:2px 20px; background:0 0; background:rgba(0,0,0,.8); -webkit-border-radius:15px; -moz-border-radius:15px; border-radius:15px; text-shadow:0 1px 2px #222; color:#fff; font-weight:600; line-height:24px; white-space:nowrap } .fancybox-title-outside-wrap{ position:relative; margin-top:10px; color:#fff } .fancybox-title-inside-wrap{ padding-top:10px } .fancybox-title-over-wrap{ position:absolute; bottom:0; left:0; color:#fff; padding:10px; background:#000; background:rgba(0,0,0,.8) } #fancybox-buttons{ position:fixed; left:0; width:100%; z-index:8050 } #fancybox-buttons.top{ top:10px } #fancybox-buttons.bottom{ bottom:10px } #fancybox-buttons ul{ display:block; width:166px; height:30px; margin:0 auto; padding:0; list-style:none; border:1px solid #111; border-radius:3px; -webkit-box-shadow:inset 0 0 0 1px rgba(255,255,255,.05); -moz-box-shadow:inset 0 0 0 1px rgba(255,255,255,.05); box-shadow:inset 0 0 0 1px rgba(255,255,255,.05); background:#323232; background:-moz-linear-gradient(top,#444 0,#343434 50%,#292929 50%,#333 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#444),color-stop(50%,#343434),color-stop(50%,#292929),color-stop(100%,#333)); background:-webkit-linear-gradient(top,#444 0,#343434 50%,#292929 50%,#333 100%); background:-o-linear-gradient(top,#444 0,#343434 50%,#292929 50%,#333 100%); background:-ms-linear-gradient(top,#444 0,#343434 50%,#292929 50%,#333 100%); background:linear-gradient(top,#444 0,#343434 50%,#292929 50%,#333 100%) } #fancybox-buttons ul li{ float:left; margin:0; padding:0 } #fancybox-buttons a{ display:block; width:30px; height:30px; text-indent:-9999px; background-image:url(images/fancybox_buttons.png); background-repeat:no-repeat; outline:0; opacity:.8 } #fancybox-buttons a:hover{ opacity:1 } #fancybox-buttons a.btnPrev{ background-position:5px 0 } #fancybox-buttons a.btnNext{ background-position:-33px 0; border-right:1px solid #3e3e3e } #fancybox-buttons a.btnPlay{ background-position:0 -30px } #fancybox-buttons a.btnPlayOn{ background-position:-30px -30px } #fancybox-buttons a.btnToggle{ background-position:3px -60px; border-left:1px solid #111; border-right:1px solid #3e3e3e; width:35px } #fancybox-buttons a.btnToggleOn{ background-position:-27px -60px } #fancybox-buttons a.btnClose{ border-left:1px solid #111; width:35px; background-position:-56px 0 } #fancybox-buttons a.btnDisabled{ opacity:.4; cursor:default } .comments-sec{ float:left; width:100%; margin:30px 0 25px 0 } ol.commentlist{ float:left; width:100%; margin:0 } ol.commentlist li{ float:left; padding:10px 0 15px 0 } ol.commentlist li:first-child{ border:none; padding:25px 0 0 0 } ol.commentlist li{ list-style:none } ol li ol.childlist{ float:right; width:86%; margin:0 } ol.commentlist li ol.childlist li:first-child{ padding:25px 0 0 0 } ol.commentlist li ol.childlist li{ margin:0 0 15px 0 } .comments-amount{ color:#888 } ol li ol.childlist .comment-des{ float:left; width:78% } .avatar{ float:left } .avatar img{ float:left; border-radius:2px } .comment-des p{ margin:0 } .comment-des{ float:left; margin:-60px 0 0 81px; width:81%; background:#f6f6f6; color:#888; border-radius:2px; -webkit-box-shadow:: inset 0 -1px 0 0 rgba(0,0,0,.06); box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.06); padding:17px 20px 20px 20px } .arrow-comment{ width:10px; height:20px; position:relative; float:left; background:url(images/comment-arrow.png) no-repeat; margin-left:-30px } .comment-des strong{ float:left; padding-right:5px; font-size:13px } .comment-des span{ float:left; color:#888 } .comment-by{ float:left; width:100%; padding-bottom:8px; padding-top:5px } .comment-by span.reply{ color:#888; float:right; display:inline } .comment-by span.reply a{ float:right; height:17px; margin-left:5px; font-weight:400; float:right } .comment-by span.date{ color:#999; padding-right:7px; float:right } .portfolio-item.isotope{ margin:10px 0 } #filters{ display:block; margin:10px 0 24px -1px } #filters a{ color:#888; display:block; padding:4px 0 } #filters a:hover{ color:#666 } .selected{ color:#169fe6!important } .filters-dropdown{ position:relative; z-index:9; width:200px; height:20px; cursor:pointer; padding:6px 12px 8px 12px; display:inline-block; color:#888; background-color:#eee; margin:0 3px 6px 0; -webkit-transition:background-color .2s ease-out; -moz-transition:background-color .2s ease-out; -ms-transition:background-color .2s ease-out; -o-transition:background-color .2s ease-out; transition:background-color .2s ease-out; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.05); border-radius:2px } .filters-dropdown.active{ color:#fff; background-color:#169fe6; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.15) } .filters-dropdown.active:after{ border-color:#fff rgba(255,255,255,0) } .ie8 .filters-dropdown.active:after{ border-color:#fff transparent } .filters-dropdown.active .option-set{ opacity:1; pointer-events:auto; visibility:visible } .filters-dropdown:after{ content:""; width:0; height:0; position:absolute; right:12px; top:50%; margin-top:-2px; border-width:5px 5px 0 5px; border-style:solid; border-color:#aaa rgba(255,255,255,0) } .ie8 .filters-dropdown:after{ border-color:#aaa transparent } .filters-dropdown.active:after{ border-width:0 5px 5px 5px } .filters-dropdown .option-set{ width:190px; position:absolute; top:100%; margin-top:0; left:1px; z-index:1; border:inherit; background:#fff; list-style:none; -webkit-transition:opacity .2s ease-out; -moz-transition:opacity .2s ease-out; -ms-transition:opacity .2s ease-out; -o-transition:opacity .2s ease-out; transition:opacity .2s ease-out; opacity:0; pointer-events:none; padding:15px; -webkit-box-shadow:0 1px 1px rgba(0,0,0,.1),0 0 1px rgba(0,0,0,.2); box-shadow:0 1px 1px rgba(0,0,0,.1),0 0 1px rgba(0,0,0,.2); visibility:hidden } ul.option-set li a:active{ background:#fff } .ie8 .filters-dropdown .option-set{ display:none } .ie8 .filters-dropdown.active .option-set{ display:block } .page-content.portfolio{ padding:30px 0; background:#fcfcfc } .related-works{ margin-bottom:-40px; padding-bottom:40px; background:#fcfcfc } #portfolio-navi{ position:relative; float:right; display:block; margin:29px 0 0 10px } #portfolio-navi ul li{ display:inline } #portfolio-navi a{ padding:5px 10px 7px 10px; display:inline-block; color:#888; background-color:#f4f4f4; margin:0 0 6px 0; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.07); border-radius:2px } #portfolio-navi a:hover b{ opacity:1 } #portfolio-navi a:hover{ background-color:#169fe6; color:#fff; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.15) } .project-info{ padding:21px 25px; background:#f6f6f6; color:#888; border-radius:2px; -webkit-box-shadow:: inset 0 -1px 0 0 rgba(0,0,0,.07); box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.07) } .project-info .button{ line-height:22px } .project-info li:first-child{ padding-top:0 } .project-info li:last-child{ border-bottom:0 } .project-info li{ padding:2px 0 } .launch{ margin-top:10px } .project-tags{ margin-top:15px } .project-tags strong{ float:left; margin:5px 10px 20px 0 } .isotope-item{ z-index:2 } .isotope-hidden.isotope-item{ pointer-events:none; z-index:1 } .isotope,.isotope .isotope-item{ -webkit-transition-duration:.8s; -moz-transition-duration:.8s; -ms-transition-duration:.8s; -o-transition-duration:.8s; transition-duration:.8s } .isotope{ -webkit-transition-property:height,width; -moz-transition-property:height,width; -ms-transition-property:height,width; -o-transition-property:height,width; transition-property:height,width } .isotope .isotope-item{ -webkit-transition-property:-webkit-transform,opacity; -moz-transition-property:-moz-transform,opacity; -ms-transition-property:-ms-transform,opacity; -o-transition-property:top,left,opacity; transition-property:transform,opacity } .isotope .isotope-item.no-transition,.isotope.no-transition,.isotope.no-transition .isotope-item{ -webkit-transition-duration:0s; -moz-transition-duration:0s; -ms-transition-duration:0s; -o-transition-duration:0s; transition-duration:0s } .isotope.infinite-scrolling{ -webkit-transition:none; -moz-transition:none; -ms-transition:none; -o-transition:none; transition:none } .button,input[type=button],input[type=submit]{ padding:5px 14px 7px 14px; display:inline-block; border:0; font-weight:500; outline:0; font-size:13px; cursor:pointer; width:auto; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out; border-radius:2px; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.2); letter-spacing:-.2px } input[type=button],input[type=submit]{ float:left } .button i{ margin:0 2px 0 -1px; height:14px } .button i.halflings{ margin:2px 0 0 -1px } .button.medium{ padding:9px 18px; font-size:14px } .button.gray{ color:#fff; background:#4c4c4c; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.4) } .button.gray:hover{ background:#169fe6; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.2) } .button.light{ color:#fff; background:#aaa; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.15) } .button.light:hover{ background:#169fe6; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.2) } .button.color{ color:#fff; background:#169fe6; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.15) } .button.color:hover{ background:#aaa; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.15) } input[type=button],input[type=button]:focus,input[type=submit],input[type=submit]:focus{ color:#fff; background:#169fe6; padding:9px 11px; border:none!important } ininput[type=button]:hover,input[type=submit]:hover{ background:#aaa } .notification{ font-size:13px; line-height:18px; margin-bottom:15px; position:relative; padding:14px 40px 14px 18px; -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03) } .notification p{ margin:0 } .notification span{ font-weight:600 } .notification.success,.notification.success strong{ background-color:#ebf6e0; color:#5f9025; border:1px solid #b3dc82 } .notification.error,.notification.error strong{ background-color:#ffe9e9; color:#de5959; border:1px solid #fbc4c4 } .notification.warning,.notification.warning strong{ background-color:#fbfadd; color:#8f872e; border:1px solid #ded58a } .notification.notice,.notification.notice strong{ background-color:#e9f7fe; color:#5091b2; border:1px solid #b6d7e8 } .notification strong{ border:none!important } .notification.error .close,.notification.notice .close,.notification.success .close,.notification.warning .close{ padding:0 14px; position:absolute; right:0; top:20px; display:block; height:8px; weight:8px } .close i{ font-size:11px; margin:-5px 5px 0 0; float:left } .notification.success .close{ color:#8dbf52 } .notification.error .close{ color:#f59292 } .notification.warning .close{ color:#c6bd67 } .notification.notice .close{ color:#86b4cc } .tabs-nav{ list-style:none; margin:0; overflow:hidden; padding:0; width:100% } .tabs-nav li{ float:left; line-height:38px; overflow:hidden; padding:0; position:relative } .tabs-nav li a{ background-color:#f8f8f8; border:1px solid #e0e0e0; border-right:none; color:#888; font-weight:500; display:block; letter-spacing:0; outline:0; padding:0 20px; text-decoration:none; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out } .tabs-nav li:first-child a{ border-left:1px solid #e0e0e0 } .tabs-nav li:last-child a{ border-right:1px solid #e0e0e0 } .tabs-nav li.active a{ color:#333; font-weight:500 } .tabs-nav li.active i:before{ color:#555 } .tabs-nav li i:before{ color:#909090 } .tabs-nav li span{ margin-left:-7px } .tabs-nav li.active a i{ opacity:1 } .tabs-nav li i{ opacity:.64; margin:10px 0 0 0 } .tabs-nav li a:hover{ background:#fff } .tabs-nav li.active a{ background:#fff; border-bottom:1px solid #fff; border-top:1px solid #169fe6; color:#169fe6 } .tab-content{ padding:20px } .tabs-container{ border:1px solid #e0e0e0; margin:-1px 0 20px; overflow:hidden; width:100%; line-height:21px; -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03) } .accordion{ -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03) } .ui-accordion .ui-accordion-header{ display:block; cursor:pointer; position:relative; padding:0; font-size:13px; padding:14px 0 15px 0; line-height:26px; outline:0; color:#707070; border:1px solid #e0e0e0; margin-top:-1px; font-weight:500; -webkit-transition:background-color .2s ease-in-out; -moz-transition:background-color .2s ease-in-out; -o-transition:background-color .2s ease-in-out; -ms-transition:background-color .2s ease-in-out; transition:background-color .2s ease-in-out } .ui-accordion .ui-accordion-header{ background-color:#fcfcfc } .ui-accordion .ui-accordion-header:hover{ background-color:#fff } .ui-accordion .ui-accordion-header-active,.ui-accordion .ui-accordion-header-active:hover{ background-color:#fff; color:#169fe6; border-bottom:0 } .ui-accordion .ui-accordion-icons{ padding-left:50px } .ui-accordion .ui-accordion-header .ui-accordion-header-icon{ position:absolute; left:20px } .ui-accordion .ui-accordion-content{ padding:0 20px 20px 20px } .ui-accordion .ui-accordion-content p{ margin:0 } .ui-accordion .ui-accordion-content{ border:1px solid #e0e0e0; border-top:0 } .ui-accordion-icon,.ui-accordion-icon-active{ width:18px; height:18px; display:inline-block; background-color:#ccc; border-radius:2px; background-image:url(images/accordion-plus.png); background-repeat:no-repeat; background-position:50%; float:left; margin:5px 10px 0 0; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1); -webkit-transition:background-color .2s ease-in-out; -moz-transition:background-color .2s ease-in-out; -o-transition:background-color .2s ease-in-out; -ms-transition:background-color .2s ease-in-out; transition:background-color .2s ease-in-out } .ui-accordion-icon-active{ background-color:#169fe6; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.15); background-image:url(images/accordion-minus.png) } .toggle-wrap{ float:left; width:100%; border:1px solid #e0e0e0; margin-bottom:15px; -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03) } .trigger a{ display:block; cursor:pointer; position:relative; font-size:13px; padding:14px 0 15px 20px; line-height:26px; color:#707070; font-weight:500; -webkit-transition:background-color .2s ease-in-out; -moz-transition:background-color .2s ease-in-out; -o-transition:background-color .2s ease-in-out; -ms-transition:background-color .2s ease-in-out; transition:background-color .2s ease-in-out } .trigger a{ background-color:#fcfcfc } .trigger a:hover,.trigger.active a,.trigger.active a:hover{ background:#fff } .trigger.active a{ color:#169fe6 } .toggle-icon{ width:18px; height:18px; display:inline-block; background-color:#ccc; border-radius:2px; background-image:url(images/accordion-plus.png); background-repeat:no-repeat; background-position:50%; float:left; margin:5px 10px 0 0; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1); -webkit-transition:background-color .2s ease-in-out; -moz-transition:background-color .2s ease-in-out; -o-transition:background-color .2s ease-in-out; -ms-transition:background-color .2s ease-in-out; transition:background-color .2s ease-in-out } .trigger.active .toggle-icon{ background-color:#169fe6; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.15); background-image:url(images/accordion-minus.png) } .toggle-container p{ margin:0 } .toggle-container{ padding:0 20px 17px 20px } .large-notice{ background-color:#fcfcfc; border:1px solid #e0e0e0; padding:32px; -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03) } .large-notice h2{ margin-bottom:10px } .large-notice p{ font-size:14px; color:#888; line-height:22px } .check-list li,.plus-list li,.sign-list li,.star-list li{ list-style:none; margin:5px 0 } .check-list li:first-child,.plus-list li:first-child,.sign-list li:first-child,.star-list li:first-child{ margin-top:0 } .check-list li{ background:url(images/icon-list-check.png) no-repeat 0 3px; padding:0 0 0 18px } .sign-list li{ background:url(images/icon-list-sign.png) no-repeat 0 3px; padding:0 0 0 18px } .plus-list li{ background:url(images/icon-list-plus.png) no-repeat 0 3px; padding:0 0 0 18px } .star-list li{ background:url(images/icon-list-star.png) no-repeat 0 3px; padding:0 0 0 18px } table.standard-table{ width:100%; border-collapse:separate; border-spacing:0; border:none; margin-bottom:15px; -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03) } table.standard-table th{ border:1px solid #e0e0e0; border-right:none; background-color:#fafafa; text-align:left; padding:10px 15px; color:#444; vertical-align:top; font-size:14px; font-weight:600 } table.standard-table td:last-child{ border-right:1px solid #e0e0e0 } table.standard-table th:last-child{ border-right:1px solid #e0e0e0 } table.standard-table td{ padding:10px 15px; border:#e0e0e0 1px solid; border-top:none; border-right:none } table.standard-table tr:hover td{ background-color:#fafafa } .testimonial-container{ position:relative } .testimonials{ background:#f6f6f6; color:#888; padding:25px; line-height:21px; border-radius:2px; -webkit-box-shadow:: inset 0 -1px 0 0 rgba(0,0,0,.06); box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.06) } .testimonials-bg{ background:url(images/testimonials-bg.png) no-repeat; margin-top:-1px; display:block; margin-left:25px; width:200px; height:30px } .testimonials-author{ color:#169fe6; float:right; display:block; margin-top:-23px; margin-bottom:20px } .testimonials-author span{ color:#a0a0a0 } .flexslider.testimonial-slider .flex-direction-nav{ display:none } .arrow:after,.ui-tooltip{ background:#444 } .ui-tooltip{ color:#fff; padding:1px 8px; position:absolute; z-index:9999; font-size:11px; max-width:300px; -webkit-border-radius:2px; -moz-border-radius:2px; border-radius:2px } .fade{ opacity:0; -webkit-transition:opacity .1s ease-in-out; -moz-transition:opacity .1s ease-in-out; -o-transition:opacity .1s ease-in-out; -ms-transition:opacity .1s ease-in-out; transition:opacity .1s ease-in-out } .fade.in{ opacity:1 } .ie8 .arrow{ display:none } .arrow{ width:70px; height:5px; overflow:hidden; position:absolute; left:50%; margin-left:-35px; bottom:-5px } .arrow.top{ top:-16px; bottom:auto } .arrow.left{ left:20% } .arrow:after{ content:""; position:absolute; left:23px; top:-20px; width:21px; height:21px; -webkit-transform:rotate(45deg); -moz-transform:rotate(45deg); -ms-transform:rotate(45deg); -o-transform:rotate(45deg); tranform:rotate(45deg) } .arrow.top:after{ top:auto } .post{ margin:40px 0 } .post-content{ margin:0 0 0 63px } .post-img a img{ opacity:1; -webkit-transition:all 150ms ease-in-out; -moz-transition:all 150ms ease-in-out; -o-transition:all 150ms ease-in-out; -ms-transition:all 150ms ease-in-out; transition:all 150ms ease-in-out; margin:0 0 23px 0 } .post-img a:hover img{ opacity:.8 } .meta{ color:#888; margin:0 0 15px 0 } .meta a{ color:#888; text-decoration:none } .meta time{ margin:0 0 0 -2px } .meta a:hover{ color:#666 } .meta i.halflings{ display:inline-block; opacity:.53; margin:2px 5px 0 0 } .meta:after{ content:"."; display:block; clear:both; visibility:hidden; line-height:0; height:0 } .meta i.halflings:before{ color:#a5a5a5 } .meta span{ margin-right:12px; float:left } .meta h2{ line-height:26px; font-size:20px; font-weight:400; margin:0 0 2px 0 } .meta h2 a{ color:#444 } .meta h2 a:hover{ color:#666 } .medium-image{ float:left; margin:0 20px 0 0; width:28% } .medium-content{ float:left; width:59%; margin-left:60px } .post.medium{ margin-top:40px; margin-bottom:16px } .post.medium:after{ content:"."; display:block; clear:both; visibility:hidden; line-height:0; height:0 } .pagination{ margin:30px 0 } .pagination ul li a{ padding:6px 10px; border-bottom:none; display:inline-block; color:#888; float:left; margin-right:4px; background-color:#f4f4f4; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.07); border-radius:2px } .pagination .current{ background:#169fe6!important; color:#fff; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.15) } .pagination ul li a:hover{ background-color:#ccc; color:#fff; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1) } .about-author{ margin-bottom:40px; padding:20px; background:#f6f6f6; color:#888; border-radius:2px; -webkit-box-shadow:: inset 0 -1px 0 0 rgba(0,0,0,.06); box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.06) } .about-author p{ margin:0 0 2px 0 } .about-author img{ float:left; margin:7px 5px 5px 5px; width:65px; height:65px; border-radius:2px } .about-description{ margin:-2px 0 0 90px } .pricing-table{ float:left; margin:1px 0 0 -1px } .pricing-table h3{ font-size:16px; text-align:center; color:#fff; padding:6px 0; margin:0; font-weight:200 } .pricing-table ul{ padding:10px 0 0 0; border:1px solid #e0e0e0; border-top:0; background:#fff; -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03) } .pricing-table li{ color:#888; background:#fff; text-align:center; padding:4px 0 } li.sign-up{ border-top:1px solid #e0e0e0; background:#fafafa; padding:12px 0; margin-top:10px } li.sign-up a{ font-weight:200; letter-spacing:0 } li.sign-up a:hover{ opacity:.8 } .pricing-table h3,.pricing-table h4{ text-align:center; color:#fff; margin:0 } .pricing-table{ z-index:1; position:relative } .pricing-table h4{ padding:12px 0 10px 0 } .price,.time{ display:block; line-height:20px } .price{ font-size:24px; font-weight:400 } span.time{ font-size:12px; font-weight:200; opacity:.6 } .pricing-table.featured ul{ padding:10px 0 0 0; border:1px solid #e0e0e0; border-top:0; background:#fff; -webkit-box-shadow:0 0 0 0 transparent; box-shadow:0 0 0 0 transparent } .pricing-table.featured h3{ padding:11px 0 13px 0; margin:-12px 0 0 0 } .pricing-table.featured li.sign-up{ border-top:1px solid #e0e0e0; background:#fafafa; padding:18px 0; margin-top:10px } .featured div{ -webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.1); box-shadow:0 0 10px 0 rgba(0,0,0,.1) } .color-1 .sign-up .button,.pricing-table .color-1 h3{ background-color:#909090 } .pricing-table .color-1 h4{ background-color:grey } .color-2 .sign-up .button,.pricing-table .color-2 h3{ background-color:#565656 } .pricing-table .color-2 h4{ background-color:#4c4c4c } .pricing-table .color-3 h3{ background-color:#3dafea } .color-3 .sign-up .button,.pricing-table .color-3 h4{ background-color:#169fe6 } #contact fieldset div{ margin-bottom:20px } #contact fieldset div input{ width:220px } #contact textarea{ max-width:620px; min-width:620px; min-height:160px } #contact input,#contact select,#contact textarea{ -webkit-transition:background .2s ease-in-out,border-color .2s ease-in-out; -moz-transition:background .2s ease-in-out,border-color .2s ease-in-out; -o-transition:background .2s ease-in-out,border-color .2s ease-in-out; -ms-transition:background .2s ease-in-out,border-color .2s ease-in-out; transition:background .2s ease-in-out,border-color .2s ease-in-out } #contact input:focus,#contact select:focus,#contact textarea:focus{ border:1px solid #d6d6d6; outline:0; position:relative; z-index:5 } #contact input.error,#contact select.error,#contact textarea.error{ border:1px solid #f2c4c2; background:#ffeceb } #contact label span{ color:#ed1c1c } #contact input[type=submit][disabled]{ background:#aaa } #message{ margin:0; padding:0; display:block; background:transparent none } .loader{ padding:10px; float:left } #footer{ background:#4c4c4c; width:1020px; padding:30px 0 31px 0; margin:0 auto; font-size:12px } #footer-bottom{ background:#424242; width:1020px; padding:15px 0; margin:0 auto; font-size:12px } #footer,#footer a,#footer p{ color:#ddd } #footer a:hover{ color:#fff } #footer h4{ padding:0; margin:0 0 15px 0; font-size:14px; color:#fff } .copyright{ color:#aaa } .copyright a,.copyright span{ color:#eee!important } #sub-menu{ float:right; font-size:11px } #sub-menu ul li a{ color:#aaa } #sub-menu ul li a:hover{ color:#eee } #sub-menu ul li{ display:inline-block; border-left:1px solid #505050; margin:0; padding:0 8px 0 8px; line-height:12px } #sub-menu ul li:first-child{ border:none; padding-left:0 } #sub-menu ul li:last-child{ padding-right:0 } #logo-footer{ margin:10px 0 20px 0; width:85px; height:100px } .flickr-widget{ margin-right:-12px; margin-top:0 } .flickr-widget img{ display:block; width:100% } .flickr-widget a:hover{ border-color:#169fe6 } .flickr-widget a{ float:left; width:58px; height:58px; margin-right:9px; margin-bottom:9px; border:5px solid #424242; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out; border-radius:2px } .ie7 .flickr-widget a{ width:54px; height:54px } #twitter li{ margin:0 0 15px 0; padding:0 0 0 25px; background:url(images/social/twitter.png) no-repeat left 5% } #twitter li:last-child{ margin:0; padding:0 0 0 25px } #twitter a{ color:#fff } #twitter b a,#twitter b a:hover{ margin-top:5px; display:block; color:#999; font-weight:400 } .contact-details-alt li p strong{ color:#fff; float:left; margin:0 5px 5px 0 } .contact-details li p strong{ color:#666; float:left; margin:0 5px 5px 0 } span.hours{ float:right } .contact-informations.second{ margin:15px 0 0 0 } .address{ line-height:21px } .contact-details-alt li{ margin:0 0 15px 0 } .contact-details a,.contact-details li,.contact-details p{ color:#666 } .contact-informations p{ margin:0 } .contact-informations.hours i{ float:left; margin:0 5px 0 0 } .contact-details-alt p{ margin:-2px 0 0 22px; line-height:18px } .contact-informations li i{ float:left; margin:3px 5px 0 0 } .contact-details-alt li i{ float:left; margin:1px 0 0 0 } .shop-page.page-content{ margin:0 -10px } .container .four-shop.columns{ width:200px } #price-range input{ padding:0; background:0; border:0; box-shadow:none; margin:2px 0 0 4px; float:left; width:100px } #price-range .button{ float:right; padding:3px 11px 4px 11px; margin:-5px 0 0 0 } #price-range label{ float:left } .padding-range{ padding:0 8px } #slider-range{ margin:0 0 16px 0 } #price-range .ui-slider{ position:relative; text-align:left } #price-range .ui-slider .ui-slider-handle{ position:absolute; z-index:2; width:17px; height:17px; margin:2px 0 0 0; cursor:w-resize } #price-range .ui-slider .ui-slider-range{ position:absolute; z-index:1; height:14px; display:block; border:0; background-position:0 0 } #price-range .ui-widget-content{ box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.05); background-color:#f2f2f2; padding:2px 0; border-radius:2px } #price-range .ui-widget-header{ background:#169fe6; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1) } #price-range .ui-state-default{ background:#ddd; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.08); border-radius:2px } #price-range .ui-slider.ui-state-disabled .ui-slider-handle,#price-range .ui-slider.ui-state-disabled .ui-slider-range{ filter:inherit } #price-range .ui-slider-horizontal{ height:.8em } #price-range .ui-slider-horizontal .ui-slider-handle{ top:-.3em; margin-left:-.6em } #price-range .ui-slider-horizontal .ui-slider-range{ top:0; height:100% } #price-range .ui-slider-horizontal .ui-slider-range-min{ left:0 } #price-range .ui-slider-horizontal .ui-slider-range-max{ right:0 } #cart,.latest-shop-items{ padding:18px; width:84%; display:inline-block; background-color:#f2f2f2; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.05); border-radius:2px; color:#666 } .cart-items{ border-bottom:1px solid #e6e6e6; padding:0 0 10px 0 } #cart .button,.shop-item .button{ padding:5px 16px 6px 16px!important } #cart .button.color{ margin:0 0 0 2px } .cart-items li{ margin:0 0 10px 0 } .cart-items li:last-child{ margin:0 } a.cart-item-title{ color:#444; font-weight:600; display:block } a.cart-item-title:hover{ color:#888; display:block } .cart-item-amount{ color:#888; display:block; font-size:12px } .cart-subtotal{ display:block; margin:8px 0; color:#888 } .cart-subtotal strong{ color:#888; font-weight:500 } a.item-remove{ color:#eb4c4c; font-size:11px } .empty-cart{ color:#888 } .latest-shop-items{ margin-bottom:15px } .latest-shop-items p{ margin:0; color:#666; line-height:19px; margin-left:77px } .latest-shop-items p a{ color:#666; display:block } .latest-shop-items p a:hover{ color:#888 } .latest-shop-items p span{ color:#888; margin:5px 0 0 0; display:block } .latest-shop-items img{ float:left; width:56px; border:1px solid #e0e0e0; padding:4px; border-radius:2px; background:#fff; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out } .latest-shop-items img:hover{ background:#169fe6; border:1px solid #169fe6 } .shop-item img{ border:1px solid #eee; border-bottom:0; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; -webkit-transition:all 180ms ease-in-out; -moz-transition:all 180ms ease-in-out; -o-transition:all 180ms ease-in-out; -ms-transition:all 180ms ease-in-out; transition:all 180ms ease-in-out; -webkit-backface-visibility:hidden; -moz-backface-visibility:hidden; backface-visibility:hidden } .shop-item img:hover{ opacity:.7; border-color:#e7e7e7 } .shop-item .item-description{ padding:14px 10px 19px 10px } .shop-item .item-description h5{ line-height:18px; font-size:13px; font-weight:600; margin:3px 0 0 0; -webkit-transition:all 180ms ease-in-out; -moz-transition:all 180ms ease-in-out; -o-transition:all 180ms ease-in-out; -ms-transition:all 180ms ease-in-out; transition:all 180ms ease-in-out } .shop-item .item-description a:hover h5{ color:#888 } .shop-item .item-description span{ color:#666; font-size:13px; font-weight:300; display:block; margin:0 0 10px 0 } .shop-item{ margin:10px 0; display:block; background-color:#fff } .shop-item .item-description{ background-color:#f4f4f4; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.07); border-radius:0 0 2px 2px; border-color:#e8e8e8 } .shop-item .button{ padding:5px 13px 7px 13px } .pagination.shop{ margin:20px 0 40px 0 } .flexslider.shop{ border:1px solid #e0e0e0; -webkit-box-shadow:0 2px 0 0 rgba(0,0,0,.03); box-shadow:0 2px 0 0 rgba(0,0,0,.03); margin:0 0 20px 0 } .flexslider.shop img{ -webkit-transition:all 180ms ease-in-out; -moz-transition:all 180ms ease-in-out; -o-transition:all 180ms ease-in-out; -ms-transition:all 180ms ease-in-out; transition:all 180ms ease-in-out; -webkit-backface-visibility:hidden; -moz-backface-visibility:hidden; backface-visibility:hidden } .flexslider.shop img:hover{ opacity:.7 } .flexslider.shop .flex-direction-nav{ display:none } table.standard-table.shop{ margin:0; border-bottom:1px solid #e0e0e0 } table.standard-table.shop th{ border-bottom:none; font-size:13px } table.standard-table.shop th{ margin-bottom:-1px } table.standard-table.shop td{ padding:10px 15px; border:#e0e0e0 1px solid; border-bottom:none } .product-info .price{ font-size:20px; font-weight:300; color:#777; margin:0 0 15px 0 } .product-info h3{ font-size:20px; font-weight:500; color:#333; line-height:26px; margin:0 0 7px 0 } .product-amount input{ width:20px; padding:5px; text-align:center; float:left; border-radius:2px 0 0 2px } .product-amount{ margin:0 0 15px 0; float:left } .increase-value{ float:left; color:#fff; background:#169fe6; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.15); cursor:pointer; border-radius:0 2px 2px 0; margin-left:-1px; font-size:11px; height:30px; width:30px; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; transition:all .2s ease-in-out } .increase-value span{ margin:4px 0 0 11px; display:inline-block } .increase-value:hover{ background:#aaa; box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1) } @media only screen and (max-width:767px){ .container .four-shop.columns{ width:260px } } @media only screen and (min-width:480px) and (max-width:767px){ .container .four-shop.columns{ width:360px } } @media only screen and (min-width:768px) and (max-width:959px){ .container .four-shop.columns{ width:140px } } @media only screen and (max-width:767px){ .shop-page.page-content{ margin:0 } } @media only screen and (min-width:768px) and (max-width:959px){ #cart .button.color{ margin:5px 0 0 0 } } @media only screen and (min-width:960px){ .jcarousel{ height:317px } } @media only screen and (min-width:768px) and (max-width:959px){ #footer,#footer-bottom,#wrapper{ width:714px } #navigation{ width:734px } .style-2{ width:714px!important } .contact-details-alt li p strong{ margin:0 5px 0 0 } .line{ margin:0 0 0 -28px; padding:0 56px 0 0 } .widget-search input{ width:134px } .cut{ display:none } .sidebar{ padding:28px 0 } .post{ margin:24px 0 } ol li ol.childlist .comment-des{ float:right; width:70% } .comment-des{ float:right; width:73% } #contact textarea{ max-width:425px; min-width:425px } .medium-image{ margin:0 25px 0 0; width:35% } .medium-content{ width:46% } .post.medium{ margin:30px 0 } #not-found h2{ font-size:160px; line-height:160px } #not-found i{ font-size:155px } #not-found p{ font-size:22px; line-height:32px } .client-list img{ width:130px; height:auto } } @media only screen and (max-width:767px){ #sub-menu{ float:left; margin:5px 0 0 0 } #header{ display:none } .menu{ margin-top:3px } #logo{ display:none } #tagline,.contact-details,.js #responsive,.left-corner,.right-corner,.slide-caption,.social-icons,.top-search{ display:none } .portfolio-item,.recent-blog{ margin:0 0 40px 0 } .js .selectnav{ display:block } #navigation{ margin:0; width:100%; height:auto; background:0 0 } .selectnav{ cursor:pointer; padding:10px; margin:0 0 30px 30px; float:left; font-size:14px } #header{ min-height:115px } #footer h4{ margin-top:20px } #footer{ padding-top:20px } .page-title{ padding-bottom:30px!important } #breadcrumbs ul{ float:left; padding:0; margin-top:5px; width:100% } .icon-box-container{ margin:30px 0 20px 0 } .icon-box{ margin-bottom:20px } .page-title h2{ padding:0; position:relative } .post{ margin:24px 0 } .meta span{ display:none } .line{ margin:0 0 0 -30px; padding:0 60px 0 0 } .floated.sidebar.left,.floated.sidebar.right{ -webkit-box-shadow:none; box-shadow:none; padding-bottom:0; margin:0; border:none } .floated.sidebar.left{ border-bottom:1px solid #e0e0e0 } .floated.sidebar.right{ border-top:1px solid #e0e0e0 } #portfolio-navi{ float:left; margin-left:0 } #not-found h2{ font-size:110px; line-height:120px } #not-found i{ font-size:105px } #not-found p{ font-size:22px; line-height:32px } body .container .columns.carousel-intro{ float:none!important } .comment-by{ margin-bottom:20px } .caption-color,.caption-gray,.caption-transparent{ display:none!important } .post.medium{ margin:40px 0 } #logo-footer{ margin:20px 0 } .pricing-table{ margin-bottom:20px } .pricing-table.featured{ margin-top:12px } } .small-table table{ border:1px solid #ddd } .small-table th{ padding:10px; border:1px solid #f0f0f0; font-weight:700; background-color:#f2f2f2 } .small-table td{ padding:5px; border:1px solid #f7f7f7; text-align:center } @media only screen and (min-width:480px) and (max-width:767px){ #footer,#footer-bottom,#wrapper{ width:420px } .selectnav{ width:355px } .container.floated{ width:420px; padding:0 } .blank.floated{ width:360px; padding:0 30px } .flickr-widget a{ width:73px; height:73px; margin-right:9px; margin-bottom:9px } ol li ol.childlist .comment-des{ float:right; width:61% } .comment-des{ float:right; width:67% } #contact textarea{ max-width:340px; min-width:340px } .medium-image{ margin:0 25px 0 0; width:30% } .medium-content{ width:46% } .client-list img{ width:179px; height:auto } } @media only screen and (max-width:479px){ #footer,#footer-bottom,#wrapper{ width:320px } .selectnav{ width:255px } .container.floated{ width:320px; padding:0 } .blank.floated{ width:260px; padding:0 30px } .flickr-widget a{ width:69px; height:69px; margin-right:9px; margin-bottom:9px } ol li ol.childlist .comment-des{ float:right; width:47% } .comment-des{ float:right; width:54% } #contact textarea{ max-width:240px; min-width:240px } .medium-image{ margin:0 25px 0 0; width:100% } .medium-content{ width:80% } .client-list img{ width:260px; height:auto } } @media (min--moz-device-pixel-ratio:1.3),(-o-min-device-pixel-ratio:2.6/2),(-webkit-min-device-pixel-ratio:1.3),(min-device-pixel-ratio:1.3),(min-resolution:1.3dppx){ #twitter li{ background:url(images/social/twitter@2x.png) no-repeat left 5%; background-size:16px auto } #twitter-blog li{ background:url(images/twitter-01@2x.png) no-repeat left 5%; background-size:16px auto } #breadcrumbs ul li{ background:url(images/breadcrumbs@2x.png) no-repeat 100% 50%; background-size:3px auto } .categories a{ background:url(images/categories@2x.png) no-repeat left 47%; background-size:5px auto } .search-btn{ background:url(images/search@2x.png) center center no-repeat; background-size:13px auto } .search-btn-widget{ background:url(images/search-2@2x.png) 50% no-repeat; background-color:#169fe6; background-size:13px auto } .flex-direction-nav .flex-next{ background:url(images/slider-right@2x.png) no-repeat 50%; background-color:#4c4c4c; right:0; background-size:25% } .flex-direction-nav .flex-prev{ background:url(images/slider-left@2x.png) no-repeat 50%; background-color:#4c4c4c; left:0; background-size:25% } .ls-fullwidth .ls-nav-prev{ background:url(images/slider-left@2x.png) no-repeat 50%; background-color:#4c4c4c; left:0; background-size:25% } .ls-fullwidth .ls-nav-next{ background:url(images/slider-right@2x.png) no-repeat 50%; background-color:#4c4c4c; right:0; background-size:25% } .ui-accordion-icon,.ui-accordion-icon-active{ background-image:url(images/accordion-plus@2x.png); background-repeat:no-repeat; background-position:50%; background-size:12px } .ui-accordion-icon-active{ background-image:url(images/accordion-minus@2x.png) } .toggle-icon{ background-image:url(images/accordion-plus@2x.png); background-repeat:no-repeat; background-position:50%; background-size:12px } .trigger.active .toggle-icon{ background-image:url(images/accordion-minus@2x.png); background-size:12px } .check-list li{ background:url(images/icon-list-check@2x.png) no-repeat 0 3px; padding:0 0 0 18px; background-size:13px 11px } .sign-list li{ background:url(images/icon-list-sign@2x.png) no-repeat 0 3px; padding:0 0 0 18px; background-size:12px } .plus-list li{ background:url(images/icon-list-plus@2x.png) no-repeat 0 3px; padding:0 0 0 18px; background-size:12px } .star-list li{ background:url(images/icon-list-star@2x.png) no-repeat 0 3px; padding:0 0 0 18px; background-size:12px } .twitter{ background:url(images/social/twitter@2x.png) no-repeat 50%; background-size:50% } .facebook{ background:url(images/social/facebook@2x.png) no-repeat 50%; margin:0 -4px; background-size:50% } .dribbble{ background:url(images/social/dribbble@2x.png) no-repeat 50%; background-size:50% } .linkedin{ background:url(images/social/linkedin@2x.png) no-repeat 50%; background-size:50% } .rss{ background:url(images/social/rss@2x.png) no-repeat 50%; margin:0 -5px 0 0; background-size:50% } .amazon{ background:url(images/social/amazon@2x.png) no-repeat 50%; background-size:50% } .blogger{ background:url(images/social/blogger@2x.png) no-repeat 50%; background-size:50% } .deviantart{ background:url(images/social/deviantart@2x.png) no-repeat 50%; background-size:50% } .digg{ background:url(images/social/digg@2x.png) no-repeat 50%; background-size:50% } .flickr{ background:url(images/social/flickr@2x.png) no-repeat 50%; background-size:50% } .forrst{ background:url(images/social/forrst@2x.png) no-repeat 50%; background-size:50% } .lastfm{ background:url(images/social/lastfm@2x.png) no-repeat 50%; background-size:50% } .picasa{ background:url(images/social/picasa@2x.png) no-repeat 50%; background-size:50% } .pinterest{ background:url(images/social/pinterest@2x.png) no-repeat 50%; background-size:50% } .skype{ background:url(images/social/skype@2x.png) no-repeat 50%; background-size:50% } .tumblr{ background:url(images/social/tumblr@2x.png) no-repeat 50%; background-size:50% } .vimeo{ background:url(images/social/vimeo@2x.png) no-repeat 50%; background-size:50% } .wordpress{ background:url(images/social/wordpress@2x.png) no-repeat 50%; background-size:50% } .yahoo{ background:url(images/social/yahoo@2x.png) no-repeat 50%; background-size:50% } .youtube{ background:url(images/social/youtube@2x.png) no-repeat 50%; background-size:50% } }
0.275422
0.068102
.sitesList { margin: auto; padding-top: 6rem; width: 50%; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto; } @media (max-width: 768px) { .sitesList { grid-template-columns: none; } } .sitesListItem { padding-top: 2rem; padding-bottom: 2rem; width: 75%; padding-left: 25%; display: inline-block; word-break: break-all; } .siteLink { font-size: 1.5rem; color: #212121; text-decoration-line: underline; text-decoration-color: #212121; padding-top: 0.1rem; padding-bottom: 0.1rem; transition-duration: 200ms; transition-timing-function: ease-in-out; font-family: 'Cutive Mono', monospace; } .siteLink:hover { transition-duration: 200ms; transition-timing-function: ease-in-out; color: #eeeeee; text-decoration-line: underline; text-decoration-color: #eeeeee; background-color: #212121; } .siteLinkEdit { font-size: 1.5rem; color: #212121; text-decoration-line: underline; text-decoration-color: #212121; text-decoration-style: dashed; padding-top: 0.1rem; padding-bottom: 0.1rem; transition-duration: 200ms; transition-timing-function: ease-in-out; font-family: 'Cutive Mono', monospace; cursor: pointer; } .siteLinkEdit:hover { transition-duration: 200ms; transition-timing-function: ease-in-out; color: #eeeeee; text-decoration-line: underline; text-decoration-color: #eeeeee; text-decoration-style: dashed; background-color: #212121; } .emptyContainer { margin: auto; padding-top: 6rem; width: 50%; } .emptyButton { padding-top: 2rem; padding-bottom: 2rem; word-break: break-word; font-size: 1.5rem; transition-duration: 200ms; transition-timing-function: ease-in-out; font-family: 'Cutive Mono', monospace; background: Transparent no-repeat; border: none; cursor: pointer; overflow: hidden; outline: none; color: #90a4ae; } .emptyButton:hover:enabled { transition-duration: 200ms; transition-timing-function: ease-in-out; color: #263238; } .emptyButton:active:enabled { transition-duration: 200ms; transition-timing-function: ease-in-out; opacity: 0.3; } /* Prevent the text contents of draggable elements from being selectable. */ [draggable] { -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; user-select: none; }
src/styles/containers/Sites.css
.sitesList { margin: auto; padding-top: 6rem; width: 50%; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto; } @media (max-width: 768px) { .sitesList { grid-template-columns: none; } } .sitesListItem { padding-top: 2rem; padding-bottom: 2rem; width: 75%; padding-left: 25%; display: inline-block; word-break: break-all; } .siteLink { font-size: 1.5rem; color: #212121; text-decoration-line: underline; text-decoration-color: #212121; padding-top: 0.1rem; padding-bottom: 0.1rem; transition-duration: 200ms; transition-timing-function: ease-in-out; font-family: 'Cutive Mono', monospace; } .siteLink:hover { transition-duration: 200ms; transition-timing-function: ease-in-out; color: #eeeeee; text-decoration-line: underline; text-decoration-color: #eeeeee; background-color: #212121; } .siteLinkEdit { font-size: 1.5rem; color: #212121; text-decoration-line: underline; text-decoration-color: #212121; text-decoration-style: dashed; padding-top: 0.1rem; padding-bottom: 0.1rem; transition-duration: 200ms; transition-timing-function: ease-in-out; font-family: 'Cutive Mono', monospace; cursor: pointer; } .siteLinkEdit:hover { transition-duration: 200ms; transition-timing-function: ease-in-out; color: #eeeeee; text-decoration-line: underline; text-decoration-color: #eeeeee; text-decoration-style: dashed; background-color: #212121; } .emptyContainer { margin: auto; padding-top: 6rem; width: 50%; } .emptyButton { padding-top: 2rem; padding-bottom: 2rem; word-break: break-word; font-size: 1.5rem; transition-duration: 200ms; transition-timing-function: ease-in-out; font-family: 'Cutive Mono', monospace; background: Transparent no-repeat; border: none; cursor: pointer; overflow: hidden; outline: none; color: #90a4ae; } .emptyButton:hover:enabled { transition-duration: 200ms; transition-timing-function: ease-in-out; color: #263238; } .emptyButton:active:enabled { transition-duration: 200ms; transition-timing-function: ease-in-out; opacity: 0.3; } /* Prevent the text contents of draggable elements from being selectable. */ [draggable] { -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; user-select: none; }
0.520009
0.149593
.site-container { max-width: 1440px; } .profile-photo { text-align: center; } .profile-photo img { width: 250px; } .job-titles { max-width: 600px; margin: 0 auto; background: url(http://res.cloudinary.com/dk9viy9wg/image/upload/v1486338071/portfolio-2017/plus-sign-icon.png) 48% 44% no-repeat; background-size: 10px 9px; overflow: hidden; } .job-titles h1:nth-of-type(1) { float: left; } .job-titles h1:nth-of-type(2) { float: right; } .job-titles h1 { font-family: Raleway; font-weight: 200; font-size: 26px; letter-spacing: 0; color: rgba(0,0,0,.8); } .job-titles h1 strong { font-weight: 600; } .job-titles h1 em { display: block; text-align: center; font-size: 15px; font-weight: 300; font-style: normal; color: rgba(0,0,0,.5); margin-top: 10px; } @media (max-width:600px) { .job-titles { max-width: 600px; background: url(http://res.cloudinary.com/dk9viy9wg/image/upload/v1486338071/portfolio-2017/plus-sign-icon.png) 50% 50% no-repeat; background-size: 10px 9px; } .job-titles h1 { text-align: center; float: none !important; margin: 50px 0; } } .hide-all-projects { display: none; margin-top: 200px; } @media (min-width:320px) { .both-devices-container { margin: 25px auto; position: relative; max-width: 1000px; width: 100%; } .desktop-device { background: url(http://res.cloudinary.com/dk9viy9wg/image/upload/v1486336564/portfolio-2017/macbook-black-bg.png) 0% 0% no-repeat; background-size: contain; width: 100%; height: 63vw; position: relative; left: 0; } .desktop-device .desktop-inset { width: 75%; height: 48vw; overflow: hidden; position: relative; left: 13vw; top: 3.2vw; } .desktop-device .desktop-inset img { width: 100%; } .mobile-device { background: url(http://res.cloudinary.com/dk9viy9wg/image/upload/v1486336564/portfolio-2017/iphone-black-bg.png); width: 35vw; height: 61vw; position: absolute; top: 0; right: 0; display: block; background-size: contain; } .mobile-device .mobile-inset { width: 69%; height: 42.7vw; overflow: hidden; position: absolute; left: 4.75vw; top: 6.5vw; } .mobile-device .mobile-inset img { width: 100%; } } @media (min-width:992px) { .both-devices-container { margin: 25px auto; position: relative; max-width: 992px; width: 100%; left: -7%; } .desktop-device { background: url(http://res.cloudinary.com/dk9viy9wg/image/upload/v1486336564/portfolio-2017/macbook-black-bg.png) 0% 0% no-repeat; background-size: contain; width: 100%; height: 568px; position: relative; left: 0; } .desktop-device .desktop-inset { width: 71%; height: 440px; overflow: hidden; position: relative; left: 11.4%; top: 5%; } .desktop-device .desktop-inset img { width: 100%; } .mobile-device { background: url(http://res.cloudinary.com/dk9viy9wg/image/upload/v1486336564/portfolio-2017/iphone-black-bg.png); width: 333px; height: 585px; position: absolute; top: 0; right: -10%; display: block; } .mobile-device .mobile-inset { width: 230px; height: 407px; overflow: hidden; position: absolute; left: 46px; top: 63px; } .mobile-device .mobile-inset img { width: 100%; } } @media (max-width:640px) { /* .both-devices-container { text-align: center; } .desktop-device { width: 49%; float: left; } .mobile-device { width: 49%; float: right; } .both-devices-container img { width: 100%; }*/ } .desktop-device .desktop-inset img { width: 100%; -webkit-animation: scrollPageDesktop 12s ease 2s infinite; animation: scrollPageDesktop 12s ease 2s infinite; } .mobile-device .mobile-inset img { width: 100%; -webkit-animation: scrollPageMobile 20s ease 5s infinite; animation: scrollPageMobile 20s ease 5s infinite; } /*.desktop-device .desktop-inset:hover img { width: 100%; -webkit-animation: scrollPageDesktop 25s ease 0s infinite; animation: scrollPageDesktop 25s ease 0s infinite; } .mobile-device .mobile-inset:hover img { width: 100%; -webkit-animation: scrollPageMobile 25s ease 0s infinite; animation: scrollPageMobile 25s ease 0s infinite; }*/ @-webkit-keyframes scrollPageDesktop { 0% { -webkit-transform: translateY(0); transform: translateY(0); } 30%, 35% { -webkit-transform: translateY(-75%); transform: translateY(-75%); } 70%, 100% { -webkit-transform: translateY(0); transform: translateY(0); } } @-webkit-keyframes scrollPageMobile { 0% { -webkit-transform: translateY(0); transform: translateY(0); } 30%, 35% { -webkit-transform: translateY(-63%); transform: translateY(-63%); } 70%, 100% { -webkit-transform: translateY(0); transform: translateY(0); } } /* @group MAIN CONTENT */ @media (min-width:992px) { section.content.content-container { width: 992px; margin: 0 auto; } } @media (min-width:320px) { .recent-projects h1 { font-size: 38px; font-family: Raleway; font-weight: 400; text-align: center; margin: 0 0 25px 0; } .project-preview h3 { text-align: center; margin: 0 0 3px 0; font-size: 18px; font-family: Raleway; font-weight: 400; } .project-list ul { list-style: none; padding: 0; /*background: rgba(0,0,0,.1);*/ margin: 20px 0 0 0; } .web-development-container .project-list ul { padding: 0 0 0 2vw; } .design-container .project-list ul { padding: 0 2vw 0 0; } .project-list ul li { } .project-list ul li a { /*color: rgba(24,186,215,1);*/ /*color: rgba(14,167,230,1);*/ color: rgba(0,0,0,.7); display: block; font-weight: 200; /*transition: all .2s linear;*/ } .project-list ul li.active a { font-weight: 500; } .project-list ul:hover li.active a { font-weight: 200; } .project-list ul li:hover a { font-weight: 500; } .project-list ul:hover li.active:hover a { font-weight: 500; } section.content.content-container { width: 1000px; margin: 0 auto; } .web-development-container { width: 100%; } .project-preview.development { width: 50%; float: left; } .web-development-container .project-list { float: left; width: 50%; } .recent-projects .browser-bar { background: url(http://res.cloudinary.com/dk9viy9wg/image/upload/v1486418043/portfolio-2017/browser-bar-background-repeat.png) center top repeat-x; background-size: 100% 24px; overflow: hidden; } .recent-projects .browser-bar img { height: 24px; } .project-preview.development .preview-inset { width: 100%; height: 200px; background: rgba(0,0,0,.1); box-shadow: 2px 2px 6px -1px rgba(0,0,0,.3); -webkit-box-shadow: 2px 2px 6px -1px rgba(0,0,0,.3); -moz-box-shadow: 2px 2px 6px -1px rgba(0,0,0,.3); -khtml-box-shadow: 2px 2px 6px -1px rgba(0,0,0,.3); overflow: hidden; } .project-preview.development .preview-inset img { width: 100%; } .design-container { width: 100%; clear: both; /* margin: 20px 0 0 0; clear: both; float: left;*/ padding: 20px 0 0 0; } .design-container .project-list { float: left; width: 44%; text-align: right; } .project-preview.design { width: 56%; float: right; } .project-preview.design .preview-inset { width: 100%; height: 260px; background: rgba(0,0,0,.1); box-shadow: 2px 2px 6px -1px rgba(0,0,0,.3); -webkit-box-shadow: 2px 2px 6px -1px rgba(0,0,0,.3); -moz-box-shadow: 2px 2px 6px -1px rgba(0,0,0,.3); -khtml-box-shadow: 2px 2px 6px -1px rgba(0,0,0,.3); overflow: hidden; } .project-preview.design .preview-inset img { width: 100%; } .recent-projects { width: 60%; float: left; font-size: 18px; font-family: Raleway; font-weight: 100; padding-right: 25px; } .about-me { width: 37%; float: right; padding: 0 0 25px 0px; font-family: Raleway; font-weight: 300; font-size: 16px; } .improve-experience { font-size: 21px; } section.content.content-container { padding: 0 0 100px 0; overflow: hidden; } .about-me h2 { font-size: 26px; margin: 0 0 10px 0; } .about-me h4 { font-size: 22px; margin: 30px 0 10px 0; } .about-me ul { padding: 20px 0 0 0px; font-size: 17px; list-style: none; } .about-me ul li { width: 62%; float: left; font-weight: 500; } .about-me ul li:nth-child(2n) { width: 38%; float: left; } } @media (min-width:320px) and (max-width:992px) { section.content.content-container { width: 100%; margin: 0 auto; } .recent-projects { width: 100%; float: left; font-size: 18px; font-family: Raleway; font-weight: 100; padding: 0 3vw 0 3vw; } .about-me { width: 100%; float: right; padding: 0 5vw 30px 5vw; } .project-preview.development .preview-inset { width: 100%; height: 30vw; background: rgba(0,0,0,.1); } .project-preview.design .preview-inset { width: 100%; height: 40vw; background: rgba(0,0,0,.1); } } @media (min-width:640px) and (max-width:992px) { .improve-experience { width: 37%; float: left; padding: 0 4vw 0 0; font-size: 18px; } .improve-experience p { color: rgba(0,0,0,1); } .improve-experience h2 { font-size: 24px; } .offered-services { width: 63%; float: right; font-size: 15px; } .offered-services h4 { margin: 0 0 10px 0; /*font-weight: 300;*/ } } @media (min-width:320px) and (max-width:640px) { .profile-photo img { width: 30%; } .job-titles h1 { margin: 25px 0; } } .web-development-container .link-colors { padding: 22px 0vw 5px 2vw; } .web-development-container .link-colors em { width: 16.6%; float: left; height: 15px; } .project-list ul { margin: 10px 0 0 0; float: left; width: 100%; } .link-colors em.color-one { background: rgba(24,186,215,1); } .link-colors em.color-two { background: rgba(225,113,14,1); } .link-colors em.color-three { background: rgba(229,42,42,1); } .link-colors em.color-four { background: rgba(53,201,180,1); } .link-colors em.color-five { background: rgba(244,47,149,1); } .link-colors em.color-six { background: rgba(73,73,73,1); } .project-list.color-one ul a { background: rgba(24,186,215,1); color: rgba(255,255,255,1); } .project-list.color-two ul a { background: rgba(225,113,14,1); color: rgba(255,255,255,1); } .project-list.color-three ul a { background: rgba(229,42,42,1); color: rgba(255,255,255,1); } .project-list.color-four ul a { background: rgba(53,201,180,1); color: rgba(255,255,255,1); } .project-list.color-five ul a { background: rgba(244,47,149,1); color: rgba(255,255,255,1); } .project-list.color-six ul a { color: rgba(73,73,73,1); background: rgba(255,255,255,1); } .web-development-container .project-list ul a { padding: 0 0 0 10px; } .web-development-container .project-list ul li:first-of-type a { padding: 5px 0 0 10px; } .web-development-container .project-list ul li:last-of-type a { padding: 0 0 5px 10px; } .design-container .link-colors { padding: 22px 0 5px 2vw; margin-top: 2px; } .design-container .link-colors { padding: 20px 2vw 5px 0vw; } .link-colors em { width: 16.6%; float: left; height: 15px; } .link-colors em.color-seven { background: rgba(19,204,10,1); } .link-colors em.color-eight { background: rgba(142,42,244,1); } .link-colors em.color-nine { background: rgba(55,138,222,1); } .link-colors em.color-ten { background: rgba(251,59,28,1); } .link-colors em.color-eleven { background: rgba(122,179,12,1); } .link-colors em.color-twelve { background: rgba(73,73,73,1); } .project-list.color-seven ul a { background: rgba(19,204,10,1); color: rgba(255,255,255,1); } .project-list.color-eight ul a { background: rgba(142,42,244,1); color: rgba(255,255,255,1); } .project-list.color-nine ul a { background: rgba(55,138,222,1); color: rgba(255,255,255,1); } .project-list.color-ten ul a { background: rgba(251,59,28,1); color: rgba(255,255,255,1); } .project-list.color-eleven ul a { background: rgba(122,179,12,1); color: rgba(255,255,255,1); } .project-list.color-twelve ul a { background: rgba(255,255,255,1); color: rgba(73,73,73,1); } .project-list .view-all { margin: 10px 0 0 0; } .project-list .view-all a { width: 100%; background: rgba(24,186,215,1) !important; padding: 5px 15px !important; color: rgba(255,255,255,1) !important; font-size: 16px; } .design-container .project-list ul a { padding: 0 10px 0 0; } .design-container .project-list ul li:first-of-type a { padding: 5px 10px 0 0px; } .design-container .project-list ul li:last-of-type a { padding: 0 10px 5px 0px; } @media (min-width:320px) and (max-width:414px) { .web-development-container .link-colors em { width: 16.6%; float: left; height: 15px ; } .design-container .link-colors { padding: 20px 2vw 5px 0vw; } .design-container .link-colors em { width: 16.6%; float: left; height: 15px; } .project-preview { /*display: none;*/ width: 100% !important; /*width: 100% !important;*/ } .project-preview .browser-bar { display: none; } .project-preview .preview-inset { /*display: none;*/ height: 50vw !important; } .recent-projects .project-list { /*width: 99%;*/ width: 100%; } .recent-projects .project-list ul { margin: 10px 0 0 0; float: left; width: 100%; clear: both; padding: 0; } .recent-projects .project-list .link-colors { padding: 22px 0vw 5px 0; } .recent-projects .project-list .link-colors em { height: 25px; } .recent-projects .project-list ul li a { font-size: 16px; } .offered-services ul li { float: none; font-size: ; width: 100% !important; } .recent-projects h1 { text-align: center; } } .web-development-container .preview-inset { background: url(http://res.cloudinary.com/dk9viy9wg/image/upload/v1486435938/portfolio-2017/durbins-homepage-2017-1000px-above-fold.jpg) center top !important; background-size: 100% auto !important; } .web-development-container .preview-inset img { display: none; } .web-development-container .preview-inset img.show-design-image { display: block; } .design-container .preview-inset { background: url(http://res.cloudinary.com/dk9viy9wg/image/upload/v1486437839/portfolio-2017/myhubbnetwork-800px-crop.jpg) center top !important; background-size: 100% auto !important; } .design-container .preview-inset img { display: none; } .design-container .preview-inset img.show-design-image { display: block; } section.semantic-content { padding: 0 0 0 0; height: auto; } .modal--fade header>h2, .semantic-content header>h2, .modal--show header>h2 { margin: .5em 0; display: none; } .modal--fade header, .semantic-content header, .modal--show header { border-bottom: none; padding: 0; } .modal--fade .modal-content, .semantic-content .modal-content, .modal--show .modal-content { position: relative; max-height: auto; height: auto; width: 100%; max-height: 100vh; overflow-x: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 0; border: none; border-radius: 0; background: none; } .modal--fade .modal-inner, .semantic-content .modal-inner, .modal--show .modal-inner { border-radius: 0; background: none; height: auto; max-height: auto; box-shadow: 0; max-width: 100%; -webkit-transition: max-width .25s linear,margin-left .125s linear; transition: max-width .25s linear,margin-left .125s linear; } .modal--fade .modal-inner, .semantic-content .modal-inner, .modal--show .modal-inner { position: relative; top: 0; left: 0; z-index: 20; margin-left: 0; width: 100%; overflow-x: hidden; -webkit-overflow-scrolling: touch; } section .modal-inner footer { display: none; } .modal--fade .modal-close:after, .semantic-content .modal-close:after, .modal--show .modal-close:after { content: '\00d7'; position: absolute; top: 25px; right: 25px; /* left: 0; */ z-index: 20; margin-right: 0; } .modal--fade .modal-close:after, .semantic-content .modal-close:after, .modal--show .modal-close:after { content: '\00d7'; background: rgba(255,255,255,1); border-radius: 70px; color: rgba(0,0,0,1); width: 41px; font-weight: bold; padding: 4px 0 10px 0; text-align: center; line-height: 27px; font-size: 30px; text-decoration: none; text-indent: 0; box-shadow: 0px 0px 10px 0px rgba(0,0,0,.5); -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,.5); -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,.5); -khtml-box-shadow: 0px 0px 10px 0px rgba(0,0,0,.5); -webkit-animation: pulseSize .5s infinite; -moz-animation: pulseSize .5s infinite; -o-animation: pulseSize .5s infinite; animation: pulseSize .5s infinite; } @keyframes pulseSize { from { transform: none; -webkit-transform: none; } 50% { transform: scale(1.3); -webkit-transform: scale(1.3); } to { transform: none; -webkit-transform: none; } } .modal--fade .modal-close:hover:after, .semantic-content .modal-close:hover:after, .modal--show .modal-close:hover:after { transform: scale(1.3) !important; -webkit-transform: scale(1.3) !important; -webkit-animation: none; animation: none; } .modal-images-container { text-align: center; } .modal-images-container img { width: 100%; } .naturesweettomatoes-modal img { /*width: 50%;*/ /*float: left;*/ } .wciu-mobile-modal img { max-width: 400px; margin: 0 auto; } .modal--fade:target, .semantic-content:target, .modal--show:target, .is-active.modal--fade, .is-active.semantic-content, .is-active.modal--show { -webkit-transform: translate(0,0); -ms-transform: translate(0,0); transform: translate(0,0); width: auto; height: auto; opacity: 1; background: rgba(0,0,0,.1); filter: alpha(opacity=100); } @media screen and (max-width: 30em) { .modal--fade .modal-close:before, .semantic-content .modal-close:before, .modal--show .modal-close:before { background: #27aae2; height: 3em; display: none; box-shadow: 0 0 5px rgba(0,0,0,.5); } .modal--fade .modal-inner, .semantic-content .modal-inner, .modal--show .modal-inner { padding-top: 0; box-shadow: none; } .modal--fade:target, .semantic-content:target, .modal--show:target, .is-active.modal--fade, .is-active.semantic-content, .is-active.modal--show { -webkit-transform: translate(0,0); -ms-transform: translate(0,0); transform: translate(0,0); width: 100%; height: 100%; opacity: 1; background: rgba(0,0,0,.8); filter: alpha(opacity=100); } } @media only screen and (min-width:320px) and (max-width:414px) and (orientation: portrait) { } /* @end */
style.css
.site-container { max-width: 1440px; } .profile-photo { text-align: center; } .profile-photo img { width: 250px; } .job-titles { max-width: 600px; margin: 0 auto; background: url(http://res.cloudinary.com/dk9viy9wg/image/upload/v1486338071/portfolio-2017/plus-sign-icon.png) 48% 44% no-repeat; background-size: 10px 9px; overflow: hidden; } .job-titles h1:nth-of-type(1) { float: left; } .job-titles h1:nth-of-type(2) { float: right; } .job-titles h1 { font-family: Raleway; font-weight: 200; font-size: 26px; letter-spacing: 0; color: rgba(0,0,0,.8); } .job-titles h1 strong { font-weight: 600; } .job-titles h1 em { display: block; text-align: center; font-size: 15px; font-weight: 300; font-style: normal; color: rgba(0,0,0,.5); margin-top: 10px; } @media (max-width:600px) { .job-titles { max-width: 600px; background: url(http://res.cloudinary.com/dk9viy9wg/image/upload/v1486338071/portfolio-2017/plus-sign-icon.png) 50% 50% no-repeat; background-size: 10px 9px; } .job-titles h1 { text-align: center; float: none !important; margin: 50px 0; } } .hide-all-projects { display: none; margin-top: 200px; } @media (min-width:320px) { .both-devices-container { margin: 25px auto; position: relative; max-width: 1000px; width: 100%; } .desktop-device { background: url(http://res.cloudinary.com/dk9viy9wg/image/upload/v1486336564/portfolio-2017/macbook-black-bg.png) 0% 0% no-repeat; background-size: contain; width: 100%; height: 63vw; position: relative; left: 0; } .desktop-device .desktop-inset { width: 75%; height: 48vw; overflow: hidden; position: relative; left: 13vw; top: 3.2vw; } .desktop-device .desktop-inset img { width: 100%; } .mobile-device { background: url(http://res.cloudinary.com/dk9viy9wg/image/upload/v1486336564/portfolio-2017/iphone-black-bg.png); width: 35vw; height: 61vw; position: absolute; top: 0; right: 0; display: block; background-size: contain; } .mobile-device .mobile-inset { width: 69%; height: 42.7vw; overflow: hidden; position: absolute; left: 4.75vw; top: 6.5vw; } .mobile-device .mobile-inset img { width: 100%; } } @media (min-width:992px) { .both-devices-container { margin: 25px auto; position: relative; max-width: 992px; width: 100%; left: -7%; } .desktop-device { background: url(http://res.cloudinary.com/dk9viy9wg/image/upload/v1486336564/portfolio-2017/macbook-black-bg.png) 0% 0% no-repeat; background-size: contain; width: 100%; height: 568px; position: relative; left: 0; } .desktop-device .desktop-inset { width: 71%; height: 440px; overflow: hidden; position: relative; left: 11.4%; top: 5%; } .desktop-device .desktop-inset img { width: 100%; } .mobile-device { background: url(http://res.cloudinary.com/dk9viy9wg/image/upload/v1486336564/portfolio-2017/iphone-black-bg.png); width: 333px; height: 585px; position: absolute; top: 0; right: -10%; display: block; } .mobile-device .mobile-inset { width: 230px; height: 407px; overflow: hidden; position: absolute; left: 46px; top: 63px; } .mobile-device .mobile-inset img { width: 100%; } } @media (max-width:640px) { /* .both-devices-container { text-align: center; } .desktop-device { width: 49%; float: left; } .mobile-device { width: 49%; float: right; } .both-devices-container img { width: 100%; }*/ } .desktop-device .desktop-inset img { width: 100%; -webkit-animation: scrollPageDesktop 12s ease 2s infinite; animation: scrollPageDesktop 12s ease 2s infinite; } .mobile-device .mobile-inset img { width: 100%; -webkit-animation: scrollPageMobile 20s ease 5s infinite; animation: scrollPageMobile 20s ease 5s infinite; } /*.desktop-device .desktop-inset:hover img { width: 100%; -webkit-animation: scrollPageDesktop 25s ease 0s infinite; animation: scrollPageDesktop 25s ease 0s infinite; } .mobile-device .mobile-inset:hover img { width: 100%; -webkit-animation: scrollPageMobile 25s ease 0s infinite; animation: scrollPageMobile 25s ease 0s infinite; }*/ @-webkit-keyframes scrollPageDesktop { 0% { -webkit-transform: translateY(0); transform: translateY(0); } 30%, 35% { -webkit-transform: translateY(-75%); transform: translateY(-75%); } 70%, 100% { -webkit-transform: translateY(0); transform: translateY(0); } } @-webkit-keyframes scrollPageMobile { 0% { -webkit-transform: translateY(0); transform: translateY(0); } 30%, 35% { -webkit-transform: translateY(-63%); transform: translateY(-63%); } 70%, 100% { -webkit-transform: translateY(0); transform: translateY(0); } } /* @group MAIN CONTENT */ @media (min-width:992px) { section.content.content-container { width: 992px; margin: 0 auto; } } @media (min-width:320px) { .recent-projects h1 { font-size: 38px; font-family: Raleway; font-weight: 400; text-align: center; margin: 0 0 25px 0; } .project-preview h3 { text-align: center; margin: 0 0 3px 0; font-size: 18px; font-family: Raleway; font-weight: 400; } .project-list ul { list-style: none; padding: 0; /*background: rgba(0,0,0,.1);*/ margin: 20px 0 0 0; } .web-development-container .project-list ul { padding: 0 0 0 2vw; } .design-container .project-list ul { padding: 0 2vw 0 0; } .project-list ul li { } .project-list ul li a { /*color: rgba(24,186,215,1);*/ /*color: rgba(14,167,230,1);*/ color: rgba(0,0,0,.7); display: block; font-weight: 200; /*transition: all .2s linear;*/ } .project-list ul li.active a { font-weight: 500; } .project-list ul:hover li.active a { font-weight: 200; } .project-list ul li:hover a { font-weight: 500; } .project-list ul:hover li.active:hover a { font-weight: 500; } section.content.content-container { width: 1000px; margin: 0 auto; } .web-development-container { width: 100%; } .project-preview.development { width: 50%; float: left; } .web-development-container .project-list { float: left; width: 50%; } .recent-projects .browser-bar { background: url(http://res.cloudinary.com/dk9viy9wg/image/upload/v1486418043/portfolio-2017/browser-bar-background-repeat.png) center top repeat-x; background-size: 100% 24px; overflow: hidden; } .recent-projects .browser-bar img { height: 24px; } .project-preview.development .preview-inset { width: 100%; height: 200px; background: rgba(0,0,0,.1); box-shadow: 2px 2px 6px -1px rgba(0,0,0,.3); -webkit-box-shadow: 2px 2px 6px -1px rgba(0,0,0,.3); -moz-box-shadow: 2px 2px 6px -1px rgba(0,0,0,.3); -khtml-box-shadow: 2px 2px 6px -1px rgba(0,0,0,.3); overflow: hidden; } .project-preview.development .preview-inset img { width: 100%; } .design-container { width: 100%; clear: both; /* margin: 20px 0 0 0; clear: both; float: left;*/ padding: 20px 0 0 0; } .design-container .project-list { float: left; width: 44%; text-align: right; } .project-preview.design { width: 56%; float: right; } .project-preview.design .preview-inset { width: 100%; height: 260px; background: rgba(0,0,0,.1); box-shadow: 2px 2px 6px -1px rgba(0,0,0,.3); -webkit-box-shadow: 2px 2px 6px -1px rgba(0,0,0,.3); -moz-box-shadow: 2px 2px 6px -1px rgba(0,0,0,.3); -khtml-box-shadow: 2px 2px 6px -1px rgba(0,0,0,.3); overflow: hidden; } .project-preview.design .preview-inset img { width: 100%; } .recent-projects { width: 60%; float: left; font-size: 18px; font-family: Raleway; font-weight: 100; padding-right: 25px; } .about-me { width: 37%; float: right; padding: 0 0 25px 0px; font-family: Raleway; font-weight: 300; font-size: 16px; } .improve-experience { font-size: 21px; } section.content.content-container { padding: 0 0 100px 0; overflow: hidden; } .about-me h2 { font-size: 26px; margin: 0 0 10px 0; } .about-me h4 { font-size: 22px; margin: 30px 0 10px 0; } .about-me ul { padding: 20px 0 0 0px; font-size: 17px; list-style: none; } .about-me ul li { width: 62%; float: left; font-weight: 500; } .about-me ul li:nth-child(2n) { width: 38%; float: left; } } @media (min-width:320px) and (max-width:992px) { section.content.content-container { width: 100%; margin: 0 auto; } .recent-projects { width: 100%; float: left; font-size: 18px; font-family: Raleway; font-weight: 100; padding: 0 3vw 0 3vw; } .about-me { width: 100%; float: right; padding: 0 5vw 30px 5vw; } .project-preview.development .preview-inset { width: 100%; height: 30vw; background: rgba(0,0,0,.1); } .project-preview.design .preview-inset { width: 100%; height: 40vw; background: rgba(0,0,0,.1); } } @media (min-width:640px) and (max-width:992px) { .improve-experience { width: 37%; float: left; padding: 0 4vw 0 0; font-size: 18px; } .improve-experience p { color: rgba(0,0,0,1); } .improve-experience h2 { font-size: 24px; } .offered-services { width: 63%; float: right; font-size: 15px; } .offered-services h4 { margin: 0 0 10px 0; /*font-weight: 300;*/ } } @media (min-width:320px) and (max-width:640px) { .profile-photo img { width: 30%; } .job-titles h1 { margin: 25px 0; } } .web-development-container .link-colors { padding: 22px 0vw 5px 2vw; } .web-development-container .link-colors em { width: 16.6%; float: left; height: 15px; } .project-list ul { margin: 10px 0 0 0; float: left; width: 100%; } .link-colors em.color-one { background: rgba(24,186,215,1); } .link-colors em.color-two { background: rgba(225,113,14,1); } .link-colors em.color-three { background: rgba(229,42,42,1); } .link-colors em.color-four { background: rgba(53,201,180,1); } .link-colors em.color-five { background: rgba(244,47,149,1); } .link-colors em.color-six { background: rgba(73,73,73,1); } .project-list.color-one ul a { background: rgba(24,186,215,1); color: rgba(255,255,255,1); } .project-list.color-two ul a { background: rgba(225,113,14,1); color: rgba(255,255,255,1); } .project-list.color-three ul a { background: rgba(229,42,42,1); color: rgba(255,255,255,1); } .project-list.color-four ul a { background: rgba(53,201,180,1); color: rgba(255,255,255,1); } .project-list.color-five ul a { background: rgba(244,47,149,1); color: rgba(255,255,255,1); } .project-list.color-six ul a { color: rgba(73,73,73,1); background: rgba(255,255,255,1); } .web-development-container .project-list ul a { padding: 0 0 0 10px; } .web-development-container .project-list ul li:first-of-type a { padding: 5px 0 0 10px; } .web-development-container .project-list ul li:last-of-type a { padding: 0 0 5px 10px; } .design-container .link-colors { padding: 22px 0 5px 2vw; margin-top: 2px; } .design-container .link-colors { padding: 20px 2vw 5px 0vw; } .link-colors em { width: 16.6%; float: left; height: 15px; } .link-colors em.color-seven { background: rgba(19,204,10,1); } .link-colors em.color-eight { background: rgba(142,42,244,1); } .link-colors em.color-nine { background: rgba(55,138,222,1); } .link-colors em.color-ten { background: rgba(251,59,28,1); } .link-colors em.color-eleven { background: rgba(122,179,12,1); } .link-colors em.color-twelve { background: rgba(73,73,73,1); } .project-list.color-seven ul a { background: rgba(19,204,10,1); color: rgba(255,255,255,1); } .project-list.color-eight ul a { background: rgba(142,42,244,1); color: rgba(255,255,255,1); } .project-list.color-nine ul a { background: rgba(55,138,222,1); color: rgba(255,255,255,1); } .project-list.color-ten ul a { background: rgba(251,59,28,1); color: rgba(255,255,255,1); } .project-list.color-eleven ul a { background: rgba(122,179,12,1); color: rgba(255,255,255,1); } .project-list.color-twelve ul a { background: rgba(255,255,255,1); color: rgba(73,73,73,1); } .project-list .view-all { margin: 10px 0 0 0; } .project-list .view-all a { width: 100%; background: rgba(24,186,215,1) !important; padding: 5px 15px !important; color: rgba(255,255,255,1) !important; font-size: 16px; } .design-container .project-list ul a { padding: 0 10px 0 0; } .design-container .project-list ul li:first-of-type a { padding: 5px 10px 0 0px; } .design-container .project-list ul li:last-of-type a { padding: 0 10px 5px 0px; } @media (min-width:320px) and (max-width:414px) { .web-development-container .link-colors em { width: 16.6%; float: left; height: 15px ; } .design-container .link-colors { padding: 20px 2vw 5px 0vw; } .design-container .link-colors em { width: 16.6%; float: left; height: 15px; } .project-preview { /*display: none;*/ width: 100% !important; /*width: 100% !important;*/ } .project-preview .browser-bar { display: none; } .project-preview .preview-inset { /*display: none;*/ height: 50vw !important; } .recent-projects .project-list { /*width: 99%;*/ width: 100%; } .recent-projects .project-list ul { margin: 10px 0 0 0; float: left; width: 100%; clear: both; padding: 0; } .recent-projects .project-list .link-colors { padding: 22px 0vw 5px 0; } .recent-projects .project-list .link-colors em { height: 25px; } .recent-projects .project-list ul li a { font-size: 16px; } .offered-services ul li { float: none; font-size: ; width: 100% !important; } .recent-projects h1 { text-align: center; } } .web-development-container .preview-inset { background: url(http://res.cloudinary.com/dk9viy9wg/image/upload/v1486435938/portfolio-2017/durbins-homepage-2017-1000px-above-fold.jpg) center top !important; background-size: 100% auto !important; } .web-development-container .preview-inset img { display: none; } .web-development-container .preview-inset img.show-design-image { display: block; } .design-container .preview-inset { background: url(http://res.cloudinary.com/dk9viy9wg/image/upload/v1486437839/portfolio-2017/myhubbnetwork-800px-crop.jpg) center top !important; background-size: 100% auto !important; } .design-container .preview-inset img { display: none; } .design-container .preview-inset img.show-design-image { display: block; } section.semantic-content { padding: 0 0 0 0; height: auto; } .modal--fade header>h2, .semantic-content header>h2, .modal--show header>h2 { margin: .5em 0; display: none; } .modal--fade header, .semantic-content header, .modal--show header { border-bottom: none; padding: 0; } .modal--fade .modal-content, .semantic-content .modal-content, .modal--show .modal-content { position: relative; max-height: auto; height: auto; width: 100%; max-height: 100vh; overflow-x: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 0; border: none; border-radius: 0; background: none; } .modal--fade .modal-inner, .semantic-content .modal-inner, .modal--show .modal-inner { border-radius: 0; background: none; height: auto; max-height: auto; box-shadow: 0; max-width: 100%; -webkit-transition: max-width .25s linear,margin-left .125s linear; transition: max-width .25s linear,margin-left .125s linear; } .modal--fade .modal-inner, .semantic-content .modal-inner, .modal--show .modal-inner { position: relative; top: 0; left: 0; z-index: 20; margin-left: 0; width: 100%; overflow-x: hidden; -webkit-overflow-scrolling: touch; } section .modal-inner footer { display: none; } .modal--fade .modal-close:after, .semantic-content .modal-close:after, .modal--show .modal-close:after { content: '\00d7'; position: absolute; top: 25px; right: 25px; /* left: 0; */ z-index: 20; margin-right: 0; } .modal--fade .modal-close:after, .semantic-content .modal-close:after, .modal--show .modal-close:after { content: '\00d7'; background: rgba(255,255,255,1); border-radius: 70px; color: rgba(0,0,0,1); width: 41px; font-weight: bold; padding: 4px 0 10px 0; text-align: center; line-height: 27px; font-size: 30px; text-decoration: none; text-indent: 0; box-shadow: 0px 0px 10px 0px rgba(0,0,0,.5); -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,.5); -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,.5); -khtml-box-shadow: 0px 0px 10px 0px rgba(0,0,0,.5); -webkit-animation: pulseSize .5s infinite; -moz-animation: pulseSize .5s infinite; -o-animation: pulseSize .5s infinite; animation: pulseSize .5s infinite; } @keyframes pulseSize { from { transform: none; -webkit-transform: none; } 50% { transform: scale(1.3); -webkit-transform: scale(1.3); } to { transform: none; -webkit-transform: none; } } .modal--fade .modal-close:hover:after, .semantic-content .modal-close:hover:after, .modal--show .modal-close:hover:after { transform: scale(1.3) !important; -webkit-transform: scale(1.3) !important; -webkit-animation: none; animation: none; } .modal-images-container { text-align: center; } .modal-images-container img { width: 100%; } .naturesweettomatoes-modal img { /*width: 50%;*/ /*float: left;*/ } .wciu-mobile-modal img { max-width: 400px; margin: 0 auto; } .modal--fade:target, .semantic-content:target, .modal--show:target, .is-active.modal--fade, .is-active.semantic-content, .is-active.modal--show { -webkit-transform: translate(0,0); -ms-transform: translate(0,0); transform: translate(0,0); width: auto; height: auto; opacity: 1; background: rgba(0,0,0,.1); filter: alpha(opacity=100); } @media screen and (max-width: 30em) { .modal--fade .modal-close:before, .semantic-content .modal-close:before, .modal--show .modal-close:before { background: #27aae2; height: 3em; display: none; box-shadow: 0 0 5px rgba(0,0,0,.5); } .modal--fade .modal-inner, .semantic-content .modal-inner, .modal--show .modal-inner { padding-top: 0; box-shadow: none; } .modal--fade:target, .semantic-content:target, .modal--show:target, .is-active.modal--fade, .is-active.semantic-content, .is-active.modal--show { -webkit-transform: translate(0,0); -ms-transform: translate(0,0); transform: translate(0,0); width: 100%; height: 100%; opacity: 1; background: rgba(0,0,0,.8); filter: alpha(opacity=100); } } @media only screen and (min-width:320px) and (max-width:414px) and (orientation: portrait) { } /* @end */
0.239438
0.082475
@import url(fonts/clear-sans.css); /*$tile-font-size: 38pt;*/ html, body { margin: 0; padding: 0; background: #faf8ef; color: #776E65; font-family: "Clear Sans", "Helvetica Neue", Arial, sans-serif; font-size: 18px; } body { margin: 30px 0; } .heading:after { content: ""; display: block; clear: both; } h1.title { font-size: 30px; font-weight: bold; margin: 0; display: block; float: left; } @-webkit-keyframes move-up { 0% { top: 25px; opacity: 1; } 100% { top: -50px; opacity: 0; } } @-moz-keyframes move-up { 0% { top: 25px; opacity: 1; } 100% { top: -50px; opacity: 0; } } @keyframes move-up { 0% { top: 25px; opacity: 1; } 100% { top: -50px; opacity: 0; } } .scores-container { float: right; text-align: right; } .first-player-container, .second-player-container { width: 60px; position: relative; display: inline-block; background: #bbada0; padding: 15px 25px; font-size: 20px; height: 25px; line-height: 47px; font-weight: bold; border-radius: 3px; color: white; margin-top: 8px; margin-bottom: 8px; text-align: center; } .first-player-container:after, .second-player-container:after { position: absolute; width: 100%; top: 10px; left: 0; text-transform: uppercase; font-size: 13px; line-height: 13px; text-align: center; color: #eee4da; } .first-player-container .score-addition, .second-player-container .score-addition { position: absolute; right: 30px; color: red; font-size: 25px; line-height: 25px; font-weight: bold; color: rgba(119, 110, 101, 0.9); z-index: 100; -webkit-animation: move-up 600ms ease-in; -moz-animation: move-up 600ms ease-in; animation: move-up 600ms ease-in; -webkit-animation-fill-mode: both; -moz-animation-fill-mode: both; animation-fill-mode: both; } .first-player-container:after { content: "Player 1 (X)"; } .second-player-container:after { content: "Player 2 (O)"; } p { margin-top: 0; margin-bottom: 10px; line-height: 1.65; } a { color: #776E65; font-weight: bold; text-decoration: underline; cursor: pointer; } strong.important { text-transform: uppercase; } hr { border: none; border-bottom: 1px solid #d8d4d0; margin-top: 20px; margin-bottom: 30px; } .container { width: 644px; margin: 0 auto; } @-webkit-keyframes fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } @-moz-keyframes fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } .game-container { margin-top: 10px; position: relative; padding: 4px; cursor: default; -webkit-touch-callout: none; -ms-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -ms-touch-action: none; touch-action: none; background: #bbada0; border-radius: 6px; width: 644px; height: 644px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .game-container .game-message { display: none; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: rgba(238, 228, 218, 0.5); z-index: 100; text-align: center; -webkit-animation: fade-in 800ms ease 1200ms; -moz-animation: fade-in 800ms ease 1200ms; animation: fade-in 800ms ease 1200ms; -webkit-animation-fill-mode: both; -moz-animation-fill-mode: both; animation-fill-mode: both; } .game-container .game-message p { font-size: 60px; font-weight: bold; height: 40px; line-height: 60px; margin-top: 80px; } .game-container .game-message .lower { display: block; margin-top: 59px; } .game-container .game-message a { display: inline-block; background: #8f7a66; border-radius: 3px; padding: 0 20px; text-decoration: none; color: #f9f6f2; height: 40px; line-height: 42px; margin-left: 9px; } .game-container .game-message a.keep-playing-button { display: none; } .game-container .game-message.game-won { background: rgba(133, 180, 210, 0.5); color: #f9f6f2; font-size: medium; } .game-container .game-message.game-won a.keep-playing-button { display: inline-block; } .game-container .game-message.game-won, .game-container .game-message.game-over { display: block; } .grid-container { position: absolute; z-index: 1; } .grid-row { margin-bottom: 4px; } .grid-row:last-child { margin-bottom: 0; } .grid-row:after { content: ""; display: block; clear: both; } .grid-cell { width: 60px; height: 60px; margin-right: 4px; float: left; border-radius: 3px; background: rgba(238, 228, 218, 0.35); } .grid-cell:last-child { margin-right: 0; } .tile-container { position: absolute; z-index: 2; } .tile, .tile .tile-inner { width: 60px; height: 60px; line-height: 60px; } .tile.tile-position-1-1 { -webkit-transform: translate(0px, 0px); -moz-transform: translate(0px, 0px); transform: translate(0px, 0px); } .tile.tile-position-1-2 { -webkit-transform: translate(0px, 64px); -moz-transform: translate(0px, 64px); transform: translate(0px, 64px); } .tile.tile-position-1-3 { -webkit-transform: translate(0px, 128px); -moz-transform: translate(0px, 128px); transform: translate(0px, 128px); } .tile.tile-position-1-4 { -webkit-transform: translate(0px, 192px); -moz-transform: translate(0px, 192px); transform: translate(0px, 192px); } .tile.tile-position-1-5 { -webkit-transform: translate(0px, 256px); -moz-transform: translate(0px, 256px); transform: translate(0px, 256px); } .tile.tile-position-1-6 { -webkit-transform: translate(0px, 320px); -moz-transform: translate(0px, 320px); transform: translate(0px, 320px); } .tile.tile-position-1-7 { -webkit-transform: translate(0px, 384px); -moz-transform: translate(0px, 384px); transform: translate(0px, 384px); } .tile.tile-position-1-8 { -webkit-transform: translate(0px, 448px); -moz-transform: translate(0px, 448px); transform: translate(0px, 448px); } .tile.tile-position-1-9 { -webkit-transform: translate(0px, 512px); -moz-transform: translate(0px, 512px); transform: translate(0px, 512px); } .tile.tile-position-1-10 { -webkit-transform: translate(0px, 576px); -moz-transform: translate(0px, 576px); transform: translate(0px, 576px); } .tile.tile-position-2-1 { -webkit-transform: translate(64px, 0px); -moz-transform: translate(64px, 0px); transform: translate(64px, 0px); } .tile.tile-position-2-2 { -webkit-transform: translate(64px, 64px); -moz-transform: translate(64px, 64px); transform: translate(64px, 64px); } .tile.tile-position-2-3 { -webkit-transform: translate(64px, 128px); -moz-transform: translate(64px, 128px); transform: translate(64px, 128px); } .tile.tile-position-2-4 { -webkit-transform: translate(64px, 192px); -moz-transform: translate(64px, 192px); transform: translate(64px, 192px); } .tile.tile-position-2-5 { -webkit-transform: translate(64px, 256px); -moz-transform: translate(64px, 256px); transform: translate(64px, 256px); } .tile.tile-position-2-6 { -webkit-transform: translate(64px, 320px); -moz-transform: translate(64px, 320px); transform: translate(64px, 320px); } .tile.tile-position-2-7 { -webkit-transform: translate(64px, 384px); -moz-transform: translate(64px, 384px); transform: translate(64px, 384px); } .tile.tile-position-2-8 { -webkit-transform: translate(64px, 448px); -moz-transform: translate(64px, 448px); transform: translate(64px, 448px); } .tile.tile-position-2-9 { -webkit-transform: translate(64px, 512px); -moz-transform: translate(64px, 512px); transform: translate(64px, 512px); } .tile.tile-position-2-10 { -webkit-transform: translate(64px, 576px); -moz-transform: translate(64px, 576px); transform: translate(64px, 576px); } .tile.tile-position-3-1 { -webkit-transform: translate(128px, 0px); -moz-transform: translate(128px, 0px); transform: translate(128px, 0px); } .tile.tile-position-3-2 { -webkit-transform: translate(128px, 64px); -moz-transform: translate(128px, 64px); transform: translate(128px, 64px); } .tile.tile-position-3-3 { -webkit-transform: translate(128px, 128px); -moz-transform: translate(128px, 128px); transform: translate(128px, 128px); } .tile.tile-position-3-4 { -webkit-transform: translate(128px, 192px); -moz-transform: translate(128px, 192px); transform: translate(128px, 192px); } .tile.tile-position-3-5 { -webkit-transform: translate(128px, 256px); -moz-transform: translate(128px, 256px); transform: translate(128px, 256px); } .tile.tile-position-3-6 { -webkit-transform: translate(128px, 320px); -moz-transform: translate(128px, 320px); transform: translate(128px, 320px); } .tile.tile-position-3-7 { -webkit-transform: translate(128px, 384px); -moz-transform: translate(128px, 384px); transform: translate(128px, 384px); } .tile.tile-position-3-8 { -webkit-transform: translate(128px, 448px); -moz-transform: translate(128px, 448px); transform: translate(128px, 448px); } .tile.tile-position-3-9 { -webkit-transform: translate(128px, 512px); -moz-transform: translate(128px, 512px); transform: translate(128px, 512px); } .tile.tile-position-3-10 { -webkit-transform: translate(128px, 576px); -moz-transform: translate(128px, 576px); transform: translate(128px, 576px); } .tile.tile-position-4-1 { -webkit-transform: translate(192px, 0px); -moz-transform: translate(192px, 0px); transform: translate(192px, 0px); } .tile.tile-position-4-2 { -webkit-transform: translate(192px, 64px); -moz-transform: translate(192px, 64px); transform: translate(192px, 64px); } .tile.tile-position-4-3 { -webkit-transform: translate(192px, 128px); -moz-transform: translate(192px, 128px); transform: translate(192px, 128px); } .tile.tile-position-4-4 { -webkit-transform: translate(192px, 192px); -moz-transform: translate(192px, 192px); transform: translate(192px, 192px); } .tile.tile-position-4-5 { -webkit-transform: translate(192px, 256px); -moz-transform: translate(192px, 256px); transform: translate(192px, 256px); } .tile.tile-position-4-6 { -webkit-transform: translate(192px, 320px); -moz-transform: translate(192px, 320px); transform: translate(192px, 320px); } .tile.tile-position-4-7 { -webkit-transform: translate(192px, 384px); -moz-transform: translate(192px, 384px); transform: translate(192px, 384px); } .tile.tile-position-4-8 { -webkit-transform: translate(192px, 448px); -moz-transform: translate(192px, 448px); transform: translate(192px, 448px); } .tile.tile-position-4-9 { -webkit-transform: translate(192px, 512px); -moz-transform: translate(192px, 512px); transform: translate(192px, 512px); } .tile.tile-position-4-10 { -webkit-transform: translate(192px, 576px); -moz-transform: translate(192px, 576px); transform: translate(192px, 576px); } .tile.tile-position-5-1 { -webkit-transform: translate(256px, 0px); -moz-transform: translate(256px, 0px); transform: translate(256px, 0px); } .tile.tile-position-5-2 { -webkit-transform: translate(256px, 64px); -moz-transform: translate(256px, 64px); transform: translate(256px, 64px); } .tile.tile-position-5-3 { -webkit-transform: translate(256px, 128px); -moz-transform: translate(256px, 128px); transform: translate(256px, 128px); } .tile.tile-position-5-4 { -webkit-transform: translate(256px, 192px); -moz-transform: translate(256px, 192px); transform: translate(256px, 192px); } .tile.tile-position-5-5 { -webkit-transform: translate(256px, 256px); -moz-transform: translate(256px, 256px); transform: translate(256px, 256px); } .tile.tile-position-5-6 { -webkit-transform: translate(256px, 320px); -moz-transform: translate(256px, 320px); transform: translate(256px, 320px); } .tile.tile-position-5-7 { -webkit-transform: translate(256px, 384px); -moz-transform: translate(256px, 384px); transform: translate(256px, 384px); } .tile.tile-position-5-8 { -webkit-transform: translate(256px, 448px); -moz-transform: translate(256px, 448px); transform: translate(256px, 448px); } .tile.tile-position-5-9 { -webkit-transform: translate(256px, 512px); -moz-transform: translate(256px, 512px); transform: translate(256px, 512px); } .tile.tile-position-5-10 { -webkit-transform: translate(256px, 576px); -moz-transform: translate(256px, 576px); transform: translate(256px, 576px); } .tile.tile-position-6-1 { -webkit-transform: translate(320px, 0px); -moz-transform: translate(320px, 0px); transform: translate(320px, 0px); } .tile.tile-position-6-2 { -webkit-transform: translate(320px, 64px); -moz-transform: translate(320px, 64px); transform: translate(320px, 64px); } .tile.tile-position-6-3 { -webkit-transform: translate(320px, 128px); -moz-transform: translate(320px, 128px); transform: translate(320px, 128px); } .tile.tile-position-6-4 { -webkit-transform: translate(320px, 192px); -moz-transform: translate(320px, 192px); transform: translate(320px, 192px); } .tile.tile-position-6-5 { -webkit-transform: translate(320px, 256px); -moz-transform: translate(320px, 256px); transform: translate(320px, 256px); } .tile.tile-position-6-6 { -webkit-transform: translate(320px, 320px); -moz-transform: translate(320px, 320px); transform: translate(320px, 320px); } .tile.tile-position-6-7 { -webkit-transform: translate(320px, 384px); -moz-transform: translate(320px, 384px); transform: translate(320px, 384px); } .tile.tile-position-6-8 { -webkit-transform: translate(320px, 448px); -moz-transform: translate(320px, 448px); transform: translate(320px, 448px); } .tile.tile-position-6-9 { -webkit-transform: translate(320px, 512px); -moz-transform: translate(320px, 512px); transform: translate(320px, 512px); } .tile.tile-position-6-10 { -webkit-transform: translate(320px, 576px); -moz-transform: translate(320px, 576px); transform: translate(320px, 576px); } .tile.tile-position-7-1 { -webkit-transform: translate(384px, 0px); -moz-transform: translate(384px, 0px); transform: translate(384px, 0px); } .tile.tile-position-7-2 { -webkit-transform: translate(384px, 64px); -moz-transform: translate(384px, 64px); transform: translate(384px, 64px); } .tile.tile-position-7-3 { -webkit-transform: translate(384px, 128px); -moz-transform: translate(384px, 128px); transform: translate(384px, 128px); } .tile.tile-position-7-4 { -webkit-transform: translate(384px, 192px); -moz-transform: translate(384px, 192px); transform: translate(384px, 192px); } .tile.tile-position-7-5 { -webkit-transform: translate(384px, 256px); -moz-transform: translate(384px, 256px); transform: translate(384px, 256px); } .tile.tile-position-7-6 { -webkit-transform: translate(384px, 320px); -moz-transform: translate(384px, 320px); transform: translate(384px, 320px); } .tile.tile-position-7-7 { -webkit-transform: translate(384px, 384px); -moz-transform: translate(384px, 384px); transform: translate(384px, 384px); } .tile.tile-position-7-8 { -webkit-transform: translate(384px, 448px); -moz-transform: translate(384px, 448px); transform: translate(384px, 448px); } .tile.tile-position-7-9 { -webkit-transform: translate(384px, 512px); -moz-transform: translate(384px, 512px); transform: translate(384px, 512px); } .tile.tile-position-7-10 { -webkit-transform: translate(384px, 576px); -moz-transform: translate(384px, 576px); transform: translate(384px, 576px); } .tile.tile-position-8-1 { -webkit-transform: translate(448px, 0px); -moz-transform: translate(448px, 0px); transform: translate(448px, 0px); } .tile.tile-position-8-2 { -webkit-transform: translate(448px, 64px); -moz-transform: translate(448px, 64px); transform: translate(448px, 64px); } .tile.tile-position-8-3 { -webkit-transform: translate(448px, 128px); -moz-transform: translate(448px, 128px); transform: translate(448px, 128px); } .tile.tile-position-8-4 { -webkit-transform: translate(448px, 192px); -moz-transform: translate(448px, 192px); transform: translate(448px, 192px); } .tile.tile-position-8-5 { -webkit-transform: translate(448px, 256px); -moz-transform: translate(448px, 256px); transform: translate(448px, 256px); } .tile.tile-position-8-6 { -webkit-transform: translate(448px, 320px); -moz-transform: translate(448px, 320px); transform: translate(448px, 320px); } .tile.tile-position-8-7 { -webkit-transform: translate(448px, 384px); -moz-transform: translate(448px, 384px); transform: translate(448px, 384px); } .tile.tile-position-8-8 { -webkit-transform: translate(448px, 448px); -moz-transform: translate(448px, 448px); transform: translate(448px, 448px); } .tile.tile-position-8-9 { -webkit-transform: translate(448px, 512px); -moz-transform: translate(448px, 512px); transform: translate(448px, 512px); } .tile.tile-position-8-10 { -webkit-transform: translate(448px, 576px); -moz-transform: translate(448px, 576px); transform: translate(448px, 576px); } .tile.tile-position-9-1 { -webkit-transform: translate(512px, 0px); -moz-transform: translate(512px, 0px); transform: translate(512px, 0px); } .tile.tile-position-9-2 { -webkit-transform: translate(512px, 64px); -moz-transform: translate(512px, 64px); transform: translate(512px, 64px); } .tile.tile-position-9-3 { -webkit-transform: translate(512px, 128px); -moz-transform: translate(512px, 128px); transform: translate(512px, 128px); } .tile.tile-position-9-4 { -webkit-transform: translate(512px, 192px); -moz-transform: translate(512px, 192px); transform: translate(512px, 192px); } .tile.tile-position-9-5 { -webkit-transform: translate(512px, 256px); -moz-transform: translate(512px, 256px); transform: translate(512px, 256px); } .tile.tile-position-9-6 { -webkit-transform: translate(512px, 320px); -moz-transform: translate(512px, 320px); transform: translate(512px, 320px); } .tile.tile-position-9-7 { -webkit-transform: translate(512px, 384px); -moz-transform: translate(512px, 384px); transform: translate(512px, 384px); } .tile.tile-position-9-8 { -webkit-transform: translate(512px, 448px); -moz-transform: translate(512px, 448px); transform: translate(512px, 448px); } .tile.tile-position-9-9 { -webkit-transform: translate(512px, 512px); -moz-transform: translate(512px, 512px); transform: translate(512px, 512px); } .tile.tile-position-9-10 { -webkit-transform: translate(512px, 576px); -moz-transform: translate(512px, 576px); transform: translate(512px, 576px); } .tile.tile-position-10-1 { -webkit-transform: translate(576px, 0px); -moz-transform: translate(576px, 0px); transform: translate(576px, 0px); } .tile.tile-position-10-2 { -webkit-transform: translate(576px, 64px); -moz-transform: translate(576px, 64px); transform: translate(576px, 64px); } .tile.tile-position-10-3 { -webkit-transform: translate(576px, 128px); -moz-transform: translate(576px, 128px); transform: translate(576px, 128px); } .tile.tile-position-10-4 { -webkit-transform: translate(576px, 192px); -moz-transform: translate(576px, 192px); transform: translate(576px, 192px); } .tile.tile-position-10-5 { -webkit-transform: translate(576px, 256px); -moz-transform: translate(576px, 256px); transform: translate(576px, 256px); } .tile.tile-position-10-6 { -webkit-transform: translate(576px, 320px); -moz-transform: translate(576px, 320px); transform: translate(576px, 320px); } .tile.tile-position-10-7 { -webkit-transform: translate(576px, 384px); -moz-transform: translate(576px, 384px); transform: translate(576px, 384px); } .tile.tile-position-10-8 { -webkit-transform: translate(576px, 448px); -moz-transform: translate(576px, 448px); transform: translate(576px, 448px); } .tile.tile-position-10-9 { -webkit-transform: translate(576px, 512px); -moz-transform: translate(576px, 512px); transform: translate(576px, 512px); } .tile.tile-position-10-10 { -webkit-transform: translate(576px, 576px); -moz-transform: translate(576px, 576px); transform: translate(576px, 576px); } .tile { position: absolute; -webkit-transition: 100ms ease-in-out; -moz-transition: 100ms ease-in-out; transition: 100ms ease-in-out; -webkit-transition-property: -webkit-transform; -moz-transition-property: -moz-transform; transition-property: transform; } .tile .tile-inner { border-radius: 3px; /*background: $tile-color;*/ background: rgba(238, 228, 218, 0.35); text-align: center; font-weight: bold; z-index: 10; font-size: 45px; } .tile.tile-X .tile-inner { color: #ff3333; /*background: #debda7;*/ } @media screen and (max-width: 664px) { .tile.tile-X .tile-inner { font-size: 25px; } } .tile.tile-O .tile-inner { color: #1b4561; /*background: green;*/ } @media screen and (max-width: 664px) { .tile.tile-O .tile-inner { font-size: 25px; } } .tile.tile-X-Win .tile-inner { color: #ff3333; box-shadow: 0 0 30px 5px #f3d774, inset 0 0 0 1px white; } @media screen and (max-width: 664px) { .tile.tile-X-Win .tile-inner { font-size: 25px; } } .tile.tile-O-Win .tile-inner { color: #1b4561; box-shadow: 0 0 30px 5px #f3d774, inset 0 0 0 1px white; } @media screen and (max-width: 664px) { .tile.tile-O-Win .tile-inner { font-size: 25px; } } @-webkit-keyframes appear { 0% { opacity: 0; -webkit-transform: scale(0); -moz-transform: scale(0); transform: scale(0); } 100% { opacity: 1; -webkit-transform: scale(1); -moz-transform: scale(1); transform: scale(1); } } @-moz-keyframes appear { 0% { opacity: 0; -webkit-transform: scale(0); -moz-transform: scale(0); transform: scale(0); } 100% { opacity: 1; -webkit-transform: scale(1); -moz-transform: scale(1); transform: scale(1); } } @keyframes appear { 0% { opacity: 0; -webkit-transform: scale(0); -moz-transform: scale(0); transform: scale(0); } 100% { opacity: 1; -webkit-transform: scale(1); -moz-transform: scale(1); transform: scale(1); } } .tile-new .tile-inner { -webkit-animation: appear 200ms ease 100ms; -moz-animation: appear 200ms ease 100ms; animation: appear 200ms ease 100ms; -webkit-animation-fill-mode: backwards; -moz-animation-fill-mode: backwards; animation-fill-mode: backwards; } @-webkit-keyframes pop { 0% { -webkit-transform: scale(0); -moz-transform: scale(0); transform: scale(0); } 50% { -webkit-transform: scale(1.2); -moz-transform: scale(1.2); transform: scale(1.2); } 100% { -webkit-transform: scale(1); -moz-transform: scale(1); transform: scale(1); } } @-moz-keyframes pop { 0% { -webkit-transform: scale(0); -moz-transform: scale(0); transform: scale(0); } 50% { -webkit-transform: scale(1.2); -moz-transform: scale(1.2); transform: scale(1.2); } 100% { -webkit-transform: scale(1); -moz-transform: scale(1); transform: scale(1); } } @keyframes pop { 0% { -webkit-transform: scale(0); -moz-transform: scale(0); transform: scale(0); } 50% { -webkit-transform: scale(1.2); -moz-transform: scale(1.2); transform: scale(1.2); } 100% { -webkit-transform: scale(1); -moz-transform: scale(1); transform: scale(1); } } .tile-merged .tile-inner { z-index: 20; -webkit-animation: pop 200ms ease 100ms; -moz-animation: pop 200ms ease 100ms; animation: pop 200ms ease 100ms; -webkit-animation-fill-mode: backwards; -moz-animation-fill-mode: backwards; animation-fill-mode: backwards; } .above-game:after { content: ""; display: block; clear: both; } .game-intro { float: left; line-height: 42px; margin-bottom: 0; } .restart-button { display: inline-block; background: #8f7a66; border-radius: 3px; padding: 0 20px; text-decoration: none; color: #f9f6f2; height: 40px; line-height: 42px; display: block; text-align: center; float: right; } .undo-button { display: inline-block; background: #8f7a66; border-radius: 3px; padding: 0 20px; text-decoration: none; color: #f9f6f2; height: 40px; line-height: 42px; display: block; text-align: center; float: right; margin-right: 5px; width: 50px; } .game-explanation { margin-top: 50px; } @media screen and (max-width: 664px) { /*$field-width: 400px;*/ /*$grid-spacing: 4px;*/ /*$grid-row-cells: 10;*/ /*$tile-size: ($field-width - $grid-spacing * ($grid-row-cells + 1)) / $grid-row-cells;*/ /*$tile-border-radius: 3px;*/ /*$grid-row-count: 10;*/ html, body { font-size: 15px; } body { margin: 20px 0; padding: 0 20px; } h1.title { font-size: 27px; margin-top: 15px; } .container { width: 444px; margin: 0 auto; } .game-container { width: 444px; } .first-player-container, .second-player-container { margin-top: 0; padding: 15px 10px; min-width: 60px; width: 60px; font-size: medium; } .first-player-container:after { content: "Plr 1 (X)"; } .second-player-container:after { content: "Plr 2 (O)"; } .heading { margin-bottom: 10px; } .game-intro { width: 50%; display: block; box-sizing: border-box; line-height: 1.65; } .restart-button { width: 20%; padding: 0; display: block; box-sizing: border-box; margin-top: 2px; /*margin-right: 0;*/ } .undo-button { width: 20%; padding: 0; display: block; box-sizing: border-box; margin-top: 2px; /*margin-right: 0;*/ } .game-container { margin-top: 10px; position: relative; padding: 4px; cursor: default; -webkit-touch-callout: none; -ms-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -ms-touch-action: none; touch-action: none; background: #bbada0; border-radius: 6px; width: 644px; height: 644px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .game-container .game-message { display: none; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: rgba(238, 228, 218, 0.5); z-index: 100; text-align: center; -webkit-animation: fade-in 800ms ease 1200ms; -moz-animation: fade-in 800ms ease 1200ms; animation: fade-in 800ms ease 1200ms; -webkit-animation-fill-mode: both; -moz-animation-fill-mode: both; animation-fill-mode: both; } .game-container .game-message p { font-size: 60px; font-weight: bold; height: 40px; line-height: 60px; margin-top: 80px; } .game-container .game-message .lower { display: block; margin-top: 59px; } .game-container .game-message a { display: inline-block; background: #8f7a66; border-radius: 3px; padding: 0 20px; text-decoration: none; color: #f9f6f2; height: 40px; line-height: 42px; margin-left: 9px; } .game-container .game-message a.keep-playing-button { display: none; } .game-container .game-message.game-won { background: rgba(133, 180, 210, 0.5); color: #f9f6f2; font-size: medium; } .game-container .game-message.game-won a.keep-playing-button { display: inline-block; } .game-container .game-message.game-won, .game-container .game-message.game-over { display: block; } .grid-container { position: absolute; z-index: 1; } .grid-row { margin-bottom: 4px; } .grid-row:last-child { margin-bottom: 0; } .grid-row:after { content: ""; display: block; clear: both; } .grid-cell { width: 60px; height: 60px; margin-right: 4px; float: left; border-radius: 3px; background: rgba(238, 228, 218, 0.35); } .grid-cell:last-child { margin-right: 0; } .tile-container { position: absolute; z-index: 2; } .tile, .tile .tile-inner { width: 60px; height: 60px; line-height: 60px; } .tile.tile-position-1-1 { -webkit-transform: translate(0px, 0px); -moz-transform: translate(0px, 0px); transform: translate(0px, 0px); } .tile.tile-position-1-2 { -webkit-transform: translate(0px, 64px); -moz-transform: translate(0px, 64px); transform: translate(0px, 64px); } .tile.tile-position-1-3 { -webkit-transform: translate(0px, 128px); -moz-transform: translate(0px, 128px); transform: translate(0px, 128px); } .tile.tile-position-1-4 { -webkit-transform: translate(0px, 192px); -moz-transform: translate(0px, 192px); transform: translate(0px, 192px); } .tile.tile-position-1-5 { -webkit-transform: translate(0px, 256px); -moz-transform: translate(0px, 256px); transform: translate(0px, 256px); } .tile.tile-position-1-6 { -webkit-transform: translate(0px, 320px); -moz-transform: translate(0px, 320px); transform: translate(0px, 320px); } .tile.tile-position-1-7 { -webkit-transform: translate(0px, 384px); -moz-transform: translate(0px, 384px); transform: translate(0px, 384px); } .tile.tile-position-1-8 { -webkit-transform: translate(0px, 448px); -moz-transform: translate(0px, 448px); transform: translate(0px, 448px); } .tile.tile-position-1-9 { -webkit-transform: translate(0px, 512px); -moz-transform: translate(0px, 512px); transform: translate(0px, 512px); } .tile.tile-position-1-10 { -webkit-transform: translate(0px, 576px); -moz-transform: translate(0px, 576px); transform: translate(0px, 576px); } .tile.tile-position-2-1 { -webkit-transform: translate(64px, 0px); -moz-transform: translate(64px, 0px); transform: translate(64px, 0px); } .tile.tile-position-2-2 { -webkit-transform: translate(64px, 64px); -moz-transform: translate(64px, 64px); transform: translate(64px, 64px); } .tile.tile-position-2-3 { -webkit-transform: translate(64px, 128px); -moz-transform: translate(64px, 128px); transform: translate(64px, 128px); } .tile.tile-position-2-4 { -webkit-transform: translate(64px, 192px); -moz-transform: translate(64px, 192px); transform: translate(64px, 192px); } .tile.tile-position-2-5 { -webkit-transform: translate(64px, 256px); -moz-transform: translate(64px, 256px); transform: translate(64px, 256px); } .tile.tile-position-2-6 { -webkit-transform: translate(64px, 320px); -moz-transform: translate(64px, 320px); transform: translate(64px, 320px); } .tile.tile-position-2-7 { -webkit-transform: translate(64px, 384px); -moz-transform: translate(64px, 384px); transform: translate(64px, 384px); } .tile.tile-position-2-8 { -webkit-transform: translate(64px, 448px); -moz-transform: translate(64px, 448px); transform: translate(64px, 448px); } .tile.tile-position-2-9 { -webkit-transform: translate(64px, 512px); -moz-transform: translate(64px, 512px); transform: translate(64px, 512px); } .tile.tile-position-2-10 { -webkit-transform: translate(64px, 576px); -moz-transform: translate(64px, 576px); transform: translate(64px, 576px); } .tile.tile-position-3-1 { -webkit-transform: translate(128px, 0px); -moz-transform: translate(128px, 0px); transform: translate(128px, 0px); } .tile.tile-position-3-2 { -webkit-transform: translate(128px, 64px); -moz-transform: translate(128px, 64px); transform: translate(128px, 64px); } .tile.tile-position-3-3 { -webkit-transform: translate(128px, 128px); -moz-transform: translate(128px, 128px); transform: translate(128px, 128px); } .tile.tile-position-3-4 { -webkit-transform: translate(128px, 192px); -moz-transform: translate(128px, 192px); transform: translate(128px, 192px); } .tile.tile-position-3-5 { -webkit-transform: translate(128px, 256px); -moz-transform: translate(128px, 256px); transform: translate(128px, 256px); } .tile.tile-position-3-6 { -webkit-transform: translate(128px, 320px); -moz-transform: translate(128px, 320px); transform: translate(128px, 320px); } .tile.tile-position-3-7 { -webkit-transform: translate(128px, 384px); -moz-transform: translate(128px, 384px); transform: translate(128px, 384px); } .tile.tile-position-3-8 { -webkit-transform: translate(128px, 448px); -moz-transform: translate(128px, 448px); transform: translate(128px, 448px); } .tile.tile-position-3-9 { -webkit-transform: translate(128px, 512px); -moz-transform: translate(128px, 512px); transform: translate(128px, 512px); } .tile.tile-position-3-10 { -webkit-transform: translate(128px, 576px); -moz-transform: translate(128px, 576px); transform: translate(128px, 576px); } .tile.tile-position-4-1 { -webkit-transform: translate(192px, 0px); -moz-transform: translate(192px, 0px); transform: translate(192px, 0px); } .tile.tile-position-4-2 { -webkit-transform: translate(192px, 64px); -moz-transform: translate(192px, 64px); transform: translate(192px, 64px); } .tile.tile-position-4-3 { -webkit-transform: translate(192px, 128px); -moz-transform: translate(192px, 128px); transform: translate(192px, 128px); } .tile.tile-position-4-4 { -webkit-transform: translate(192px, 192px); -moz-transform: translate(192px, 192px); transform: translate(192px, 192px); } .tile.tile-position-4-5 { -webkit-transform: translate(192px, 256px); -moz-transform: translate(192px, 256px); transform: translate(192px, 256px); } .tile.tile-position-4-6 { -webkit-transform: translate(192px, 320px); -moz-transform: translate(192px, 320px); transform: translate(192px, 320px); } .tile.tile-position-4-7 { -webkit-transform: translate(192px, 384px); -moz-transform: translate(192px, 384px); transform: translate(192px, 384px); } .tile.tile-position-4-8 { -webkit-transform: translate(192px, 448px); -moz-transform: translate(192px, 448px); transform: translate(192px, 448px); } .tile.tile-position-4-9 { -webkit-transform: translate(192px, 512px); -moz-transform: translate(192px, 512px); transform: translate(192px, 512px); } .tile.tile-position-4-10 { -webkit-transform: translate(192px, 576px); -moz-transform: translate(192px, 576px); transform: translate(192px, 576px); } .tile.tile-position-5-1 { -webkit-transform: translate(256px, 0px); -moz-transform: translate(256px, 0px); transform: translate(256px, 0px); } .tile.tile-position-5-2 { -webkit-transform: translate(256px, 64px); -moz-transform: translate(256px, 64px); transform: translate(256px, 64px); } .tile.tile-position-5-3 { -webkit-transform: translate(256px, 128px); -moz-transform: translate(256px, 128px); transform: translate(256px, 128px); } .tile.tile-position-5-4 { -webkit-transform: translate(256px, 192px); -moz-transform: translate(256px, 192px); transform: translate(256px, 192px); } .tile.tile-position-5-5 { -webkit-transform: translate(256px, 256px); -moz-transform: translate(256px, 256px); transform: translate(256px, 256px); } .tile.tile-position-5-6 { -webkit-transform: translate(256px, 320px); -moz-transform: translate(256px, 320px); transform: translate(256px, 320px); } .tile.tile-position-5-7 { -webkit-transform: translate(256px, 384px); -moz-transform: translate(256px, 384px); transform: translate(256px, 384px); } .tile.tile-position-5-8 { -webkit-transform: translate(256px, 448px); -moz-transform: translate(256px, 448px); transform: translate(256px, 448px); } .tile.tile-position-5-9 { -webkit-transform: translate(256px, 512px); -moz-transform: translate(256px, 512px); transform: translate(256px, 512px); } .tile.tile-position-5-10 { -webkit-transform: translate(256px, 576px); -moz-transform: translate(256px, 576px); transform: translate(256px, 576px); } .tile.tile-position-6-1 { -webkit-transform: translate(320px, 0px); -moz-transform: translate(320px, 0px); transform: translate(320px, 0px); } .tile.tile-position-6-2 { -webkit-transform: translate(320px, 64px); -moz-transform: translate(320px, 64px); transform: translate(320px, 64px); } .tile.tile-position-6-3 { -webkit-transform: translate(320px, 128px); -moz-transform: translate(320px, 128px); transform: translate(320px, 128px); } .tile.tile-position-6-4 { -webkit-transform: translate(320px, 192px); -moz-transform: translate(320px, 192px); transform: translate(320px, 192px); } .tile.tile-position-6-5 { -webkit-transform: translate(320px, 256px); -moz-transform: translate(320px, 256px); transform: translate(320px, 256px); } .tile.tile-position-6-6 { -webkit-transform: translate(320px, 320px); -moz-transform: translate(320px, 320px); transform: translate(320px, 320px); } .tile.tile-position-6-7 { -webkit-transform: translate(320px, 384px); -moz-transform: translate(320px, 384px); transform: translate(320px, 384px); } .tile.tile-position-6-8 { -webkit-transform: translate(320px, 448px); -moz-transform: translate(320px, 448px); transform: translate(320px, 448px); } .tile.tile-position-6-9 { -webkit-transform: translate(320px, 512px); -moz-transform: translate(320px, 512px); transform: translate(320px, 512px); } .tile.tile-position-6-10 { -webkit-transform: translate(320px, 576px); -moz-transform: translate(320px, 576px); transform: translate(320px, 576px); } .tile.tile-position-7-1 { -webkit-transform: translate(384px, 0px); -moz-transform: translate(384px, 0px); transform: translate(384px, 0px); } .tile.tile-position-7-2 { -webkit-transform: translate(384px, 64px); -moz-transform: translate(384px, 64px); transform: translate(384px, 64px); } .tile.tile-position-7-3 { -webkit-transform: translate(384px, 128px); -moz-transform: translate(384px, 128px); transform: translate(384px, 128px); } .tile.tile-position-7-4 { -webkit-transform: translate(384px, 192px); -moz-transform: translate(384px, 192px); transform: translate(384px, 192px); } .tile.tile-position-7-5 { -webkit-transform: translate(384px, 256px); -moz-transform: translate(384px, 256px); transform: translate(384px, 256px); } .tile.tile-position-7-6 { -webkit-transform: translate(384px, 320px); -moz-transform: translate(384px, 320px); transform: translate(384px, 320px); } .tile.tile-position-7-7 { -webkit-transform: translate(384px, 384px); -moz-transform: translate(384px, 384px); transform: translate(384px, 384px); } .tile.tile-position-7-8 { -webkit-transform: translate(384px, 448px); -moz-transform: translate(384px, 448px); transform: translate(384px, 448px); } .tile.tile-position-7-9 { -webkit-transform: translate(384px, 512px); -moz-transform: translate(384px, 512px); transform: translate(384px, 512px); } .tile.tile-position-7-10 { -webkit-transform: translate(384px, 576px); -moz-transform: translate(384px, 576px); transform: translate(384px, 576px); } .tile.tile-position-8-1 { -webkit-transform: translate(448px, 0px); -moz-transform: translate(448px, 0px); transform: translate(448px, 0px); } .tile.tile-position-8-2 { -webkit-transform: translate(448px, 64px); -moz-transform: translate(448px, 64px); transform: translate(448px, 64px); } .tile.tile-position-8-3 { -webkit-transform: translate(448px, 128px); -moz-transform: translate(448px, 128px); transform: translate(448px, 128px); } .tile.tile-position-8-4 { -webkit-transform: translate(448px, 192px); -moz-transform: translate(448px, 192px); transform: translate(448px, 192px); } .tile.tile-position-8-5 { -webkit-transform: translate(448px, 256px); -moz-transform: translate(448px, 256px); transform: translate(448px, 256px); } .tile.tile-position-8-6 { -webkit-transform: translate(448px, 320px); -moz-transform: translate(448px, 320px); transform: translate(448px, 320px); } .tile.tile-position-8-7 { -webkit-transform: translate(448px, 384px); -moz-transform: translate(448px, 384px); transform: translate(448px, 384px); } .tile.tile-position-8-8 { -webkit-transform: translate(448px, 448px); -moz-transform: translate(448px, 448px); transform: translate(448px, 448px); } .tile.tile-position-8-9 { -webkit-transform: translate(448px, 512px); -moz-transform: translate(448px, 512px); transform: translate(448px, 512px); } .tile.tile-position-8-10 { -webkit-transform: translate(448px, 576px); -moz-transform: translate(448px, 576px); transform: translate(448px, 576px); } .tile.tile-position-9-1 { -webkit-transform: translate(512px, 0px); -moz-transform: translate(512px, 0px); transform: translate(512px, 0px); } .tile.tile-position-9-2 { -webkit-transform: translate(512px, 64px); -moz-transform: translate(512px, 64px); transform: translate(512px, 64px); } .tile.tile-position-9-3 { -webkit-transform: translate(512px, 128px); -moz-transform: translate(512px, 128px); transform: translate(512px, 128px); } .tile.tile-position-9-4 { -webkit-transform: translate(512px, 192px); -moz-transform: translate(512px, 192px); transform: translate(512px, 192px); } .tile.tile-position-9-5 { -webkit-transform: translate(512px, 256px); -moz-transform: translate(512px, 256px); transform: translate(512px, 256px); } .tile.tile-position-9-6 { -webkit-transform: translate(512px, 320px); -moz-transform: translate(512px, 320px); transform: translate(512px, 320px); } .tile.tile-position-9-7 { -webkit-transform: translate(512px, 384px); -moz-transform: translate(512px, 384px); transform: translate(512px, 384px); } .tile.tile-position-9-8 { -webkit-transform: translate(512px, 448px); -moz-transform: translate(512px, 448px); transform: translate(512px, 448px); } .tile.tile-position-9-9 { -webkit-transform: translate(512px, 512px); -moz-transform: translate(512px, 512px); transform: translate(512px, 512px); } .tile.tile-position-9-10 { -webkit-transform: translate(512px, 576px); -moz-transform: translate(512px, 576px); transform: translate(512px, 576px); } .tile.tile-position-10-1 { -webkit-transform: translate(576px, 0px); -moz-transform: translate(576px, 0px); transform: translate(576px, 0px); } .tile.tile-position-10-2 { -webkit-transform: translate(576px, 64px); -moz-transform: translate(576px, 64px); transform: translate(576px, 64px); } .tile.tile-position-10-3 { -webkit-transform: translate(576px, 128px); -moz-transform: translate(576px, 128px); transform: translate(576px, 128px); } .tile.tile-position-10-4 { -webkit-transform: translate(576px, 192px); -moz-transform: translate(576px, 192px); transform: translate(576px, 192px); } .tile.tile-position-10-5 { -webkit-transform: translate(576px, 256px); -moz-transform: translate(576px, 256px); transform: translate(576px, 256px); } .tile.tile-position-10-6 { -webkit-transform: translate(576px, 320px); -moz-transform: translate(576px, 320px); transform: translate(576px, 320px); } .tile.tile-position-10-7 { -webkit-transform: translate(576px, 384px); -moz-transform: translate(576px, 384px); transform: translate(576px, 384px); } .tile.tile-position-10-8 { -webkit-transform: translate(576px, 448px); -moz-transform: translate(576px, 448px); transform: translate(576px, 448px); } .tile.tile-position-10-9 { -webkit-transform: translate(576px, 512px); -moz-transform: translate(576px, 512px); transform: translate(576px, 512px); } .tile.tile-position-10-10 { -webkit-transform: translate(576px, 576px); -moz-transform: translate(576px, 576px); transform: translate(576px, 576px); } .tile .tile-inner { font-size: 35px; } .game-message p { font-size: 30px !important; height: 30px !important; line-height: 30px !important; margin-top: 90px !important; } .game-message .lower { margin-top: 30px !important; } }
style/main.css
@import url(fonts/clear-sans.css); /*$tile-font-size: 38pt;*/ html, body { margin: 0; padding: 0; background: #faf8ef; color: #776E65; font-family: "Clear Sans", "Helvetica Neue", Arial, sans-serif; font-size: 18px; } body { margin: 30px 0; } .heading:after { content: ""; display: block; clear: both; } h1.title { font-size: 30px; font-weight: bold; margin: 0; display: block; float: left; } @-webkit-keyframes move-up { 0% { top: 25px; opacity: 1; } 100% { top: -50px; opacity: 0; } } @-moz-keyframes move-up { 0% { top: 25px; opacity: 1; } 100% { top: -50px; opacity: 0; } } @keyframes move-up { 0% { top: 25px; opacity: 1; } 100% { top: -50px; opacity: 0; } } .scores-container { float: right; text-align: right; } .first-player-container, .second-player-container { width: 60px; position: relative; display: inline-block; background: #bbada0; padding: 15px 25px; font-size: 20px; height: 25px; line-height: 47px; font-weight: bold; border-radius: 3px; color: white; margin-top: 8px; margin-bottom: 8px; text-align: center; } .first-player-container:after, .second-player-container:after { position: absolute; width: 100%; top: 10px; left: 0; text-transform: uppercase; font-size: 13px; line-height: 13px; text-align: center; color: #eee4da; } .first-player-container .score-addition, .second-player-container .score-addition { position: absolute; right: 30px; color: red; font-size: 25px; line-height: 25px; font-weight: bold; color: rgba(119, 110, 101, 0.9); z-index: 100; -webkit-animation: move-up 600ms ease-in; -moz-animation: move-up 600ms ease-in; animation: move-up 600ms ease-in; -webkit-animation-fill-mode: both; -moz-animation-fill-mode: both; animation-fill-mode: both; } .first-player-container:after { content: "Player 1 (X)"; } .second-player-container:after { content: "Player 2 (O)"; } p { margin-top: 0; margin-bottom: 10px; line-height: 1.65; } a { color: #776E65; font-weight: bold; text-decoration: underline; cursor: pointer; } strong.important { text-transform: uppercase; } hr { border: none; border-bottom: 1px solid #d8d4d0; margin-top: 20px; margin-bottom: 30px; } .container { width: 644px; margin: 0 auto; } @-webkit-keyframes fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } @-moz-keyframes fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } .game-container { margin-top: 10px; position: relative; padding: 4px; cursor: default; -webkit-touch-callout: none; -ms-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -ms-touch-action: none; touch-action: none; background: #bbada0; border-radius: 6px; width: 644px; height: 644px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .game-container .game-message { display: none; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: rgba(238, 228, 218, 0.5); z-index: 100; text-align: center; -webkit-animation: fade-in 800ms ease 1200ms; -moz-animation: fade-in 800ms ease 1200ms; animation: fade-in 800ms ease 1200ms; -webkit-animation-fill-mode: both; -moz-animation-fill-mode: both; animation-fill-mode: both; } .game-container .game-message p { font-size: 60px; font-weight: bold; height: 40px; line-height: 60px; margin-top: 80px; } .game-container .game-message .lower { display: block; margin-top: 59px; } .game-container .game-message a { display: inline-block; background: #8f7a66; border-radius: 3px; padding: 0 20px; text-decoration: none; color: #f9f6f2; height: 40px; line-height: 42px; margin-left: 9px; } .game-container .game-message a.keep-playing-button { display: none; } .game-container .game-message.game-won { background: rgba(133, 180, 210, 0.5); color: #f9f6f2; font-size: medium; } .game-container .game-message.game-won a.keep-playing-button { display: inline-block; } .game-container .game-message.game-won, .game-container .game-message.game-over { display: block; } .grid-container { position: absolute; z-index: 1; } .grid-row { margin-bottom: 4px; } .grid-row:last-child { margin-bottom: 0; } .grid-row:after { content: ""; display: block; clear: both; } .grid-cell { width: 60px; height: 60px; margin-right: 4px; float: left; border-radius: 3px; background: rgba(238, 228, 218, 0.35); } .grid-cell:last-child { margin-right: 0; } .tile-container { position: absolute; z-index: 2; } .tile, .tile .tile-inner { width: 60px; height: 60px; line-height: 60px; } .tile.tile-position-1-1 { -webkit-transform: translate(0px, 0px); -moz-transform: translate(0px, 0px); transform: translate(0px, 0px); } .tile.tile-position-1-2 { -webkit-transform: translate(0px, 64px); -moz-transform: translate(0px, 64px); transform: translate(0px, 64px); } .tile.tile-position-1-3 { -webkit-transform: translate(0px, 128px); -moz-transform: translate(0px, 128px); transform: translate(0px, 128px); } .tile.tile-position-1-4 { -webkit-transform: translate(0px, 192px); -moz-transform: translate(0px, 192px); transform: translate(0px, 192px); } .tile.tile-position-1-5 { -webkit-transform: translate(0px, 256px); -moz-transform: translate(0px, 256px); transform: translate(0px, 256px); } .tile.tile-position-1-6 { -webkit-transform: translate(0px, 320px); -moz-transform: translate(0px, 320px); transform: translate(0px, 320px); } .tile.tile-position-1-7 { -webkit-transform: translate(0px, 384px); -moz-transform: translate(0px, 384px); transform: translate(0px, 384px); } .tile.tile-position-1-8 { -webkit-transform: translate(0px, 448px); -moz-transform: translate(0px, 448px); transform: translate(0px, 448px); } .tile.tile-position-1-9 { -webkit-transform: translate(0px, 512px); -moz-transform: translate(0px, 512px); transform: translate(0px, 512px); } .tile.tile-position-1-10 { -webkit-transform: translate(0px, 576px); -moz-transform: translate(0px, 576px); transform: translate(0px, 576px); } .tile.tile-position-2-1 { -webkit-transform: translate(64px, 0px); -moz-transform: translate(64px, 0px); transform: translate(64px, 0px); } .tile.tile-position-2-2 { -webkit-transform: translate(64px, 64px); -moz-transform: translate(64px, 64px); transform: translate(64px, 64px); } .tile.tile-position-2-3 { -webkit-transform: translate(64px, 128px); -moz-transform: translate(64px, 128px); transform: translate(64px, 128px); } .tile.tile-position-2-4 { -webkit-transform: translate(64px, 192px); -moz-transform: translate(64px, 192px); transform: translate(64px, 192px); } .tile.tile-position-2-5 { -webkit-transform: translate(64px, 256px); -moz-transform: translate(64px, 256px); transform: translate(64px, 256px); } .tile.tile-position-2-6 { -webkit-transform: translate(64px, 320px); -moz-transform: translate(64px, 320px); transform: translate(64px, 320px); } .tile.tile-position-2-7 { -webkit-transform: translate(64px, 384px); -moz-transform: translate(64px, 384px); transform: translate(64px, 384px); } .tile.tile-position-2-8 { -webkit-transform: translate(64px, 448px); -moz-transform: translate(64px, 448px); transform: translate(64px, 448px); } .tile.tile-position-2-9 { -webkit-transform: translate(64px, 512px); -moz-transform: translate(64px, 512px); transform: translate(64px, 512px); } .tile.tile-position-2-10 { -webkit-transform: translate(64px, 576px); -moz-transform: translate(64px, 576px); transform: translate(64px, 576px); } .tile.tile-position-3-1 { -webkit-transform: translate(128px, 0px); -moz-transform: translate(128px, 0px); transform: translate(128px, 0px); } .tile.tile-position-3-2 { -webkit-transform: translate(128px, 64px); -moz-transform: translate(128px, 64px); transform: translate(128px, 64px); } .tile.tile-position-3-3 { -webkit-transform: translate(128px, 128px); -moz-transform: translate(128px, 128px); transform: translate(128px, 128px); } .tile.tile-position-3-4 { -webkit-transform: translate(128px, 192px); -moz-transform: translate(128px, 192px); transform: translate(128px, 192px); } .tile.tile-position-3-5 { -webkit-transform: translate(128px, 256px); -moz-transform: translate(128px, 256px); transform: translate(128px, 256px); } .tile.tile-position-3-6 { -webkit-transform: translate(128px, 320px); -moz-transform: translate(128px, 320px); transform: translate(128px, 320px); } .tile.tile-position-3-7 { -webkit-transform: translate(128px, 384px); -moz-transform: translate(128px, 384px); transform: translate(128px, 384px); } .tile.tile-position-3-8 { -webkit-transform: translate(128px, 448px); -moz-transform: translate(128px, 448px); transform: translate(128px, 448px); } .tile.tile-position-3-9 { -webkit-transform: translate(128px, 512px); -moz-transform: translate(128px, 512px); transform: translate(128px, 512px); } .tile.tile-position-3-10 { -webkit-transform: translate(128px, 576px); -moz-transform: translate(128px, 576px); transform: translate(128px, 576px); } .tile.tile-position-4-1 { -webkit-transform: translate(192px, 0px); -moz-transform: translate(192px, 0px); transform: translate(192px, 0px); } .tile.tile-position-4-2 { -webkit-transform: translate(192px, 64px); -moz-transform: translate(192px, 64px); transform: translate(192px, 64px); } .tile.tile-position-4-3 { -webkit-transform: translate(192px, 128px); -moz-transform: translate(192px, 128px); transform: translate(192px, 128px); } .tile.tile-position-4-4 { -webkit-transform: translate(192px, 192px); -moz-transform: translate(192px, 192px); transform: translate(192px, 192px); } .tile.tile-position-4-5 { -webkit-transform: translate(192px, 256px); -moz-transform: translate(192px, 256px); transform: translate(192px, 256px); } .tile.tile-position-4-6 { -webkit-transform: translate(192px, 320px); -moz-transform: translate(192px, 320px); transform: translate(192px, 320px); } .tile.tile-position-4-7 { -webkit-transform: translate(192px, 384px); -moz-transform: translate(192px, 384px); transform: translate(192px, 384px); } .tile.tile-position-4-8 { -webkit-transform: translate(192px, 448px); -moz-transform: translate(192px, 448px); transform: translate(192px, 448px); } .tile.tile-position-4-9 { -webkit-transform: translate(192px, 512px); -moz-transform: translate(192px, 512px); transform: translate(192px, 512px); } .tile.tile-position-4-10 { -webkit-transform: translate(192px, 576px); -moz-transform: translate(192px, 576px); transform: translate(192px, 576px); } .tile.tile-position-5-1 { -webkit-transform: translate(256px, 0px); -moz-transform: translate(256px, 0px); transform: translate(256px, 0px); } .tile.tile-position-5-2 { -webkit-transform: translate(256px, 64px); -moz-transform: translate(256px, 64px); transform: translate(256px, 64px); } .tile.tile-position-5-3 { -webkit-transform: translate(256px, 128px); -moz-transform: translate(256px, 128px); transform: translate(256px, 128px); } .tile.tile-position-5-4 { -webkit-transform: translate(256px, 192px); -moz-transform: translate(256px, 192px); transform: translate(256px, 192px); } .tile.tile-position-5-5 { -webkit-transform: translate(256px, 256px); -moz-transform: translate(256px, 256px); transform: translate(256px, 256px); } .tile.tile-position-5-6 { -webkit-transform: translate(256px, 320px); -moz-transform: translate(256px, 320px); transform: translate(256px, 320px); } .tile.tile-position-5-7 { -webkit-transform: translate(256px, 384px); -moz-transform: translate(256px, 384px); transform: translate(256px, 384px); } .tile.tile-position-5-8 { -webkit-transform: translate(256px, 448px); -moz-transform: translate(256px, 448px); transform: translate(256px, 448px); } .tile.tile-position-5-9 { -webkit-transform: translate(256px, 512px); -moz-transform: translate(256px, 512px); transform: translate(256px, 512px); } .tile.tile-position-5-10 { -webkit-transform: translate(256px, 576px); -moz-transform: translate(256px, 576px); transform: translate(256px, 576px); } .tile.tile-position-6-1 { -webkit-transform: translate(320px, 0px); -moz-transform: translate(320px, 0px); transform: translate(320px, 0px); } .tile.tile-position-6-2 { -webkit-transform: translate(320px, 64px); -moz-transform: translate(320px, 64px); transform: translate(320px, 64px); } .tile.tile-position-6-3 { -webkit-transform: translate(320px, 128px); -moz-transform: translate(320px, 128px); transform: translate(320px, 128px); } .tile.tile-position-6-4 { -webkit-transform: translate(320px, 192px); -moz-transform: translate(320px, 192px); transform: translate(320px, 192px); } .tile.tile-position-6-5 { -webkit-transform: translate(320px, 256px); -moz-transform: translate(320px, 256px); transform: translate(320px, 256px); } .tile.tile-position-6-6 { -webkit-transform: translate(320px, 320px); -moz-transform: translate(320px, 320px); transform: translate(320px, 320px); } .tile.tile-position-6-7 { -webkit-transform: translate(320px, 384px); -moz-transform: translate(320px, 384px); transform: translate(320px, 384px); } .tile.tile-position-6-8 { -webkit-transform: translate(320px, 448px); -moz-transform: translate(320px, 448px); transform: translate(320px, 448px); } .tile.tile-position-6-9 { -webkit-transform: translate(320px, 512px); -moz-transform: translate(320px, 512px); transform: translate(320px, 512px); } .tile.tile-position-6-10 { -webkit-transform: translate(320px, 576px); -moz-transform: translate(320px, 576px); transform: translate(320px, 576px); } .tile.tile-position-7-1 { -webkit-transform: translate(384px, 0px); -moz-transform: translate(384px, 0px); transform: translate(384px, 0px); } .tile.tile-position-7-2 { -webkit-transform: translate(384px, 64px); -moz-transform: translate(384px, 64px); transform: translate(384px, 64px); } .tile.tile-position-7-3 { -webkit-transform: translate(384px, 128px); -moz-transform: translate(384px, 128px); transform: translate(384px, 128px); } .tile.tile-position-7-4 { -webkit-transform: translate(384px, 192px); -moz-transform: translate(384px, 192px); transform: translate(384px, 192px); } .tile.tile-position-7-5 { -webkit-transform: translate(384px, 256px); -moz-transform: translate(384px, 256px); transform: translate(384px, 256px); } .tile.tile-position-7-6 { -webkit-transform: translate(384px, 320px); -moz-transform: translate(384px, 320px); transform: translate(384px, 320px); } .tile.tile-position-7-7 { -webkit-transform: translate(384px, 384px); -moz-transform: translate(384px, 384px); transform: translate(384px, 384px); } .tile.tile-position-7-8 { -webkit-transform: translate(384px, 448px); -moz-transform: translate(384px, 448px); transform: translate(384px, 448px); } .tile.tile-position-7-9 { -webkit-transform: translate(384px, 512px); -moz-transform: translate(384px, 512px); transform: translate(384px, 512px); } .tile.tile-position-7-10 { -webkit-transform: translate(384px, 576px); -moz-transform: translate(384px, 576px); transform: translate(384px, 576px); } .tile.tile-position-8-1 { -webkit-transform: translate(448px, 0px); -moz-transform: translate(448px, 0px); transform: translate(448px, 0px); } .tile.tile-position-8-2 { -webkit-transform: translate(448px, 64px); -moz-transform: translate(448px, 64px); transform: translate(448px, 64px); } .tile.tile-position-8-3 { -webkit-transform: translate(448px, 128px); -moz-transform: translate(448px, 128px); transform: translate(448px, 128px); } .tile.tile-position-8-4 { -webkit-transform: translate(448px, 192px); -moz-transform: translate(448px, 192px); transform: translate(448px, 192px); } .tile.tile-position-8-5 { -webkit-transform: translate(448px, 256px); -moz-transform: translate(448px, 256px); transform: translate(448px, 256px); } .tile.tile-position-8-6 { -webkit-transform: translate(448px, 320px); -moz-transform: translate(448px, 320px); transform: translate(448px, 320px); } .tile.tile-position-8-7 { -webkit-transform: translate(448px, 384px); -moz-transform: translate(448px, 384px); transform: translate(448px, 384px); } .tile.tile-position-8-8 { -webkit-transform: translate(448px, 448px); -moz-transform: translate(448px, 448px); transform: translate(448px, 448px); } .tile.tile-position-8-9 { -webkit-transform: translate(448px, 512px); -moz-transform: translate(448px, 512px); transform: translate(448px, 512px); } .tile.tile-position-8-10 { -webkit-transform: translate(448px, 576px); -moz-transform: translate(448px, 576px); transform: translate(448px, 576px); } .tile.tile-position-9-1 { -webkit-transform: translate(512px, 0px); -moz-transform: translate(512px, 0px); transform: translate(512px, 0px); } .tile.tile-position-9-2 { -webkit-transform: translate(512px, 64px); -moz-transform: translate(512px, 64px); transform: translate(512px, 64px); } .tile.tile-position-9-3 { -webkit-transform: translate(512px, 128px); -moz-transform: translate(512px, 128px); transform: translate(512px, 128px); } .tile.tile-position-9-4 { -webkit-transform: translate(512px, 192px); -moz-transform: translate(512px, 192px); transform: translate(512px, 192px); } .tile.tile-position-9-5 { -webkit-transform: translate(512px, 256px); -moz-transform: translate(512px, 256px); transform: translate(512px, 256px); } .tile.tile-position-9-6 { -webkit-transform: translate(512px, 320px); -moz-transform: translate(512px, 320px); transform: translate(512px, 320px); } .tile.tile-position-9-7 { -webkit-transform: translate(512px, 384px); -moz-transform: translate(512px, 384px); transform: translate(512px, 384px); } .tile.tile-position-9-8 { -webkit-transform: translate(512px, 448px); -moz-transform: translate(512px, 448px); transform: translate(512px, 448px); } .tile.tile-position-9-9 { -webkit-transform: translate(512px, 512px); -moz-transform: translate(512px, 512px); transform: translate(512px, 512px); } .tile.tile-position-9-10 { -webkit-transform: translate(512px, 576px); -moz-transform: translate(512px, 576px); transform: translate(512px, 576px); } .tile.tile-position-10-1 { -webkit-transform: translate(576px, 0px); -moz-transform: translate(576px, 0px); transform: translate(576px, 0px); } .tile.tile-position-10-2 { -webkit-transform: translate(576px, 64px); -moz-transform: translate(576px, 64px); transform: translate(576px, 64px); } .tile.tile-position-10-3 { -webkit-transform: translate(576px, 128px); -moz-transform: translate(576px, 128px); transform: translate(576px, 128px); } .tile.tile-position-10-4 { -webkit-transform: translate(576px, 192px); -moz-transform: translate(576px, 192px); transform: translate(576px, 192px); } .tile.tile-position-10-5 { -webkit-transform: translate(576px, 256px); -moz-transform: translate(576px, 256px); transform: translate(576px, 256px); } .tile.tile-position-10-6 { -webkit-transform: translate(576px, 320px); -moz-transform: translate(576px, 320px); transform: translate(576px, 320px); } .tile.tile-position-10-7 { -webkit-transform: translate(576px, 384px); -moz-transform: translate(576px, 384px); transform: translate(576px, 384px); } .tile.tile-position-10-8 { -webkit-transform: translate(576px, 448px); -moz-transform: translate(576px, 448px); transform: translate(576px, 448px); } .tile.tile-position-10-9 { -webkit-transform: translate(576px, 512px); -moz-transform: translate(576px, 512px); transform: translate(576px, 512px); } .tile.tile-position-10-10 { -webkit-transform: translate(576px, 576px); -moz-transform: translate(576px, 576px); transform: translate(576px, 576px); } .tile { position: absolute; -webkit-transition: 100ms ease-in-out; -moz-transition: 100ms ease-in-out; transition: 100ms ease-in-out; -webkit-transition-property: -webkit-transform; -moz-transition-property: -moz-transform; transition-property: transform; } .tile .tile-inner { border-radius: 3px; /*background: $tile-color;*/ background: rgba(238, 228, 218, 0.35); text-align: center; font-weight: bold; z-index: 10; font-size: 45px; } .tile.tile-X .tile-inner { color: #ff3333; /*background: #debda7;*/ } @media screen and (max-width: 664px) { .tile.tile-X .tile-inner { font-size: 25px; } } .tile.tile-O .tile-inner { color: #1b4561; /*background: green;*/ } @media screen and (max-width: 664px) { .tile.tile-O .tile-inner { font-size: 25px; } } .tile.tile-X-Win .tile-inner { color: #ff3333; box-shadow: 0 0 30px 5px #f3d774, inset 0 0 0 1px white; } @media screen and (max-width: 664px) { .tile.tile-X-Win .tile-inner { font-size: 25px; } } .tile.tile-O-Win .tile-inner { color: #1b4561; box-shadow: 0 0 30px 5px #f3d774, inset 0 0 0 1px white; } @media screen and (max-width: 664px) { .tile.tile-O-Win .tile-inner { font-size: 25px; } } @-webkit-keyframes appear { 0% { opacity: 0; -webkit-transform: scale(0); -moz-transform: scale(0); transform: scale(0); } 100% { opacity: 1; -webkit-transform: scale(1); -moz-transform: scale(1); transform: scale(1); } } @-moz-keyframes appear { 0% { opacity: 0; -webkit-transform: scale(0); -moz-transform: scale(0); transform: scale(0); } 100% { opacity: 1; -webkit-transform: scale(1); -moz-transform: scale(1); transform: scale(1); } } @keyframes appear { 0% { opacity: 0; -webkit-transform: scale(0); -moz-transform: scale(0); transform: scale(0); } 100% { opacity: 1; -webkit-transform: scale(1); -moz-transform: scale(1); transform: scale(1); } } .tile-new .tile-inner { -webkit-animation: appear 200ms ease 100ms; -moz-animation: appear 200ms ease 100ms; animation: appear 200ms ease 100ms; -webkit-animation-fill-mode: backwards; -moz-animation-fill-mode: backwards; animation-fill-mode: backwards; } @-webkit-keyframes pop { 0% { -webkit-transform: scale(0); -moz-transform: scale(0); transform: scale(0); } 50% { -webkit-transform: scale(1.2); -moz-transform: scale(1.2); transform: scale(1.2); } 100% { -webkit-transform: scale(1); -moz-transform: scale(1); transform: scale(1); } } @-moz-keyframes pop { 0% { -webkit-transform: scale(0); -moz-transform: scale(0); transform: scale(0); } 50% { -webkit-transform: scale(1.2); -moz-transform: scale(1.2); transform: scale(1.2); } 100% { -webkit-transform: scale(1); -moz-transform: scale(1); transform: scale(1); } } @keyframes pop { 0% { -webkit-transform: scale(0); -moz-transform: scale(0); transform: scale(0); } 50% { -webkit-transform: scale(1.2); -moz-transform: scale(1.2); transform: scale(1.2); } 100% { -webkit-transform: scale(1); -moz-transform: scale(1); transform: scale(1); } } .tile-merged .tile-inner { z-index: 20; -webkit-animation: pop 200ms ease 100ms; -moz-animation: pop 200ms ease 100ms; animation: pop 200ms ease 100ms; -webkit-animation-fill-mode: backwards; -moz-animation-fill-mode: backwards; animation-fill-mode: backwards; } .above-game:after { content: ""; display: block; clear: both; } .game-intro { float: left; line-height: 42px; margin-bottom: 0; } .restart-button { display: inline-block; background: #8f7a66; border-radius: 3px; padding: 0 20px; text-decoration: none; color: #f9f6f2; height: 40px; line-height: 42px; display: block; text-align: center; float: right; } .undo-button { display: inline-block; background: #8f7a66; border-radius: 3px; padding: 0 20px; text-decoration: none; color: #f9f6f2; height: 40px; line-height: 42px; display: block; text-align: center; float: right; margin-right: 5px; width: 50px; } .game-explanation { margin-top: 50px; } @media screen and (max-width: 664px) { /*$field-width: 400px;*/ /*$grid-spacing: 4px;*/ /*$grid-row-cells: 10;*/ /*$tile-size: ($field-width - $grid-spacing * ($grid-row-cells + 1)) / $grid-row-cells;*/ /*$tile-border-radius: 3px;*/ /*$grid-row-count: 10;*/ html, body { font-size: 15px; } body { margin: 20px 0; padding: 0 20px; } h1.title { font-size: 27px; margin-top: 15px; } .container { width: 444px; margin: 0 auto; } .game-container { width: 444px; } .first-player-container, .second-player-container { margin-top: 0; padding: 15px 10px; min-width: 60px; width: 60px; font-size: medium; } .first-player-container:after { content: "Plr 1 (X)"; } .second-player-container:after { content: "Plr 2 (O)"; } .heading { margin-bottom: 10px; } .game-intro { width: 50%; display: block; box-sizing: border-box; line-height: 1.65; } .restart-button { width: 20%; padding: 0; display: block; box-sizing: border-box; margin-top: 2px; /*margin-right: 0;*/ } .undo-button { width: 20%; padding: 0; display: block; box-sizing: border-box; margin-top: 2px; /*margin-right: 0;*/ } .game-container { margin-top: 10px; position: relative; padding: 4px; cursor: default; -webkit-touch-callout: none; -ms-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -ms-touch-action: none; touch-action: none; background: #bbada0; border-radius: 6px; width: 644px; height: 644px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .game-container .game-message { display: none; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: rgba(238, 228, 218, 0.5); z-index: 100; text-align: center; -webkit-animation: fade-in 800ms ease 1200ms; -moz-animation: fade-in 800ms ease 1200ms; animation: fade-in 800ms ease 1200ms; -webkit-animation-fill-mode: both; -moz-animation-fill-mode: both; animation-fill-mode: both; } .game-container .game-message p { font-size: 60px; font-weight: bold; height: 40px; line-height: 60px; margin-top: 80px; } .game-container .game-message .lower { display: block; margin-top: 59px; } .game-container .game-message a { display: inline-block; background: #8f7a66; border-radius: 3px; padding: 0 20px; text-decoration: none; color: #f9f6f2; height: 40px; line-height: 42px; margin-left: 9px; } .game-container .game-message a.keep-playing-button { display: none; } .game-container .game-message.game-won { background: rgba(133, 180, 210, 0.5); color: #f9f6f2; font-size: medium; } .game-container .game-message.game-won a.keep-playing-button { display: inline-block; } .game-container .game-message.game-won, .game-container .game-message.game-over { display: block; } .grid-container { position: absolute; z-index: 1; } .grid-row { margin-bottom: 4px; } .grid-row:last-child { margin-bottom: 0; } .grid-row:after { content: ""; display: block; clear: both; } .grid-cell { width: 60px; height: 60px; margin-right: 4px; float: left; border-radius: 3px; background: rgba(238, 228, 218, 0.35); } .grid-cell:last-child { margin-right: 0; } .tile-container { position: absolute; z-index: 2; } .tile, .tile .tile-inner { width: 60px; height: 60px; line-height: 60px; } .tile.tile-position-1-1 { -webkit-transform: translate(0px, 0px); -moz-transform: translate(0px, 0px); transform: translate(0px, 0px); } .tile.tile-position-1-2 { -webkit-transform: translate(0px, 64px); -moz-transform: translate(0px, 64px); transform: translate(0px, 64px); } .tile.tile-position-1-3 { -webkit-transform: translate(0px, 128px); -moz-transform: translate(0px, 128px); transform: translate(0px, 128px); } .tile.tile-position-1-4 { -webkit-transform: translate(0px, 192px); -moz-transform: translate(0px, 192px); transform: translate(0px, 192px); } .tile.tile-position-1-5 { -webkit-transform: translate(0px, 256px); -moz-transform: translate(0px, 256px); transform: translate(0px, 256px); } .tile.tile-position-1-6 { -webkit-transform: translate(0px, 320px); -moz-transform: translate(0px, 320px); transform: translate(0px, 320px); } .tile.tile-position-1-7 { -webkit-transform: translate(0px, 384px); -moz-transform: translate(0px, 384px); transform: translate(0px, 384px); } .tile.tile-position-1-8 { -webkit-transform: translate(0px, 448px); -moz-transform: translate(0px, 448px); transform: translate(0px, 448px); } .tile.tile-position-1-9 { -webkit-transform: translate(0px, 512px); -moz-transform: translate(0px, 512px); transform: translate(0px, 512px); } .tile.tile-position-1-10 { -webkit-transform: translate(0px, 576px); -moz-transform: translate(0px, 576px); transform: translate(0px, 576px); } .tile.tile-position-2-1 { -webkit-transform: translate(64px, 0px); -moz-transform: translate(64px, 0px); transform: translate(64px, 0px); } .tile.tile-position-2-2 { -webkit-transform: translate(64px, 64px); -moz-transform: translate(64px, 64px); transform: translate(64px, 64px); } .tile.tile-position-2-3 { -webkit-transform: translate(64px, 128px); -moz-transform: translate(64px, 128px); transform: translate(64px, 128px); } .tile.tile-position-2-4 { -webkit-transform: translate(64px, 192px); -moz-transform: translate(64px, 192px); transform: translate(64px, 192px); } .tile.tile-position-2-5 { -webkit-transform: translate(64px, 256px); -moz-transform: translate(64px, 256px); transform: translate(64px, 256px); } .tile.tile-position-2-6 { -webkit-transform: translate(64px, 320px); -moz-transform: translate(64px, 320px); transform: translate(64px, 320px); } .tile.tile-position-2-7 { -webkit-transform: translate(64px, 384px); -moz-transform: translate(64px, 384px); transform: translate(64px, 384px); } .tile.tile-position-2-8 { -webkit-transform: translate(64px, 448px); -moz-transform: translate(64px, 448px); transform: translate(64px, 448px); } .tile.tile-position-2-9 { -webkit-transform: translate(64px, 512px); -moz-transform: translate(64px, 512px); transform: translate(64px, 512px); } .tile.tile-position-2-10 { -webkit-transform: translate(64px, 576px); -moz-transform: translate(64px, 576px); transform: translate(64px, 576px); } .tile.tile-position-3-1 { -webkit-transform: translate(128px, 0px); -moz-transform: translate(128px, 0px); transform: translate(128px, 0px); } .tile.tile-position-3-2 { -webkit-transform: translate(128px, 64px); -moz-transform: translate(128px, 64px); transform: translate(128px, 64px); } .tile.tile-position-3-3 { -webkit-transform: translate(128px, 128px); -moz-transform: translate(128px, 128px); transform: translate(128px, 128px); } .tile.tile-position-3-4 { -webkit-transform: translate(128px, 192px); -moz-transform: translate(128px, 192px); transform: translate(128px, 192px); } .tile.tile-position-3-5 { -webkit-transform: translate(128px, 256px); -moz-transform: translate(128px, 256px); transform: translate(128px, 256px); } .tile.tile-position-3-6 { -webkit-transform: translate(128px, 320px); -moz-transform: translate(128px, 320px); transform: translate(128px, 320px); } .tile.tile-position-3-7 { -webkit-transform: translate(128px, 384px); -moz-transform: translate(128px, 384px); transform: translate(128px, 384px); } .tile.tile-position-3-8 { -webkit-transform: translate(128px, 448px); -moz-transform: translate(128px, 448px); transform: translate(128px, 448px); } .tile.tile-position-3-9 { -webkit-transform: translate(128px, 512px); -moz-transform: translate(128px, 512px); transform: translate(128px, 512px); } .tile.tile-position-3-10 { -webkit-transform: translate(128px, 576px); -moz-transform: translate(128px, 576px); transform: translate(128px, 576px); } .tile.tile-position-4-1 { -webkit-transform: translate(192px, 0px); -moz-transform: translate(192px, 0px); transform: translate(192px, 0px); } .tile.tile-position-4-2 { -webkit-transform: translate(192px, 64px); -moz-transform: translate(192px, 64px); transform: translate(192px, 64px); } .tile.tile-position-4-3 { -webkit-transform: translate(192px, 128px); -moz-transform: translate(192px, 128px); transform: translate(192px, 128px); } .tile.tile-position-4-4 { -webkit-transform: translate(192px, 192px); -moz-transform: translate(192px, 192px); transform: translate(192px, 192px); } .tile.tile-position-4-5 { -webkit-transform: translate(192px, 256px); -moz-transform: translate(192px, 256px); transform: translate(192px, 256px); } .tile.tile-position-4-6 { -webkit-transform: translate(192px, 320px); -moz-transform: translate(192px, 320px); transform: translate(192px, 320px); } .tile.tile-position-4-7 { -webkit-transform: translate(192px, 384px); -moz-transform: translate(192px, 384px); transform: translate(192px, 384px); } .tile.tile-position-4-8 { -webkit-transform: translate(192px, 448px); -moz-transform: translate(192px, 448px); transform: translate(192px, 448px); } .tile.tile-position-4-9 { -webkit-transform: translate(192px, 512px); -moz-transform: translate(192px, 512px); transform: translate(192px, 512px); } .tile.tile-position-4-10 { -webkit-transform: translate(192px, 576px); -moz-transform: translate(192px, 576px); transform: translate(192px, 576px); } .tile.tile-position-5-1 { -webkit-transform: translate(256px, 0px); -moz-transform: translate(256px, 0px); transform: translate(256px, 0px); } .tile.tile-position-5-2 { -webkit-transform: translate(256px, 64px); -moz-transform: translate(256px, 64px); transform: translate(256px, 64px); } .tile.tile-position-5-3 { -webkit-transform: translate(256px, 128px); -moz-transform: translate(256px, 128px); transform: translate(256px, 128px); } .tile.tile-position-5-4 { -webkit-transform: translate(256px, 192px); -moz-transform: translate(256px, 192px); transform: translate(256px, 192px); } .tile.tile-position-5-5 { -webkit-transform: translate(256px, 256px); -moz-transform: translate(256px, 256px); transform: translate(256px, 256px); } .tile.tile-position-5-6 { -webkit-transform: translate(256px, 320px); -moz-transform: translate(256px, 320px); transform: translate(256px, 320px); } .tile.tile-position-5-7 { -webkit-transform: translate(256px, 384px); -moz-transform: translate(256px, 384px); transform: translate(256px, 384px); } .tile.tile-position-5-8 { -webkit-transform: translate(256px, 448px); -moz-transform: translate(256px, 448px); transform: translate(256px, 448px); } .tile.tile-position-5-9 { -webkit-transform: translate(256px, 512px); -moz-transform: translate(256px, 512px); transform: translate(256px, 512px); } .tile.tile-position-5-10 { -webkit-transform: translate(256px, 576px); -moz-transform: translate(256px, 576px); transform: translate(256px, 576px); } .tile.tile-position-6-1 { -webkit-transform: translate(320px, 0px); -moz-transform: translate(320px, 0px); transform: translate(320px, 0px); } .tile.tile-position-6-2 { -webkit-transform: translate(320px, 64px); -moz-transform: translate(320px, 64px); transform: translate(320px, 64px); } .tile.tile-position-6-3 { -webkit-transform: translate(320px, 128px); -moz-transform: translate(320px, 128px); transform: translate(320px, 128px); } .tile.tile-position-6-4 { -webkit-transform: translate(320px, 192px); -moz-transform: translate(320px, 192px); transform: translate(320px, 192px); } .tile.tile-position-6-5 { -webkit-transform: translate(320px, 256px); -moz-transform: translate(320px, 256px); transform: translate(320px, 256px); } .tile.tile-position-6-6 { -webkit-transform: translate(320px, 320px); -moz-transform: translate(320px, 320px); transform: translate(320px, 320px); } .tile.tile-position-6-7 { -webkit-transform: translate(320px, 384px); -moz-transform: translate(320px, 384px); transform: translate(320px, 384px); } .tile.tile-position-6-8 { -webkit-transform: translate(320px, 448px); -moz-transform: translate(320px, 448px); transform: translate(320px, 448px); } .tile.tile-position-6-9 { -webkit-transform: translate(320px, 512px); -moz-transform: translate(320px, 512px); transform: translate(320px, 512px); } .tile.tile-position-6-10 { -webkit-transform: translate(320px, 576px); -moz-transform: translate(320px, 576px); transform: translate(320px, 576px); } .tile.tile-position-7-1 { -webkit-transform: translate(384px, 0px); -moz-transform: translate(384px, 0px); transform: translate(384px, 0px); } .tile.tile-position-7-2 { -webkit-transform: translate(384px, 64px); -moz-transform: translate(384px, 64px); transform: translate(384px, 64px); } .tile.tile-position-7-3 { -webkit-transform: translate(384px, 128px); -moz-transform: translate(384px, 128px); transform: translate(384px, 128px); } .tile.tile-position-7-4 { -webkit-transform: translate(384px, 192px); -moz-transform: translate(384px, 192px); transform: translate(384px, 192px); } .tile.tile-position-7-5 { -webkit-transform: translate(384px, 256px); -moz-transform: translate(384px, 256px); transform: translate(384px, 256px); } .tile.tile-position-7-6 { -webkit-transform: translate(384px, 320px); -moz-transform: translate(384px, 320px); transform: translate(384px, 320px); } .tile.tile-position-7-7 { -webkit-transform: translate(384px, 384px); -moz-transform: translate(384px, 384px); transform: translate(384px, 384px); } .tile.tile-position-7-8 { -webkit-transform: translate(384px, 448px); -moz-transform: translate(384px, 448px); transform: translate(384px, 448px); } .tile.tile-position-7-9 { -webkit-transform: translate(384px, 512px); -moz-transform: translate(384px, 512px); transform: translate(384px, 512px); } .tile.tile-position-7-10 { -webkit-transform: translate(384px, 576px); -moz-transform: translate(384px, 576px); transform: translate(384px, 576px); } .tile.tile-position-8-1 { -webkit-transform: translate(448px, 0px); -moz-transform: translate(448px, 0px); transform: translate(448px, 0px); } .tile.tile-position-8-2 { -webkit-transform: translate(448px, 64px); -moz-transform: translate(448px, 64px); transform: translate(448px, 64px); } .tile.tile-position-8-3 { -webkit-transform: translate(448px, 128px); -moz-transform: translate(448px, 128px); transform: translate(448px, 128px); } .tile.tile-position-8-4 { -webkit-transform: translate(448px, 192px); -moz-transform: translate(448px, 192px); transform: translate(448px, 192px); } .tile.tile-position-8-5 { -webkit-transform: translate(448px, 256px); -moz-transform: translate(448px, 256px); transform: translate(448px, 256px); } .tile.tile-position-8-6 { -webkit-transform: translate(448px, 320px); -moz-transform: translate(448px, 320px); transform: translate(448px, 320px); } .tile.tile-position-8-7 { -webkit-transform: translate(448px, 384px); -moz-transform: translate(448px, 384px); transform: translate(448px, 384px); } .tile.tile-position-8-8 { -webkit-transform: translate(448px, 448px); -moz-transform: translate(448px, 448px); transform: translate(448px, 448px); } .tile.tile-position-8-9 { -webkit-transform: translate(448px, 512px); -moz-transform: translate(448px, 512px); transform: translate(448px, 512px); } .tile.tile-position-8-10 { -webkit-transform: translate(448px, 576px); -moz-transform: translate(448px, 576px); transform: translate(448px, 576px); } .tile.tile-position-9-1 { -webkit-transform: translate(512px, 0px); -moz-transform: translate(512px, 0px); transform: translate(512px, 0px); } .tile.tile-position-9-2 { -webkit-transform: translate(512px, 64px); -moz-transform: translate(512px, 64px); transform: translate(512px, 64px); } .tile.tile-position-9-3 { -webkit-transform: translate(512px, 128px); -moz-transform: translate(512px, 128px); transform: translate(512px, 128px); } .tile.tile-position-9-4 { -webkit-transform: translate(512px, 192px); -moz-transform: translate(512px, 192px); transform: translate(512px, 192px); } .tile.tile-position-9-5 { -webkit-transform: translate(512px, 256px); -moz-transform: translate(512px, 256px); transform: translate(512px, 256px); } .tile.tile-position-9-6 { -webkit-transform: translate(512px, 320px); -moz-transform: translate(512px, 320px); transform: translate(512px, 320px); } .tile.tile-position-9-7 { -webkit-transform: translate(512px, 384px); -moz-transform: translate(512px, 384px); transform: translate(512px, 384px); } .tile.tile-position-9-8 { -webkit-transform: translate(512px, 448px); -moz-transform: translate(512px, 448px); transform: translate(512px, 448px); } .tile.tile-position-9-9 { -webkit-transform: translate(512px, 512px); -moz-transform: translate(512px, 512px); transform: translate(512px, 512px); } .tile.tile-position-9-10 { -webkit-transform: translate(512px, 576px); -moz-transform: translate(512px, 576px); transform: translate(512px, 576px); } .tile.tile-position-10-1 { -webkit-transform: translate(576px, 0px); -moz-transform: translate(576px, 0px); transform: translate(576px, 0px); } .tile.tile-position-10-2 { -webkit-transform: translate(576px, 64px); -moz-transform: translate(576px, 64px); transform: translate(576px, 64px); } .tile.tile-position-10-3 { -webkit-transform: translate(576px, 128px); -moz-transform: translate(576px, 128px); transform: translate(576px, 128px); } .tile.tile-position-10-4 { -webkit-transform: translate(576px, 192px); -moz-transform: translate(576px, 192px); transform: translate(576px, 192px); } .tile.tile-position-10-5 { -webkit-transform: translate(576px, 256px); -moz-transform: translate(576px, 256px); transform: translate(576px, 256px); } .tile.tile-position-10-6 { -webkit-transform: translate(576px, 320px); -moz-transform: translate(576px, 320px); transform: translate(576px, 320px); } .tile.tile-position-10-7 { -webkit-transform: translate(576px, 384px); -moz-transform: translate(576px, 384px); transform: translate(576px, 384px); } .tile.tile-position-10-8 { -webkit-transform: translate(576px, 448px); -moz-transform: translate(576px, 448px); transform: translate(576px, 448px); } .tile.tile-position-10-9 { -webkit-transform: translate(576px, 512px); -moz-transform: translate(576px, 512px); transform: translate(576px, 512px); } .tile.tile-position-10-10 { -webkit-transform: translate(576px, 576px); -moz-transform: translate(576px, 576px); transform: translate(576px, 576px); } .tile .tile-inner { font-size: 35px; } .game-message p { font-size: 30px !important; height: 30px !important; line-height: 30px !important; margin-top: 90px !important; } .game-message .lower { margin-top: 30px !important; } }
0.317426
0.057203
@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400;500;600;700;800&family=Josefin+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Mulish:ital,wght@0,200;0,300;0,400;0,500;1,200;1,300;1,400&display=swap'); @import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css); @import url('https://fonts.googleapis.com/css2?family=Glory:wght@100;400;500&family=Raleway:wght@400;500;600&display=swap'); /*Zera todas as margens*/ * { margin: 0; padding: 0; /*margem interna do elemento*/ list-style: none; text-decoration: none; } :root{ --font-primary: "<NAME>", serif; --font-secundary: "Josefin Slab:ital", serif; --font-action: "Mulish:ital", serif; } .hamburguer { /*background-color: blue;*/ width: 2rem; height: 2rem; position: fixed; /*fica sempre na mesma posiรงรฃo mesmo na rolagem*/ z-index: 100; right: 2rem; top: 2rem; display: flex; flex-direction: column; justify-content: space-evenly; cursor: pointer; } .show-menu .hamburguer { right: 16rem; } .line { width: 100%; background-color: #fff; height: .1rem; box-shadow: 0.1rem 0.1rem 1px #000; /*para o meno ser visรญvel independente do background*/ transition: transform 1s; } .show-menu #line1 { transform: rotate(45deg) translate(.3rem, .25rem); } .show-menu #line2 { opacity: 0; visibility: hidden; } .show-menu #line3 { transform: rotate(-45deg) translate(.3rem, -.40rem); } .hamburguer span { position: absolute; left: 3rem; height: 2rem; width: 6rem; display: flex; justify-content: center; align-items: center; background-color: #555; border-radius: 5px; color: #fff; font-family: var(--font-action); opacity: 0; /*transition: all 0.5s;*/ } .hamburguer span::before { content: ""; position: absolute; border-right: .5rem solid #555; border-bottom: .5rem solid transparent; border-left: .5rem solid transparent; border-top: .5rem solid transparent; left: -1rem; } .show-menu .hamburguer:hover span { opacity: 1; } header { width: 100%; height: 100vh; /*vh(view header) serve para a imagem preecher ao mรกximo aonde estรก sendo aberta*/ overflow: hidden; /*tira a possibilidade da rolagem lateral(chato)*/ position: relative; } .img-wrapper { width: 100%; /*vai ocupar o espaรงo de 100 de largura e altura onde estรก localizado, header no caso*/ height: 100%; overflow: hidden; background-color: rgba(0, 0, 0, 0.8); } .img-wrapper img { width: 100%; height: 100%; object-fit: cover; /*imagem nรฃo se comprime*/ opacity: 0.5; animation: zoom 25s; } @keyframes zoom { 0% { transform: scale(1.3); } 100% { transform: scale(1); } } .banner { position: absolute; /**para funcionar, precisa estar dentro de um position relative(header)*/ top: 30%; /*1/3 da tela do usuรกrio*/ left: 15%; } .banner h1 { color: #ffffff; font-size: 3.5rem; /*rem รฉ referente ao tamanho padrรฃo dos sites(16 px) 3rem = 3*16px; e, caso o usuario aumente o padrao, ele aumentara tbm esse h1. Usar pxls direto deixa a letra estรกtica e caso o usuario tente mudar o tamanho no navegador, n vai mudar.*/ font-family: var(--font-primary); /*serif caso o site do google esteja fora do ar, ele usa a serifada*/ font-weight: 200; /* diminui o negrito da fonte*/ text-shadow: .3rem .4rem 2px rgba(0, 0, 0, .4); /*texte shadow tem 4 argumentos: distanciamento da lestra(duas primeiras), bluar e a cor*/ line-height: 4rem; /*distanciamento das linhas*/ margin-bottom: 2rem; /*cria uma margem para o proximo item, que no caso รฉ de uma linha(2rem)*/ animation: moveBannerH1 1.2s 1.2s forwards; opacity: 0; } .banner p { color: #ffffff; font-size: 2rem; font-family: var(--font-secundary); text-shadow: .2rem .2rem rgba(0, 0, 0, 0.4); margin-bottom: 2rem; opacity: 0; animation: moveBannerAutor 1.2s 0.6s forwards; /*animation: name duration timing-function delay iteration-count direction fill-mode;*/ } .banner button { font-family: var(--font-action); color: #fff; font: 1.2rem; text-transform: uppercase; /*deixa todas letras maiรบsculas*/ letter-spacing: .2rem; /*espaรงamento entre as letras das plavras*/ border-radius: 5px; /*arredonda a borda*/ background: #bdc3c7; /*para navegadores antigos*/ background: -webkit-linear-gradient(to left, #a044ff, #6a0393); /* Chrome 10-25, Safari 5.1-6 */ background: linear-gradient(to left, #a044ff, #6a0393); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ padding: 1rem 3rem; /*possui diferentes formas de ser aplicada: -1 valor: aplica em todos os lados -2 valores, aplica o primeito em cima e em baixo e o segundo nos dois lados - 4 valores: comeรงa pelo top e vai no sentido horรกrio;*/ /*margem interna, distรขnia entre a palavra de todos os lados*/ border: none; /*nenhuma borda*/ cursor: pointer; /*muda o curso do mouse quando em cima do butรฃo*/ box-shadow: .2rem .2rem 2px rgba(0, 0, 0, .4); opacity: 0; animation: moveBannerButton 1.2s 1.8s forwards; } .banner button:hover { /*over รฉ uma pseudo classe(classe que identifica uma aรงรฃo */ opacity: 0.8 !important; } @keyframes moveBannerH1 { 0% { transform: translateY(-10rem); } 100% { transform: translateY(0); opacity: 1; } } @keyframes moveBannerAutor { 0% { transform: translateY(10rem); } 100% { transform: translateY(0); opacity: 1; } } @keyframes moveBannerButton { 0% { transform: translateY(10rem); } 100% { transform: translateY(0); opacity: 1; } } .sidebar { width: 20rem; height: 100vh; background-color: #fff; position: fixed; top: 0; right: -20rem; /*fora da tela*/ transition: all 1s; /*abertura do menu*/ } .show-menu .sidebar { right: 0; } .menu { position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%); /*distancia 50 de cada lado*/ } .menu-item { text-align: center; margin-bottom: .5rem; } .menu-link { font-family: var(--font-action); font-size: 2rem; color: #555; transition: color 1s; /*a cor muda dps de um segundo*/ } .menu-link:hover { color: violet; } .social-media { position: absolute; bottom: 2rem; width: 100%; display: flex; justify-content: space-evenly; /*separa os elementos e as bordas numa mesma quantidade de espaรงo*/ } .social-media i { color: #555; width: 2.5rem; height: 2.5rem; font-size: 2.5rem; /*aumenta o tamaho do รญcone(ele รฉ uma fonte)*/ display: flex; justify-content: center; /*alinha na horizontal*/ align-items: center; /*alinha na vertical*/ transition: color 1s; } .social-media i:hover { color: rgba(0, 0, 0, 0.8); } .conhecimentos { /*criar um grid de 16/6(16 colunas e 6 linhas)*/ display: grid; grid-template-columns: repeat(16, 1fr); /*cria colunas*/ grid-template-rows: repeat(6, 6rem); row-gap: 0.5rem; } .conhecimento:nth-child(1) { grid-column: 4/7; grid-row: 1/3; } .conhecimento:nth-child(2) { grid-column: 11/14; grid-row: 5/-1; } .conhecimento:nth-child(3) { grid-column: 4/7; grid-row: 5/-1; } .conhecimento:nth-child(4) { grid-column: 11/14; grid-row: 1/3; } .sessao-conhecimentos { background-color: #f5f5f5; } .sessao-header { display: flex; align-items: center; /*alinhamento horizontal*/ justify-content: center; } .sessao-header h1 { font-family: var(--font-primary); font-size: 3rem; color: #4b4b4b; border-bottom: solid 3px #6a3093; margin-bottom: 1.5rem; } .conhecimento-header { /*faz com que o texte e o titulo fiquem um do lado do outro*/ display: flex; align-items: center; color: #4b4b4b; } .conhecimento-header { font-size: 2.5rem; } .conhecimento-header h3 { font-family: var(--font-secundary); font-size: 2rem; /*espaรงamento em relaรงรฃo a esquerda esquerda*/ padding-left: 1rem; } .conhecimento-texte { font-family: var(--font-secundary); margin-top: 1rem; } .conhecimentos-img-wrapper { grid-column: 7/11; grid-row: 3/6; width: 100%; } .conhecimentos-img-wrapper img { /*faz ela caber sem avanรงar sobre o texto*/ object-fit: cover; width: 100%; } .projetos{ display: flex; justify-content: space-evenly; } .card{ width: 18rem; height: 25rem; position: relative; } .card-img-wrapper{ width: 100%; height: 100%; background-color: #262626; border-radius: .5rem; } .card-img-wrapper img{ object-fit: cover; width: 100%; height: 100%; opacity: 0.8; border-radius: .5rem; transition: opacidade .3s; } .card:hover .card-img-wrapper img{ opacity: .5; } .card-info{ opacity: 0; visibility: hidden; position: absolute; bottom: 0; padding: 2rem; text-shadow: 0.3rem 0.2rem 0.3rem rgba(0, 0, 0, .6); transition: all .3s; } .card:hover .card-info{ bottom: 2rem; opacity: 1; visibility: visible; } .card-info h2{ font-family: var(--font-primary); font-size: 2rem; font-weight: 500; color: #eee; } .card-info h3{ font-family: var(--font-secundary); font-weight: bolder; color: #ff4081; margin-bottom: 1.5rem; } .card-info p{ font-family: car(--font-secundary); font-size: .8rem; color: #eee; font-weight: 400; width: 80%; margin-bottom: 2rem ; } .card-info button{ width: 8rem; height: 2.5rem; background: #bdc3c7; background: -webkit-linear-gradient(to left, #a044ff, #6a3093); background: linear-gradient(to left, #a044ff, #6a3093 ); font-family: var(--font-action); font-size: 1rem; color: #eee; border-radius: .3rem; border: none; box-shadow: 0 .1rem .8rem rgba(0, 0, 0, .4); }
style.css
@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400;500;600;700;800&family=Josefin+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Mulish:ital,wght@0,200;0,300;0,400;0,500;1,200;1,300;1,400&display=swap'); @import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css); @import url('https://fonts.googleapis.com/css2?family=Glory:wght@100;400;500&family=Raleway:wght@400;500;600&display=swap'); /*Zera todas as margens*/ * { margin: 0; padding: 0; /*margem interna do elemento*/ list-style: none; text-decoration: none; } :root{ --font-primary: "<NAME>", serif; --font-secundary: "Josefin Slab:ital", serif; --font-action: "Mulish:ital", serif; } .hamburguer { /*background-color: blue;*/ width: 2rem; height: 2rem; position: fixed; /*fica sempre na mesma posiรงรฃo mesmo na rolagem*/ z-index: 100; right: 2rem; top: 2rem; display: flex; flex-direction: column; justify-content: space-evenly; cursor: pointer; } .show-menu .hamburguer { right: 16rem; } .line { width: 100%; background-color: #fff; height: .1rem; box-shadow: 0.1rem 0.1rem 1px #000; /*para o meno ser visรญvel independente do background*/ transition: transform 1s; } .show-menu #line1 { transform: rotate(45deg) translate(.3rem, .25rem); } .show-menu #line2 { opacity: 0; visibility: hidden; } .show-menu #line3 { transform: rotate(-45deg) translate(.3rem, -.40rem); } .hamburguer span { position: absolute; left: 3rem; height: 2rem; width: 6rem; display: flex; justify-content: center; align-items: center; background-color: #555; border-radius: 5px; color: #fff; font-family: var(--font-action); opacity: 0; /*transition: all 0.5s;*/ } .hamburguer span::before { content: ""; position: absolute; border-right: .5rem solid #555; border-bottom: .5rem solid transparent; border-left: .5rem solid transparent; border-top: .5rem solid transparent; left: -1rem; } .show-menu .hamburguer:hover span { opacity: 1; } header { width: 100%; height: 100vh; /*vh(view header) serve para a imagem preecher ao mรกximo aonde estรก sendo aberta*/ overflow: hidden; /*tira a possibilidade da rolagem lateral(chato)*/ position: relative; } .img-wrapper { width: 100%; /*vai ocupar o espaรงo de 100 de largura e altura onde estรก localizado, header no caso*/ height: 100%; overflow: hidden; background-color: rgba(0, 0, 0, 0.8); } .img-wrapper img { width: 100%; height: 100%; object-fit: cover; /*imagem nรฃo se comprime*/ opacity: 0.5; animation: zoom 25s; } @keyframes zoom { 0% { transform: scale(1.3); } 100% { transform: scale(1); } } .banner { position: absolute; /**para funcionar, precisa estar dentro de um position relative(header)*/ top: 30%; /*1/3 da tela do usuรกrio*/ left: 15%; } .banner h1 { color: #ffffff; font-size: 3.5rem; /*rem รฉ referente ao tamanho padrรฃo dos sites(16 px) 3rem = 3*16px; e, caso o usuario aumente o padrao, ele aumentara tbm esse h1. Usar pxls direto deixa a letra estรกtica e caso o usuario tente mudar o tamanho no navegador, n vai mudar.*/ font-family: var(--font-primary); /*serif caso o site do google esteja fora do ar, ele usa a serifada*/ font-weight: 200; /* diminui o negrito da fonte*/ text-shadow: .3rem .4rem 2px rgba(0, 0, 0, .4); /*texte shadow tem 4 argumentos: distanciamento da lestra(duas primeiras), bluar e a cor*/ line-height: 4rem; /*distanciamento das linhas*/ margin-bottom: 2rem; /*cria uma margem para o proximo item, que no caso รฉ de uma linha(2rem)*/ animation: moveBannerH1 1.2s 1.2s forwards; opacity: 0; } .banner p { color: #ffffff; font-size: 2rem; font-family: var(--font-secundary); text-shadow: .2rem .2rem rgba(0, 0, 0, 0.4); margin-bottom: 2rem; opacity: 0; animation: moveBannerAutor 1.2s 0.6s forwards; /*animation: name duration timing-function delay iteration-count direction fill-mode;*/ } .banner button { font-family: var(--font-action); color: #fff; font: 1.2rem; text-transform: uppercase; /*deixa todas letras maiรบsculas*/ letter-spacing: .2rem; /*espaรงamento entre as letras das plavras*/ border-radius: 5px; /*arredonda a borda*/ background: #bdc3c7; /*para navegadores antigos*/ background: -webkit-linear-gradient(to left, #a044ff, #6a0393); /* Chrome 10-25, Safari 5.1-6 */ background: linear-gradient(to left, #a044ff, #6a0393); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ padding: 1rem 3rem; /*possui diferentes formas de ser aplicada: -1 valor: aplica em todos os lados -2 valores, aplica o primeito em cima e em baixo e o segundo nos dois lados - 4 valores: comeรงa pelo top e vai no sentido horรกrio;*/ /*margem interna, distรขnia entre a palavra de todos os lados*/ border: none; /*nenhuma borda*/ cursor: pointer; /*muda o curso do mouse quando em cima do butรฃo*/ box-shadow: .2rem .2rem 2px rgba(0, 0, 0, .4); opacity: 0; animation: moveBannerButton 1.2s 1.8s forwards; } .banner button:hover { /*over รฉ uma pseudo classe(classe que identifica uma aรงรฃo */ opacity: 0.8 !important; } @keyframes moveBannerH1 { 0% { transform: translateY(-10rem); } 100% { transform: translateY(0); opacity: 1; } } @keyframes moveBannerAutor { 0% { transform: translateY(10rem); } 100% { transform: translateY(0); opacity: 1; } } @keyframes moveBannerButton { 0% { transform: translateY(10rem); } 100% { transform: translateY(0); opacity: 1; } } .sidebar { width: 20rem; height: 100vh; background-color: #fff; position: fixed; top: 0; right: -20rem; /*fora da tela*/ transition: all 1s; /*abertura do menu*/ } .show-menu .sidebar { right: 0; } .menu { position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%); /*distancia 50 de cada lado*/ } .menu-item { text-align: center; margin-bottom: .5rem; } .menu-link { font-family: var(--font-action); font-size: 2rem; color: #555; transition: color 1s; /*a cor muda dps de um segundo*/ } .menu-link:hover { color: violet; } .social-media { position: absolute; bottom: 2rem; width: 100%; display: flex; justify-content: space-evenly; /*separa os elementos e as bordas numa mesma quantidade de espaรงo*/ } .social-media i { color: #555; width: 2.5rem; height: 2.5rem; font-size: 2.5rem; /*aumenta o tamaho do รญcone(ele รฉ uma fonte)*/ display: flex; justify-content: center; /*alinha na horizontal*/ align-items: center; /*alinha na vertical*/ transition: color 1s; } .social-media i:hover { color: rgba(0, 0, 0, 0.8); } .conhecimentos { /*criar um grid de 16/6(16 colunas e 6 linhas)*/ display: grid; grid-template-columns: repeat(16, 1fr); /*cria colunas*/ grid-template-rows: repeat(6, 6rem); row-gap: 0.5rem; } .conhecimento:nth-child(1) { grid-column: 4/7; grid-row: 1/3; } .conhecimento:nth-child(2) { grid-column: 11/14; grid-row: 5/-1; } .conhecimento:nth-child(3) { grid-column: 4/7; grid-row: 5/-1; } .conhecimento:nth-child(4) { grid-column: 11/14; grid-row: 1/3; } .sessao-conhecimentos { background-color: #f5f5f5; } .sessao-header { display: flex; align-items: center; /*alinhamento horizontal*/ justify-content: center; } .sessao-header h1 { font-family: var(--font-primary); font-size: 3rem; color: #4b4b4b; border-bottom: solid 3px #6a3093; margin-bottom: 1.5rem; } .conhecimento-header { /*faz com que o texte e o titulo fiquem um do lado do outro*/ display: flex; align-items: center; color: #4b4b4b; } .conhecimento-header { font-size: 2.5rem; } .conhecimento-header h3 { font-family: var(--font-secundary); font-size: 2rem; /*espaรงamento em relaรงรฃo a esquerda esquerda*/ padding-left: 1rem; } .conhecimento-texte { font-family: var(--font-secundary); margin-top: 1rem; } .conhecimentos-img-wrapper { grid-column: 7/11; grid-row: 3/6; width: 100%; } .conhecimentos-img-wrapper img { /*faz ela caber sem avanรงar sobre o texto*/ object-fit: cover; width: 100%; } .projetos{ display: flex; justify-content: space-evenly; } .card{ width: 18rem; height: 25rem; position: relative; } .card-img-wrapper{ width: 100%; height: 100%; background-color: #262626; border-radius: .5rem; } .card-img-wrapper img{ object-fit: cover; width: 100%; height: 100%; opacity: 0.8; border-radius: .5rem; transition: opacidade .3s; } .card:hover .card-img-wrapper img{ opacity: .5; } .card-info{ opacity: 0; visibility: hidden; position: absolute; bottom: 0; padding: 2rem; text-shadow: 0.3rem 0.2rem 0.3rem rgba(0, 0, 0, .6); transition: all .3s; } .card:hover .card-info{ bottom: 2rem; opacity: 1; visibility: visible; } .card-info h2{ font-family: var(--font-primary); font-size: 2rem; font-weight: 500; color: #eee; } .card-info h3{ font-family: var(--font-secundary); font-weight: bolder; color: #ff4081; margin-bottom: 1.5rem; } .card-info p{ font-family: car(--font-secundary); font-size: .8rem; color: #eee; font-weight: 400; width: 80%; margin-bottom: 2rem ; } .card-info button{ width: 8rem; height: 2.5rem; background: #bdc3c7; background: -webkit-linear-gradient(to left, #a044ff, #6a3093); background: linear-gradient(to left, #a044ff, #6a3093 ); font-family: var(--font-action); font-size: 1rem; color: #eee; border-radius: .3rem; border: none; box-shadow: 0 .1rem .8rem rgba(0, 0, 0, .4); }
0.344443
0.092442
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; } /* Reset Lists */ ul { list-style-type: disc; list-style-position: inside; } ol { list-style-type: decimal; list-style-position: inside; } ul ul, ol ul { list-style-type: circle; list-style-position: inside; margin-left: 15px; } ol ol, ul ol { list-style-type: lower-latin; list-style-position: inside; margin-left: 15px; } /* Custom */ html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; } body { margin: 0; padding: 0; font-family: 'Inter UI', 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif; font-size: 14px; font-weight: 600; line-height: 1.54; background-color: #000000; color: #FFFFFF; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; font-feature-settings: 'liga', 'tnum', 'case', 'calt', 'zero', 'ss01', 'locl'; -webkit-overflow-scrolling: touch; -webkit-text-size-adjust: 100%; } html, body, div, pre, code, p, span { padding: 0; margin: 0; } h1, h2, h3, h4, h5, h6, p, ul, ol { padding-left: 8px; padding-right: 8px; } a { text-decoration: none; } a, a:visited, .link { } a:visited { } a:hover, a:focus, a:active { cursor: pointer; } .link:hover, .link:focus, .link:active { cursor: pointer; } pre, code { font-family: Menlo, Monaco, 'Courier New', monospace; } p { margin-bottom: 1.3rem; } h1, h2, h3, h4, h5, h6 { margin-top: 1.3rem; margin-bottom: 0.6rem; } h1 { font-size: 2rem; } h2 { font-size: 1.8rem; } h3 { font-size: 1.6rem; } h4 { font-size: 1.4rem; } h5 { font-size: 1.2rem; } h6 { font-size: 1.1rem; } small { font-size: 1.1em; } img, canvas, iframe, video, svg, select, textarea { max-width: 100%; } blockquote { border-left: 3px solid #FFFFFF; }
packages/client/src/CssReset.css
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; } /* Reset Lists */ ul { list-style-type: disc; list-style-position: inside; } ol { list-style-type: decimal; list-style-position: inside; } ul ul, ol ul { list-style-type: circle; list-style-position: inside; margin-left: 15px; } ol ol, ul ol { list-style-type: lower-latin; list-style-position: inside; margin-left: 15px; } /* Custom */ html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; } body { margin: 0; padding: 0; font-family: 'Inter UI', 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif; font-size: 14px; font-weight: 600; line-height: 1.54; background-color: #000000; color: #FFFFFF; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; font-feature-settings: 'liga', 'tnum', 'case', 'calt', 'zero', 'ss01', 'locl'; -webkit-overflow-scrolling: touch; -webkit-text-size-adjust: 100%; } html, body, div, pre, code, p, span { padding: 0; margin: 0; } h1, h2, h3, h4, h5, h6, p, ul, ol { padding-left: 8px; padding-right: 8px; } a { text-decoration: none; } a, a:visited, .link { } a:visited { } a:hover, a:focus, a:active { cursor: pointer; } .link:hover, .link:focus, .link:active { cursor: pointer; } pre, code { font-family: Menlo, Monaco, 'Courier New', monospace; } p { margin-bottom: 1.3rem; } h1, h2, h3, h4, h5, h6 { margin-top: 1.3rem; margin-bottom: 0.6rem; } h1 { font-size: 2rem; } h2 { font-size: 1.8rem; } h3 { font-size: 1.6rem; } h4 { font-size: 1.4rem; } h5 { font-size: 1.2rem; } h6 { font-size: 1.1rem; } small { font-size: 1.1em; } img, canvas, iframe, video, svg, select, textarea { max-width: 100%; } blockquote { border-left: 3px solid #FFFFFF; }
0.460532
0.091951
html { scroll-behavior: smooth; overflow: hidden; } @media only screen and (max-width: 750px) { html { overflow-y: visible; } } /* ------------------------------------------- Body Styles ------------------------------------------- */ body { display: flex; flex-direction: column; margin: 0; padding: 0; box-sizing: border-box; font-family: Georgia, "Times New Roman", Times, serif; } /* ------------------------------------------ Navbar Styles ------------------------------------------ */ .nav { display: flex; place-items: center; flex-direction: column; /* padding-bottom: 3%; */ } .navigation { position: fixed; top: 3rem; background: #ecb365; display: flex; flex-direction: column; align-items: center; border-radius: 1rem; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; transition: 0.5s; z-index: 9999; } .navigation img { padding-top: 2.5%; padding-bottom: 2%; max-width: 20%; max-height: 20%; } .navigation ul { display: flex; padding: 0%; } .navigation ul li { pointer-events: none; padding-top: 0.8rem; position: relative; list-style: none; width: 80px; height: 40px; z-index: 1; } .navigation ul li a { pointer-events: visible; text-decoration: none; position: relative; display: flex; justify-content: center; align-items: center; flex-direction: column; width: 100%; text-align: 100%; font-weight: 500; color: #064663; } .navigation ul li a .icon { position: relative; display: block; font-size: 2.5em; text-align: center; transition: 0.5s; color: #064663; } .navigation ul li.active a .icon { transform: translateY(-35px); color: #4e9f3d; } .navigation ul li a .text { position: absolute; color: #041c32; padding: 5px 7px; border-radius: 12px; background: #4e9f3d; font-weight: 400; font-size: 0.85em; letter-spacing: 0.05em; transition: 0.5s; opacity: 0; } .navigation ul li.active a .text { opacity: 1; } .indicator { position: absolute; top: -30%; width: 80px; height: 80px; background: #ecb365; border-radius: 25%; transition: 0.5s; } .navigation ul li:nth-child(1).active ~ .indicator { transform: translateX(calc(80px * 0)); } .navigation ul li:nth-child(2).active ~ .indicator { transform: translateX(calc(80px * 1)); } .navigation ul li:nth-child(3).active ~ .indicator { transform: translateX(calc(80px * 2)); } .navigation ul li:nth-child(4).active ~ .indicator { transform: translateX(calc(80px * 3)); } @media only screen and (max-width: 750px) { .navigation ul li a .icon { font-size: 2em; } } /* ------------------------------------------- Home Styles ------------------------------------------- */ .home { margin: 0%; padding: 0%; display: flex; justify-content: center; align-items: center; flex-direction: column; width: auto; height: 100vh; color: #4e9f3d; background: #041c32; } .home h1 { display: flex; justify-content: center; align-items: center; font-size: 4rem; font-weight: 400; line-height: 2; letter-spacing: 0.25rem; } .home .autotyper { color: #ecb365; } .home .desc { padding: 0%; display: flex; justify-content: center; align-items: center; } .home .stressed { font-size: x-large; color: #ecb365; } @media only screen and (max-width: 750px) { .home h1 { transition: 0.5s; font-size: 2rem; letter-spacing: 0.15rem; } .home .desc { transition: 0.5s; font-size: small; } .home .stressed { transition: 0.5s; font-size: large; } } /* ----------------------------------------- Profile Styles ----------------------------------------- */ .profile { margin: 0%; padding: 0%; display: flex; justify-content: center; align-items: center; background: #041c32; color: #4e9f3d; padding-right: 5rem; padding-left: 5rem; width: auto; min-height: 100vh; padding-top: 7rem; z-index: 1; } .profile .row { padding: 0%; margin: 0%; } .profile .title { display: flex; justify-content: center; align-items: center; font-weight: 100%; } .profile .title h1 { display: flex; justify-content: center; align-items: center; padding-top: 20%; padding-bottom: 20%; background: #4e9f3d; color: #041c32; font-size: 2.5rem; border-radius: 2rem; transition: 0.5s; transform-origin: bottom; transform: scaleY(0); writing-mode: vertical-rl; text-orientation: upright; } .profile .title h1[data-scroll="in"] { transform: scaleY(1); position: relative; z-index: 0; } .profile .title h1:before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 2rem; background: #ecb365; transition: 0.5s; transform-origin: bottom; } .profile .title h1[data-scroll="in"]:before { opacity: 0; transition-delay: 0.7s; } .profile .image { margin: 0%; display: flex; justify-content: center; align-items: center; } .profile img { width: auto; height: auto; max-width: 100%; max-height: 100%; border-radius: 20%; } .profile .desc { padding: 5%; transition: 1s; display: flex; justify-content: center; align-items: center; text-align: justify; font-family: Verdana, Geneva, Tahoma, sans-serif; font-style: normal; transition: 0.5s; transform: translateX(0); opacity: 0; } .profile .desc[data-scroll="in"] { transform: translateX(0px); transition-delay: 0.5s; opacity: 1; } @media only screen and (max-width: 1000px) { .profile img { width: 50%; height: 70%; } .profile .desc { padding: 2%; padding-top: 5%; font-size: 0.9rem; } } @media only screen and (max-width: 768px) { .profile { padding: 0%; padding-right: 2rem; padding-left: 2rem; padding-top: 10%; } .profile img { width: 50%; height: 90%; } .profile .title { padding-top: 2%; } .profile .title h1 { padding: 0%; padding-left: 20%; padding-right: 20%; font-size: 1.5rem; transform-origin: left; transform: scaleX(0); writing-mode: horizontal-tb; text-orientation: upright; } .profile .title h1[data-scroll="in"] { transform: scaleX(1); } .profile .title h1:before { transform-origin: left; } } /* ----------------------------------------- Ability Styles ----------------------------------------- */ .ability { margin: 0%; padding: 0%; padding-left: 10%; padding-right: 10%; display: flex; justify-content: center; align-items: center; position: relative; width: auto; min-height: 100vh; padding-top: 6rem; flex-wrap: wrap; overflow-y: visible; overflow-x: hidden; background: #041c32; color: #4e9f3d; } .ability .row { display: flex; justify-content: center; align-items: center; --bs-gutter-x: 0 rem; padding: 0%; box-sizing: border-box; margin: 2%; } .ability .box { display: flex; justify-content: center; align-items: center; position: relative; width: 350px; height: 300px; margin: 1%; background: #064663; border-radius: 20px; overflow: hidden; } .ability .box::before { content: ""; position: absolute; width: 150px; height: 200%; background: linear-gradient(#ecb365, #4e9f3d); animation: animate 4s linear infinite; } .ability .box::after { content: ""; position: absolute; inset: 6px; background: #041c32; border-radius: 15px; } @keyframes animate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .ability .box .icon { display: flex; justify-content: center; align-items: center; position: absolute; top: 0%; left: 0; width: 100%; height: 100%; background: #064663; transition: 0.5s; z-index: 2; } .ability .box:hover .icon { top: 18px; background: #ecb365; left: calc(50% - 40px); width: 80px; height: 80px; border-radius: 50%; /* transition-delay: 0s; */ } .ability .box .icon ion-icon { font-size: 5em; color: #4e9f3d; /* transition-delay: 0.25s; */ } .ability .box:hover .icon ion-icon { font-size: 2em; color: #064663; /* transition-delay: 0s; */ } .ability .box .content { display: flex; flex-direction: column; position: relative; color: #ecb365; text-align: center; margin-top: 100px; z-index: 1; transform: scale(0); transition: 0.05s; /* transition-delay: 0s; */ } .ability .box h2 { text-align: center; } .ability .box:hover .content { display: flex; flex-direction: column; padding: 20px; transform: scale(1); /* transition-delay: 0.25s; */ } .ability .box .content h2 { margin-top: 5px; } .ability .box .content p { font-weight: 300; line-height: 1.5em; } @media only screen and (max-width: 1000px) { .ability { padding-top: 6rem; padding-right: 0rem; padding-left: 0rem; } .ability .row { padding: 0%; margin: 0%; } .ability .box { transition: 0.5s; height: 200px; width: 180px; margin: 2%; } .ability .box:hover .icon { top: 20px; left: calc(50% - 15px); width: 30px; height: 30px; } .ability .box:hover .icon ion-icon { font-size: 1em; } .ability .box .content { transition: 0.5s; margin-top: 40px; } .ability .box:hover .content { transition: 0.5s; padding: 15px; } .ability .box .content h2 { font-size: 0.8rem; } .ability .box .content p { font-size: 0.6rem; line-height: 1.25; } } /* ----------------------------------------- Contact Styles ----------------------------------------- */ .contact { margin: 0%; padding: 0%; overflow-y: visible; overflow-x: hidden; display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 100vh; background: #041c32; width: auto; } .centered { position: relative; display: flex; justify-content: center; align-items: center; left: 0; right: 0; margin: 0%; } .letter { position: absolute; width: 30rem; margin: 0%; color: #ecb365; font-family: monospace; text-align: center; perspective: 60rem; z-index: 9999; } .side { height: 10rem; background-color: #041c32; outline: 1px solid transparent; } .side:nth-of-type(1) { padding: 2rem 2rem 0; border-radius: 2rem 2rem 0 0; box-shadow: inset 0 1rem 3rem #064663; } .side:nth-of-type(2) { padding: 2rem; border-radius: 0 0 2rem 2rem; box-shadow: 0 0.1rem 0.1rem #041c32, inset 0 -1rem 3rem #064663; text-align: right; } h1, p { margin: 0; padding: 0rem; } h1 { font-size: 2.5rem; padding-bottom: 0em; } textarea, input, button { line-height: 1.5rem; outline: none; appearance: none; } textarea, input { text-align: center; color: #ecb365; background-color: #064663; border-radius: 10px; } textarea { width: 100%; height: 5rem; resize: none; } input { width: 50%; margin-bottom: 0.5rem; } input[type="text"]:invalid, input[type="email"]:invalid { box-shadow: none; } button { padding: 0.2rem 1rem; border-radius: 0.25rem; color: #ecb365; background-color: #064663; font-size: 1rem; transition: background-color 0.2s; border-radius: 10px; } button:hover, button:focus { outline: none; background-color: #ecb365; color: #041c32; } input[type="text"]:focus, input[type="email"]:focus, textarea:focus { color: #041c32; background-color: #ecb365; outline: none; } .envelope { display: flex; justify-content: center; align-items: center; position: relative; left: 0; right: 0; top: 2rem; margin: auto; } .envelope.front { position: absolute; width: 10rem; height: 8rem; border-radius: 0 0 1rem 1rem; overflow: hidden; z-index: 9998; opacity: 0; } .envelope.front::before, .envelope.front::after { position: absolute; display: block; width: 12rem; height: 6rem; background-color: #e9dc9d; transform: rotate(30deg); transform-origin: 0 0; box-shadow: 0 0 1rem #041c32; content: ""; } .envelope.front::after { right: 0; transform: rotate(-30deg); transform-origin: 100% 0; } .envelope.back { top: -1rem; width: 10rem; height: 10rem; overflow: hidden; z-index: 9997; opacity: 0; transform: translateY(-6rem); } .envelope.back::before { display: flex; justify-content: center; align-items: center; width: 12em; height: 10rem; background-color: #e9dc9d; border-radius: 1rem; content: ""; transform: scaleY(0.6) rotate(45deg); } .result-message { position: absolute; color: #ecb365; opacity: 0; transition: all 0.3s 2s; z-index: -9999; } .sent .letter { top: 5rem; animation: scaleLetter 0.5s forwards ease-in, pushLetter 0.3s 0.66s forwards ease-out; z-index: 9998; } .sent .side:nth-of-type(1) { margin-top: 0%; transform-origin: 0 100%; animation: closeLetter 0.5s forwards ease-in; } .sent .side:nth-of-type(1) h1, .sent .side:nth-of-type(1) textarea { animation: fadeOutText 0.5s forwards linear; } .sent button { background-color: #041c32; } .sent .envelope { animation: fadeInEnvelope 0.3s 1.66s forwards ease-out; } .sent .result-message { z-index: 9999; opacity: 1; transition: 0.5s; transform: translateY(12rem); } @keyframes closeLetter { 50% { transform: rotateX(-90deg); } 100% { transform: rotateX(-180deg); background-color: #ecb365; } } @keyframes fadeOutText { 49% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 0; } } @keyframes fadeInEnvelope { 0% { opacity: 0; transform: translateY(8rem); } 90% { opacity: 1; transform: translateY(4rem); } 100% { opacity: 1; transform: translateY(4.5rem); } } @keyframes scaleLetter { 66% { transform: translateY(-8rem) scale(0.5, 0.5); } 75% { transform: translateY(-8rem) scale(0.5, 0.5); } 90% { transform: translateY(-8rem) scale(0.3, 0.5); } 97% { transform: translateY(-8rem) scale(0.33, 0.5); } 100% { transform: translateY(-8rem) scale(0.3, 0.5); } } @keyframes pushLetter { 0% { transform: translateY(-8rem) scale(0.3, 0.5); } 50% { transform: translateY(-8rem) scale(0.3, 0.5); } 90% { transform: translateY(-8.5rem) scale(0.3, 0.5); } 100% { transform: translateY(-8rem) scale(0.3, 0.5); } } @media only screen and (max-width: 1000px) { .letter { position: absolute; width: 30rem; perspective: 60rem; } .side { margin-left: 10%; margin-right: 10%; padding-bottom: 0%; } .side:nth-of-type(1) { margin-top: 5%; } } /* ----------------------------------------- Footer Styles ----------------------------------------- */ footer { position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; width: 100%; background: #ecb365; padding: 1.2em 0em 1em 0em; top: calc(100vh - 67vh); } footer .foolist, footer .foomenu { position: relative; display: flex; justify-content: center; align-items: center; margin: 0%; flex-wrap: wrap; padding: 0%; } footer .foolist li, footer .foomenu li { list-style: none; } footer .foolist li a { font-size: 2em; color: #064663; margin: 0 10px; display: inline-block; transition: 0.5s; } footer .foolist li a:hover { transform: translateY(-15px); color: #4e9f3d; } footer .foomenu li a { font-size: 1em; color: #064663; margin: 0 8px; display: inline-block; transition: 0.5s; opacity: 0.2; text-decoration: none; } footer .foomenu li a:hover { opacity: 1; color: #4e9f3d; } footer .wave { position: absolute; top: -100px; left: 0; width: 100%; height: 100px; background: #041c32 url(images/wave.png); background-size: 1000px 100px; } footer .wave#wave1 { z-index: 1000; opacity: 1; bottom: 0; animation: animateWave1 3s linear infinite; } footer .wave#wave2 { z-index: 999; opacity: 0.5; bottom: 10px; animation: animateWave2 3s linear infinite; } footer .wave#wave3 { z-index: 1000; opacity: 0.25; bottom: 15px; animation: animateWave1 2s linear infinite; } footer .wave#wave4 { z-index: 999; opacity: 0.75; bottom: 20px; animation: animateWave2 2s linear infinite; } @keyframes animateWave1 { 0% { background-position-x: 1000px; } 100% { background-position-x: 0px; } } @keyframes animateWave2 { 0% { background-position-x: 0px; } 100% { background-position-x: 1000px; } } footer p { padding: 0%; color: #064663; text-align: center; margin-top: 5px; font-size: 0.7em; opacity: 0.8; } @media only screen and (max-width: 600px) { footer { top: calc(100vh - 67vh); } footer .foolist li a { font-size: 1.5em; margin: 0 8px; } footer .foomenu li a { font-size: 0.75em; margin: 0 8px; } } /* -------------------------------------------- SCROLLBAR ------------------------------------------- */ .scrollbar-success::-webkit-scrollbar-track { background: linear-gradient(#041c32, #ecb365, #041c32); } .scrollbar-success::-webkit-scrollbar { width: 10px; background-color: #ecb365; } .scrollbar-success::-webkit-scrollbar-thumb { border-radius: 50px; background-color: #00c851; } .scrollbar-success { scrollbar-color: #00c851 #ecb365; } .scrollbar-success::-webkit-scrollbar-track-piece:end { margin-bottom: 80px; } .scrollbar-success::-webkit-scrollbar-track-piece:start { margin-top: 80px; } /* ---------------------------------------------- END --------------------------------------------- */
styles.css
html { scroll-behavior: smooth; overflow: hidden; } @media only screen and (max-width: 750px) { html { overflow-y: visible; } } /* ------------------------------------------- Body Styles ------------------------------------------- */ body { display: flex; flex-direction: column; margin: 0; padding: 0; box-sizing: border-box; font-family: Georgia, "Times New Roman", Times, serif; } /* ------------------------------------------ Navbar Styles ------------------------------------------ */ .nav { display: flex; place-items: center; flex-direction: column; /* padding-bottom: 3%; */ } .navigation { position: fixed; top: 3rem; background: #ecb365; display: flex; flex-direction: column; align-items: center; border-radius: 1rem; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; transition: 0.5s; z-index: 9999; } .navigation img { padding-top: 2.5%; padding-bottom: 2%; max-width: 20%; max-height: 20%; } .navigation ul { display: flex; padding: 0%; } .navigation ul li { pointer-events: none; padding-top: 0.8rem; position: relative; list-style: none; width: 80px; height: 40px; z-index: 1; } .navigation ul li a { pointer-events: visible; text-decoration: none; position: relative; display: flex; justify-content: center; align-items: center; flex-direction: column; width: 100%; text-align: 100%; font-weight: 500; color: #064663; } .navigation ul li a .icon { position: relative; display: block; font-size: 2.5em; text-align: center; transition: 0.5s; color: #064663; } .navigation ul li.active a .icon { transform: translateY(-35px); color: #4e9f3d; } .navigation ul li a .text { position: absolute; color: #041c32; padding: 5px 7px; border-radius: 12px; background: #4e9f3d; font-weight: 400; font-size: 0.85em; letter-spacing: 0.05em; transition: 0.5s; opacity: 0; } .navigation ul li.active a .text { opacity: 1; } .indicator { position: absolute; top: -30%; width: 80px; height: 80px; background: #ecb365; border-radius: 25%; transition: 0.5s; } .navigation ul li:nth-child(1).active ~ .indicator { transform: translateX(calc(80px * 0)); } .navigation ul li:nth-child(2).active ~ .indicator { transform: translateX(calc(80px * 1)); } .navigation ul li:nth-child(3).active ~ .indicator { transform: translateX(calc(80px * 2)); } .navigation ul li:nth-child(4).active ~ .indicator { transform: translateX(calc(80px * 3)); } @media only screen and (max-width: 750px) { .navigation ul li a .icon { font-size: 2em; } } /* ------------------------------------------- Home Styles ------------------------------------------- */ .home { margin: 0%; padding: 0%; display: flex; justify-content: center; align-items: center; flex-direction: column; width: auto; height: 100vh; color: #4e9f3d; background: #041c32; } .home h1 { display: flex; justify-content: center; align-items: center; font-size: 4rem; font-weight: 400; line-height: 2; letter-spacing: 0.25rem; } .home .autotyper { color: #ecb365; } .home .desc { padding: 0%; display: flex; justify-content: center; align-items: center; } .home .stressed { font-size: x-large; color: #ecb365; } @media only screen and (max-width: 750px) { .home h1 { transition: 0.5s; font-size: 2rem; letter-spacing: 0.15rem; } .home .desc { transition: 0.5s; font-size: small; } .home .stressed { transition: 0.5s; font-size: large; } } /* ----------------------------------------- Profile Styles ----------------------------------------- */ .profile { margin: 0%; padding: 0%; display: flex; justify-content: center; align-items: center; background: #041c32; color: #4e9f3d; padding-right: 5rem; padding-left: 5rem; width: auto; min-height: 100vh; padding-top: 7rem; z-index: 1; } .profile .row { padding: 0%; margin: 0%; } .profile .title { display: flex; justify-content: center; align-items: center; font-weight: 100%; } .profile .title h1 { display: flex; justify-content: center; align-items: center; padding-top: 20%; padding-bottom: 20%; background: #4e9f3d; color: #041c32; font-size: 2.5rem; border-radius: 2rem; transition: 0.5s; transform-origin: bottom; transform: scaleY(0); writing-mode: vertical-rl; text-orientation: upright; } .profile .title h1[data-scroll="in"] { transform: scaleY(1); position: relative; z-index: 0; } .profile .title h1:before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 2rem; background: #ecb365; transition: 0.5s; transform-origin: bottom; } .profile .title h1[data-scroll="in"]:before { opacity: 0; transition-delay: 0.7s; } .profile .image { margin: 0%; display: flex; justify-content: center; align-items: center; } .profile img { width: auto; height: auto; max-width: 100%; max-height: 100%; border-radius: 20%; } .profile .desc { padding: 5%; transition: 1s; display: flex; justify-content: center; align-items: center; text-align: justify; font-family: Verdana, Geneva, Tahoma, sans-serif; font-style: normal; transition: 0.5s; transform: translateX(0); opacity: 0; } .profile .desc[data-scroll="in"] { transform: translateX(0px); transition-delay: 0.5s; opacity: 1; } @media only screen and (max-width: 1000px) { .profile img { width: 50%; height: 70%; } .profile .desc { padding: 2%; padding-top: 5%; font-size: 0.9rem; } } @media only screen and (max-width: 768px) { .profile { padding: 0%; padding-right: 2rem; padding-left: 2rem; padding-top: 10%; } .profile img { width: 50%; height: 90%; } .profile .title { padding-top: 2%; } .profile .title h1 { padding: 0%; padding-left: 20%; padding-right: 20%; font-size: 1.5rem; transform-origin: left; transform: scaleX(0); writing-mode: horizontal-tb; text-orientation: upright; } .profile .title h1[data-scroll="in"] { transform: scaleX(1); } .profile .title h1:before { transform-origin: left; } } /* ----------------------------------------- Ability Styles ----------------------------------------- */ .ability { margin: 0%; padding: 0%; padding-left: 10%; padding-right: 10%; display: flex; justify-content: center; align-items: center; position: relative; width: auto; min-height: 100vh; padding-top: 6rem; flex-wrap: wrap; overflow-y: visible; overflow-x: hidden; background: #041c32; color: #4e9f3d; } .ability .row { display: flex; justify-content: center; align-items: center; --bs-gutter-x: 0 rem; padding: 0%; box-sizing: border-box; margin: 2%; } .ability .box { display: flex; justify-content: center; align-items: center; position: relative; width: 350px; height: 300px; margin: 1%; background: #064663; border-radius: 20px; overflow: hidden; } .ability .box::before { content: ""; position: absolute; width: 150px; height: 200%; background: linear-gradient(#ecb365, #4e9f3d); animation: animate 4s linear infinite; } .ability .box::after { content: ""; position: absolute; inset: 6px; background: #041c32; border-radius: 15px; } @keyframes animate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .ability .box .icon { display: flex; justify-content: center; align-items: center; position: absolute; top: 0%; left: 0; width: 100%; height: 100%; background: #064663; transition: 0.5s; z-index: 2; } .ability .box:hover .icon { top: 18px; background: #ecb365; left: calc(50% - 40px); width: 80px; height: 80px; border-radius: 50%; /* transition-delay: 0s; */ } .ability .box .icon ion-icon { font-size: 5em; color: #4e9f3d; /* transition-delay: 0.25s; */ } .ability .box:hover .icon ion-icon { font-size: 2em; color: #064663; /* transition-delay: 0s; */ } .ability .box .content { display: flex; flex-direction: column; position: relative; color: #ecb365; text-align: center; margin-top: 100px; z-index: 1; transform: scale(0); transition: 0.05s; /* transition-delay: 0s; */ } .ability .box h2 { text-align: center; } .ability .box:hover .content { display: flex; flex-direction: column; padding: 20px; transform: scale(1); /* transition-delay: 0.25s; */ } .ability .box .content h2 { margin-top: 5px; } .ability .box .content p { font-weight: 300; line-height: 1.5em; } @media only screen and (max-width: 1000px) { .ability { padding-top: 6rem; padding-right: 0rem; padding-left: 0rem; } .ability .row { padding: 0%; margin: 0%; } .ability .box { transition: 0.5s; height: 200px; width: 180px; margin: 2%; } .ability .box:hover .icon { top: 20px; left: calc(50% - 15px); width: 30px; height: 30px; } .ability .box:hover .icon ion-icon { font-size: 1em; } .ability .box .content { transition: 0.5s; margin-top: 40px; } .ability .box:hover .content { transition: 0.5s; padding: 15px; } .ability .box .content h2 { font-size: 0.8rem; } .ability .box .content p { font-size: 0.6rem; line-height: 1.25; } } /* ----------------------------------------- Contact Styles ----------------------------------------- */ .contact { margin: 0%; padding: 0%; overflow-y: visible; overflow-x: hidden; display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 100vh; background: #041c32; width: auto; } .centered { position: relative; display: flex; justify-content: center; align-items: center; left: 0; right: 0; margin: 0%; } .letter { position: absolute; width: 30rem; margin: 0%; color: #ecb365; font-family: monospace; text-align: center; perspective: 60rem; z-index: 9999; } .side { height: 10rem; background-color: #041c32; outline: 1px solid transparent; } .side:nth-of-type(1) { padding: 2rem 2rem 0; border-radius: 2rem 2rem 0 0; box-shadow: inset 0 1rem 3rem #064663; } .side:nth-of-type(2) { padding: 2rem; border-radius: 0 0 2rem 2rem; box-shadow: 0 0.1rem 0.1rem #041c32, inset 0 -1rem 3rem #064663; text-align: right; } h1, p { margin: 0; padding: 0rem; } h1 { font-size: 2.5rem; padding-bottom: 0em; } textarea, input, button { line-height: 1.5rem; outline: none; appearance: none; } textarea, input { text-align: center; color: #ecb365; background-color: #064663; border-radius: 10px; } textarea { width: 100%; height: 5rem; resize: none; } input { width: 50%; margin-bottom: 0.5rem; } input[type="text"]:invalid, input[type="email"]:invalid { box-shadow: none; } button { padding: 0.2rem 1rem; border-radius: 0.25rem; color: #ecb365; background-color: #064663; font-size: 1rem; transition: background-color 0.2s; border-radius: 10px; } button:hover, button:focus { outline: none; background-color: #ecb365; color: #041c32; } input[type="text"]:focus, input[type="email"]:focus, textarea:focus { color: #041c32; background-color: #ecb365; outline: none; } .envelope { display: flex; justify-content: center; align-items: center; position: relative; left: 0; right: 0; top: 2rem; margin: auto; } .envelope.front { position: absolute; width: 10rem; height: 8rem; border-radius: 0 0 1rem 1rem; overflow: hidden; z-index: 9998; opacity: 0; } .envelope.front::before, .envelope.front::after { position: absolute; display: block; width: 12rem; height: 6rem; background-color: #e9dc9d; transform: rotate(30deg); transform-origin: 0 0; box-shadow: 0 0 1rem #041c32; content: ""; } .envelope.front::after { right: 0; transform: rotate(-30deg); transform-origin: 100% 0; } .envelope.back { top: -1rem; width: 10rem; height: 10rem; overflow: hidden; z-index: 9997; opacity: 0; transform: translateY(-6rem); } .envelope.back::before { display: flex; justify-content: center; align-items: center; width: 12em; height: 10rem; background-color: #e9dc9d; border-radius: 1rem; content: ""; transform: scaleY(0.6) rotate(45deg); } .result-message { position: absolute; color: #ecb365; opacity: 0; transition: all 0.3s 2s; z-index: -9999; } .sent .letter { top: 5rem; animation: scaleLetter 0.5s forwards ease-in, pushLetter 0.3s 0.66s forwards ease-out; z-index: 9998; } .sent .side:nth-of-type(1) { margin-top: 0%; transform-origin: 0 100%; animation: closeLetter 0.5s forwards ease-in; } .sent .side:nth-of-type(1) h1, .sent .side:nth-of-type(1) textarea { animation: fadeOutText 0.5s forwards linear; } .sent button { background-color: #041c32; } .sent .envelope { animation: fadeInEnvelope 0.3s 1.66s forwards ease-out; } .sent .result-message { z-index: 9999; opacity: 1; transition: 0.5s; transform: translateY(12rem); } @keyframes closeLetter { 50% { transform: rotateX(-90deg); } 100% { transform: rotateX(-180deg); background-color: #ecb365; } } @keyframes fadeOutText { 49% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 0; } } @keyframes fadeInEnvelope { 0% { opacity: 0; transform: translateY(8rem); } 90% { opacity: 1; transform: translateY(4rem); } 100% { opacity: 1; transform: translateY(4.5rem); } } @keyframes scaleLetter { 66% { transform: translateY(-8rem) scale(0.5, 0.5); } 75% { transform: translateY(-8rem) scale(0.5, 0.5); } 90% { transform: translateY(-8rem) scale(0.3, 0.5); } 97% { transform: translateY(-8rem) scale(0.33, 0.5); } 100% { transform: translateY(-8rem) scale(0.3, 0.5); } } @keyframes pushLetter { 0% { transform: translateY(-8rem) scale(0.3, 0.5); } 50% { transform: translateY(-8rem) scale(0.3, 0.5); } 90% { transform: translateY(-8.5rem) scale(0.3, 0.5); } 100% { transform: translateY(-8rem) scale(0.3, 0.5); } } @media only screen and (max-width: 1000px) { .letter { position: absolute; width: 30rem; perspective: 60rem; } .side { margin-left: 10%; margin-right: 10%; padding-bottom: 0%; } .side:nth-of-type(1) { margin-top: 5%; } } /* ----------------------------------------- Footer Styles ----------------------------------------- */ footer { position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; width: 100%; background: #ecb365; padding: 1.2em 0em 1em 0em; top: calc(100vh - 67vh); } footer .foolist, footer .foomenu { position: relative; display: flex; justify-content: center; align-items: center; margin: 0%; flex-wrap: wrap; padding: 0%; } footer .foolist li, footer .foomenu li { list-style: none; } footer .foolist li a { font-size: 2em; color: #064663; margin: 0 10px; display: inline-block; transition: 0.5s; } footer .foolist li a:hover { transform: translateY(-15px); color: #4e9f3d; } footer .foomenu li a { font-size: 1em; color: #064663; margin: 0 8px; display: inline-block; transition: 0.5s; opacity: 0.2; text-decoration: none; } footer .foomenu li a:hover { opacity: 1; color: #4e9f3d; } footer .wave { position: absolute; top: -100px; left: 0; width: 100%; height: 100px; background: #041c32 url(images/wave.png); background-size: 1000px 100px; } footer .wave#wave1 { z-index: 1000; opacity: 1; bottom: 0; animation: animateWave1 3s linear infinite; } footer .wave#wave2 { z-index: 999; opacity: 0.5; bottom: 10px; animation: animateWave2 3s linear infinite; } footer .wave#wave3 { z-index: 1000; opacity: 0.25; bottom: 15px; animation: animateWave1 2s linear infinite; } footer .wave#wave4 { z-index: 999; opacity: 0.75; bottom: 20px; animation: animateWave2 2s linear infinite; } @keyframes animateWave1 { 0% { background-position-x: 1000px; } 100% { background-position-x: 0px; } } @keyframes animateWave2 { 0% { background-position-x: 0px; } 100% { background-position-x: 1000px; } } footer p { padding: 0%; color: #064663; text-align: center; margin-top: 5px; font-size: 0.7em; opacity: 0.8; } @media only screen and (max-width: 600px) { footer { top: calc(100vh - 67vh); } footer .foolist li a { font-size: 1.5em; margin: 0 8px; } footer .foomenu li a { font-size: 0.75em; margin: 0 8px; } } /* -------------------------------------------- SCROLLBAR ------------------------------------------- */ .scrollbar-success::-webkit-scrollbar-track { background: linear-gradient(#041c32, #ecb365, #041c32); } .scrollbar-success::-webkit-scrollbar { width: 10px; background-color: #ecb365; } .scrollbar-success::-webkit-scrollbar-thumb { border-radius: 50px; background-color: #00c851; } .scrollbar-success { scrollbar-color: #00c851 #ecb365; } .scrollbar-success::-webkit-scrollbar-track-piece:end { margin-bottom: 80px; } .scrollbar-success::-webkit-scrollbar-track-piece:start { margin-top: 80px; } /* ---------------------------------------------- END --------------------------------------------- */
0.589953
0.062703
*{ padding: 0px; margin: 0px; font: 14px "Microsoft YaHei", "SimSun", '\5b8b\4f53', sans-serif; box-sizing: border-box; } a{ text-decoration: none; color: #333; } li{ list-style-type: none; } .w-1200{ width: 1200px; margin: 0 auto; } /* ๆ ‡้ข˜ๆ  */ .all_nav{ width: 100%; height: 30px; background: #f5f5f5; } .nav_main{height: 30px;} .nav_main p{float: left;} .nav_main p i{ font-size: 14px; margin: 0 4px 0 8px; } .nav_main p a{ display: inline-block; line-height: 30px; } .nav_main>div{ height: 30px; float: right; } .nav_main>div .login{ float: left; margin-right: 22px; } .nav_main>div .login a{ color: #ff5500; line-height: 30px; } .nav_main>div .shop_car{ float: left; } .nav_main>div .shop_car a{ line-height: 30px; } .nav_main>div .shop_car span{ margin-left: 4px; color: #ff5500; font-weight: bold; } /* header */ .all_header{ width: 100%; height: 100px; line-height: 100px; } .header_main{ height: 100px; } .header_main .header_left{ display: flex; align-items: center; height: 100%; float: left; margin-left: 38px; } .header_main .header_left a img{ vertical-align: middle; } .header_right{ float: right; width: 500px; padding-top: 30px; } .header_right form{ height: 44px; line-height: 44px; border: 3px solid #cfb2f6; } .header_right .header_input{ float: left; height: 100%; line-height: 100%; width: 436px; z-index: 2; border: 0; background: none; display: block; padding-left: 10px; border-radius: 2px; } .header_input:focus,.header_btn:focus{ outline: none; } .header_right .header_btn{ width: 58px; height: 38px; line-height: 38px; float: left; background: #cfb2f6; border: 0; cursor: pointer; transition: opacity 0.2s; } .header_right .header_btn i{ color: #fff; font-size: 18px; line-height: 38px; } .header_right .header_btn:hover{ opacity: 0.8; } /* content */ .content{ width: 100%; } .content .content_content{ width: 100%; border-bottom: 1px solid #cfb1f7; } .content .content_nav{ height: 100%; padding-left: 40px; } .content .content_nav a{ margin-right: 75px; display: inline-block; font-size: 14px; line-height: 36px; color: #010101; } .content .content_nav a:nth-child(2){ color: #cfb2f6; } .content .content_nav a:hover{ color: #cfb2f6; } .content .banner_box .banner_img{ height: 380px; background: url('../img/tuan_img_banner.jpg') no-repeat; background-size: cover; cursor: pointer; } /* product_list_box */ .product_list_box{ background: #f8f8f8; padding-bottom: 50px; } .product_list_box .tab_title{ padding: 60px 0 66px 0; text-align: center; font-size: 0px; } .product_list_box .tab_title span{ line-height: 56px; color: #666666; font-size: 20px; display: inline-block; cursor: pointer; margin-right: 70px; } .product_list_box .tab_title span.active{ color: #693ca4; border-bottom: 2px solid #cfb2f6; } .product_list_box .item_box{ width: 100%; padding-bottom: 30px; display: flex; flex-wrap: wrap; justify-content: space-between; } .product_list_box .item_box .item{ width: 290px; height: 420px; float: left; margin-bottom: 20px; text-align: left; background: #fff; } .product_list_box .item_box .item_empty{ width: 290px; height: 0; } .product_list_box .item_box .item .text_box{ padding: 12px; } .product_list_box .item_box .item .text_box .title{ line-height: 24px; font-size: 16px; color: #666666; margin-bottom: 6px; } .product_list_box .item_box .item .text_box .plic{ display: flex; justify-content: space-between; align-items: center; } .product_list_box .item_box .item .text_box .plic .ciur_pic{ font-size: 20px; margin-right: 24px; } .product_list_box .item_box .item .text_box .plic .ori-pic{ color: #666666; } .product_list_box .item_box .item .text_box .plic .discount{ width: 60px; height: 26px; line-height: 26px; font-size: 16px; background: #cfb2f6; display: block; text-align: center; color: #fff; cursor: pointer; } .today{ display: none; } .tomorrow{ display: none; } .d_block{ display: block; } .page_down{ text-align: center; } /* footer_wrap */ .footer_wrap{ background: #877dd2; } .footer_wrap .w-1200{ padding-bottom: 120px; } .footer_wrap .w-1200 .title h1{ font-size: 30px; color: #fffaea; text-align: center; padding: 60px 0; } .footer_wrap .list_box{ display: flex; justify-content: space-between; } .footer_wrap .list_box .item{ width: 320px; height: 500px; background: #fff; font-size: 0px; } .footer_wrap .list_box .item .text{ height: 100px; background: #f9f9f9; } .footer_wrap .list_box .item .text .right_title_number{ float: left; width: 80px; line-height: 100px; font-size: 36px; color: #ffa25d; font-weight: bold; text-align: center; background: #f4f5fa; font-style: italic; } .footer_wrap .list_box .item .text .commod{ padding: 13px; width: 240px; float: left; } .footer_wrap .list_box .item .text .commod p{ font-size: 16px; color: #666666; line-height: 24px; } .footer_wrap .list_box .item .text .commod span{ font-size: 20px; color: #ee0000; }
css/buytoday.css
*{ padding: 0px; margin: 0px; font: 14px "Microsoft YaHei", "SimSun", '\5b8b\4f53', sans-serif; box-sizing: border-box; } a{ text-decoration: none; color: #333; } li{ list-style-type: none; } .w-1200{ width: 1200px; margin: 0 auto; } /* ๆ ‡้ข˜ๆ  */ .all_nav{ width: 100%; height: 30px; background: #f5f5f5; } .nav_main{height: 30px;} .nav_main p{float: left;} .nav_main p i{ font-size: 14px; margin: 0 4px 0 8px; } .nav_main p a{ display: inline-block; line-height: 30px; } .nav_main>div{ height: 30px; float: right; } .nav_main>div .login{ float: left; margin-right: 22px; } .nav_main>div .login a{ color: #ff5500; line-height: 30px; } .nav_main>div .shop_car{ float: left; } .nav_main>div .shop_car a{ line-height: 30px; } .nav_main>div .shop_car span{ margin-left: 4px; color: #ff5500; font-weight: bold; } /* header */ .all_header{ width: 100%; height: 100px; line-height: 100px; } .header_main{ height: 100px; } .header_main .header_left{ display: flex; align-items: center; height: 100%; float: left; margin-left: 38px; } .header_main .header_left a img{ vertical-align: middle; } .header_right{ float: right; width: 500px; padding-top: 30px; } .header_right form{ height: 44px; line-height: 44px; border: 3px solid #cfb2f6; } .header_right .header_input{ float: left; height: 100%; line-height: 100%; width: 436px; z-index: 2; border: 0; background: none; display: block; padding-left: 10px; border-radius: 2px; } .header_input:focus,.header_btn:focus{ outline: none; } .header_right .header_btn{ width: 58px; height: 38px; line-height: 38px; float: left; background: #cfb2f6; border: 0; cursor: pointer; transition: opacity 0.2s; } .header_right .header_btn i{ color: #fff; font-size: 18px; line-height: 38px; } .header_right .header_btn:hover{ opacity: 0.8; } /* content */ .content{ width: 100%; } .content .content_content{ width: 100%; border-bottom: 1px solid #cfb1f7; } .content .content_nav{ height: 100%; padding-left: 40px; } .content .content_nav a{ margin-right: 75px; display: inline-block; font-size: 14px; line-height: 36px; color: #010101; } .content .content_nav a:nth-child(2){ color: #cfb2f6; } .content .content_nav a:hover{ color: #cfb2f6; } .content .banner_box .banner_img{ height: 380px; background: url('../img/tuan_img_banner.jpg') no-repeat; background-size: cover; cursor: pointer; } /* product_list_box */ .product_list_box{ background: #f8f8f8; padding-bottom: 50px; } .product_list_box .tab_title{ padding: 60px 0 66px 0; text-align: center; font-size: 0px; } .product_list_box .tab_title span{ line-height: 56px; color: #666666; font-size: 20px; display: inline-block; cursor: pointer; margin-right: 70px; } .product_list_box .tab_title span.active{ color: #693ca4; border-bottom: 2px solid #cfb2f6; } .product_list_box .item_box{ width: 100%; padding-bottom: 30px; display: flex; flex-wrap: wrap; justify-content: space-between; } .product_list_box .item_box .item{ width: 290px; height: 420px; float: left; margin-bottom: 20px; text-align: left; background: #fff; } .product_list_box .item_box .item_empty{ width: 290px; height: 0; } .product_list_box .item_box .item .text_box{ padding: 12px; } .product_list_box .item_box .item .text_box .title{ line-height: 24px; font-size: 16px; color: #666666; margin-bottom: 6px; } .product_list_box .item_box .item .text_box .plic{ display: flex; justify-content: space-between; align-items: center; } .product_list_box .item_box .item .text_box .plic .ciur_pic{ font-size: 20px; margin-right: 24px; } .product_list_box .item_box .item .text_box .plic .ori-pic{ color: #666666; } .product_list_box .item_box .item .text_box .plic .discount{ width: 60px; height: 26px; line-height: 26px; font-size: 16px; background: #cfb2f6; display: block; text-align: center; color: #fff; cursor: pointer; } .today{ display: none; } .tomorrow{ display: none; } .d_block{ display: block; } .page_down{ text-align: center; } /* footer_wrap */ .footer_wrap{ background: #877dd2; } .footer_wrap .w-1200{ padding-bottom: 120px; } .footer_wrap .w-1200 .title h1{ font-size: 30px; color: #fffaea; text-align: center; padding: 60px 0; } .footer_wrap .list_box{ display: flex; justify-content: space-between; } .footer_wrap .list_box .item{ width: 320px; height: 500px; background: #fff; font-size: 0px; } .footer_wrap .list_box .item .text{ height: 100px; background: #f9f9f9; } .footer_wrap .list_box .item .text .right_title_number{ float: left; width: 80px; line-height: 100px; font-size: 36px; color: #ffa25d; font-weight: bold; text-align: center; background: #f4f5fa; font-style: italic; } .footer_wrap .list_box .item .text .commod{ padding: 13px; width: 240px; float: left; } .footer_wrap .list_box .item .text .commod p{ font-size: 16px; color: #666666; line-height: 24px; } .footer_wrap .list_box .item .text .commod span{ font-size: 20px; color: #ee0000; }
0.189259
0.045184
*{ box-sizing: border-box; margin:0px; padding:0px; } .container { display: block; position: relative; padding-left: 35px; margin-bottom: 12px; cursor: pointer; font-size: 22px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } /* Hide the browser's default radio button */ .container input { position: absolute; opacity: 0; } /* Create a custom radio button */ .checkmark { position: absolute; top: 0; left: 0; height: 25px; width: 25px; background-color: #eee; border-radius: 50%; } /* On mouse-over, add a grey background color */ .container:hover input ~ .checkmark { background-color: #ccc; } /* When the radio button is checked, add a blue background */ .container input:checked ~ .checkmark { background-color: #2196F3; } /* Create the indicator (the dot/circle - hidden when not checked) */ .checkmark:after { content: ""; position: absolute; display: none; } /* Show the indicator (dot/circle) when checked */ .container input:checked ~ .checkmark:after { display: block; } /* Style the indicator (dot/circle) */ .container .checkmark:after { top: 9px; left: 9px; width: 8px; height: 8px; border-radius: 50%; background: white; } body { background:url(../3.jpg); font-family: 'Titillium Web', sans-serif; background-size:cover; } a { text-decoration: none; color: #000; transition: .5s ease; } a:hover { color: #000; } .form { background:rgba(255,255,255,0.6); padding: 40px; max-width: 600px; margin: 100px auto; border-radius: 4px; box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3); transition: .5s ease; } .form:hover { box-shadow: 0px 0px 40px 16px rgba(18,18,18,1.00); } .tab-group { list-style: none; padding: 0; margin: 0 0 40px 0; } .tab-group:after { content: ""; display: table; clear: both; } .tab-group li a { display: block; text-decoration: none; padding: 15px; background: #000; color: #ffffff; font-size: 20px; float: left; width: 50%; text-align: center; cursor: pointer; transition: .5s ease; } .tab-group li a:hover { background: #fff; color: #000; } .tab-group .active a { background: #fda1a3; color: #ffffff; } .tab-content > div:last-child { display: none; } h1 { text-align: center; color: #000000; font-weight: 300; margin: 0 0 40px; } label { position: absolute; transform: translateY(6px); left: 13px; color: rgba(255,255,255,0.7); transition: all 0.25s ease; pointer-events: none; font-size: 22px; } label .req { margin: 2px; color: red; } label.active { transform: translateY(50px); left: 2px; font-size: 14px; } label.active .req { opacity: 0; } label.highlight { color: #000; margin-top:-10px; } input { font-size: 22px; display: block; width: 100%; height: 100%; padding: 5px 10px; background: none; background-image: none; border: 1px solid #fff; color: #000; border-radius: 0; transition: border-color .25s ease, box-shadow .25s ease; } input:focus{ outline: 0; border-color: #000; } .field-wrap { position: relative; margin-bottom: 40px; } .top-row:after { content: ""; display: table; clear: both; } .top-row > div { float: left; width: 48%; margin-right: 4%; } .top-row > div:last-child { margin: 0; } .button { border: 0; outline: none; border-radius: 0; padding: 15px 0; font-size: 2rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; background: #fda1a3; color: #ffffff; transition:0.5s ease; } .button:hover, .button:focus { background: #fff; } .button-block { display: block; width: 100%; } .forgot { margin-top: -20px; text-align: right; margin-bottom:10px; }
signup/css/style.css
*{ box-sizing: border-box; margin:0px; padding:0px; } .container { display: block; position: relative; padding-left: 35px; margin-bottom: 12px; cursor: pointer; font-size: 22px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } /* Hide the browser's default radio button */ .container input { position: absolute; opacity: 0; } /* Create a custom radio button */ .checkmark { position: absolute; top: 0; left: 0; height: 25px; width: 25px; background-color: #eee; border-radius: 50%; } /* On mouse-over, add a grey background color */ .container:hover input ~ .checkmark { background-color: #ccc; } /* When the radio button is checked, add a blue background */ .container input:checked ~ .checkmark { background-color: #2196F3; } /* Create the indicator (the dot/circle - hidden when not checked) */ .checkmark:after { content: ""; position: absolute; display: none; } /* Show the indicator (dot/circle) when checked */ .container input:checked ~ .checkmark:after { display: block; } /* Style the indicator (dot/circle) */ .container .checkmark:after { top: 9px; left: 9px; width: 8px; height: 8px; border-radius: 50%; background: white; } body { background:url(../3.jpg); font-family: 'Titillium Web', sans-serif; background-size:cover; } a { text-decoration: none; color: #000; transition: .5s ease; } a:hover { color: #000; } .form { background:rgba(255,255,255,0.6); padding: 40px; max-width: 600px; margin: 100px auto; border-radius: 4px; box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3); transition: .5s ease; } .form:hover { box-shadow: 0px 0px 40px 16px rgba(18,18,18,1.00); } .tab-group { list-style: none; padding: 0; margin: 0 0 40px 0; } .tab-group:after { content: ""; display: table; clear: both; } .tab-group li a { display: block; text-decoration: none; padding: 15px; background: #000; color: #ffffff; font-size: 20px; float: left; width: 50%; text-align: center; cursor: pointer; transition: .5s ease; } .tab-group li a:hover { background: #fff; color: #000; } .tab-group .active a { background: #fda1a3; color: #ffffff; } .tab-content > div:last-child { display: none; } h1 { text-align: center; color: #000000; font-weight: 300; margin: 0 0 40px; } label { position: absolute; transform: translateY(6px); left: 13px; color: rgba(255,255,255,0.7); transition: all 0.25s ease; pointer-events: none; font-size: 22px; } label .req { margin: 2px; color: red; } label.active { transform: translateY(50px); left: 2px; font-size: 14px; } label.active .req { opacity: 0; } label.highlight { color: #000; margin-top:-10px; } input { font-size: 22px; display: block; width: 100%; height: 100%; padding: 5px 10px; background: none; background-image: none; border: 1px solid #fff; color: #000; border-radius: 0; transition: border-color .25s ease, box-shadow .25s ease; } input:focus{ outline: 0; border-color: #000; } .field-wrap { position: relative; margin-bottom: 40px; } .top-row:after { content: ""; display: table; clear: both; } .top-row > div { float: left; width: 48%; margin-right: 4%; } .top-row > div:last-child { margin: 0; } .button { border: 0; outline: none; border-radius: 0; padding: 15px 0; font-size: 2rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; background: #fda1a3; color: #ffffff; transition:0.5s ease; } .button:hover, .button:focus { background: #fff; } .button-block { display: block; width: 100%; } .forgot { margin-top: -20px; text-align: right; margin-bottom:10px; }
0.317426
0.04725
************************/ body, html, #home { height: 100%; overflow-x: hidden; } body { background: url('../img/capa.png'), url('../img/ruido.png'), linear-gradient(50deg,#ff4169, #7c26f8); background-attachment: fixed; } /* Barra de navegaรงรฃo ************************/ nav.navbar-transparent { padding: 10px 0px; background: rgba(0, 0, 0, 0.8); } .navbar-light .navbar-nav .nav-link { color: white; } .navbar-light .navbar-nav .nav-link:hover { color: #1db954; } .nav-item { margin-right: 15px; } header ul li a { font-weight: 700; } .navbar-light .navbar-toggler { color: white; border-color: rgba(255, 255, 255, 0.8); } .divisor { width: 1px; background: white; margin: 12px 15px; } /* Capa */ .capa { text-align: center; } .btn-custom { width: 300px; color: white; border-radius: 500px; -webkit-border-radius: 500px; -moz-border-radius: 500px; -ms-border-radius: 500px; -o-border-radius: 500px; text-transform: uppercase; transition: background 0.4s, color 0.4s; -webkit-transition: background 0.4s, color 0.4s; -moz-transition: background 0.4s, color 0.4s; -ms-transition: background 0.4s, color 0.4s; -o-transition: background 0.4s, color 0.4s; margin-top: 20px; margin-right: 10px; padding: 10px 20px; } .btn-black { background: #000; } .btn-black:hover { background: rgb(77, 77, 77); color: #ffffff; } .btn-white { border: 2px solid white; } .btn-white:hover { background: #ffffff; color: #000; } /* Content */ .box { padding-top: 20px; padding-bottom: 20px; } #services { background: white; } #services h2, h3 { color: #7c25f8; } #resources p { color: white; font-weight: 700; } #resources h3 { color: #9bf0e1; } #resources h2{ color: white; } .albums { padding: 10px 0; } .rotation { transform: rotate(30deg); -webkit-transform: rotate(30deg); -moz-transform: rotate(30deg); -ms-transform: rotate(30deg); -o-transform: rotate(30deg); padding-left: 80px; } /* Footer */ footer { background: #000; padding: 50px 0 20px 0; position: relative; } footer h4 { font-size: 12px; color: #919496; line-height: 16.8px; vertical-align: baseline; letter-spacing: 0.96px; font-weight: 900; text-transform: uppercase; text-decoration: rgb(145, 148, 150); text-align: start; } footer .navbar-nav a { color: white; line-height: 24px; font-size: 16px; font-weight: 600; } footer .navbar-nav a:hover { color: #1DB954; text-decoration: none; } footer ul { list-style: none; } footer ul li{ float: right; padding-right: 10px; } /* FONTS */ #home h1 { font-family: Circular, Helvetica, Arial, sans-serif, IosFix; line-height: 73.6px; vertical-align: baseline; letter-spacing: -2.56px; word-spacing: 0px; font-weight: 900; color: white; text-align: center; } h2 { font-size: 3em; font-weight: 700; letter-spacing: -0.04em; } h3 { font-size: 2em; font-weight: 700; letter-spacing: -0.04em; } .borda { border: 1px solid red } .title { text-align: center; } .title::after { content: ''; display: block; height: 1px; width: 80%; background-color: currentColor; margin: 20px auto; } /* Dispositivos extra small (telefones em modo retrato, com menos de 576px) */ @media (max-width: 575.98px) { h1 { font-size:2.7em; } .btn-purple { margin-top: 0; } } /* Dispositivos small (telefones em modo paisagem, com 576px ou mais)*/ @media (min-width: 576px) and (max-width: 767.98px) { h1 { font-size: 3em; } } /* Dispositivos mรฉdios (tablets com 768px ou mais) */ @media (min-width: 768px) and (max-width: 991.98px) { h1 { font-size: 4em; } #resources .row .col-md-8 .row { margin-top: 125px; } footer .social { -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; justify-content: start; } footer .social img { width: 30px; } } /* Dispositivos large (desktops com 992px ou mais) */ @media (min-width: 992px) and (max-width: 1199.98px) { h1 { font-size: 5em; } } /* Dispositivos extra large (desktops grandes com 1200px ou mais) */ @media (min-width: 1200px) { h1 { font-size: 6em; } } /* Breakpoints - medium devices */ @media (max-width: 767.98px) { /* header */ header .navbar-brand img { width: 100px; margin-left: 1rem; } nav.navbar-mobile { padding: 6px; background: #000; } header button.navbar-toggler { align-self: center; margin-right: 1rem; } header button.navbar-toggler:hover { outline: none; } header button.btn{ margin-bottom: 5px; } header ul li a { margin-left: 1.5rem; } .navbar-light .navbar-toggler { color: white; border: none; } .navbar-light .navbar-nav .nav-link:hover { color: #1db954; } /* foooter */ footer .col-md-2 { margin-top: 10px; } footer .col-md-2 img { width: 100px; padding-bottom: 15px; } footer .social img { margin-top: 15px; width: 30px; } /* Carousel */ .carousel-inner .carousel-item a{ font-size: 16px; width: 60%; } }
css/index.css
************************/ body, html, #home { height: 100%; overflow-x: hidden; } body { background: url('../img/capa.png'), url('../img/ruido.png'), linear-gradient(50deg,#ff4169, #7c26f8); background-attachment: fixed; } /* Barra de navegaรงรฃo ************************/ nav.navbar-transparent { padding: 10px 0px; background: rgba(0, 0, 0, 0.8); } .navbar-light .navbar-nav .nav-link { color: white; } .navbar-light .navbar-nav .nav-link:hover { color: #1db954; } .nav-item { margin-right: 15px; } header ul li a { font-weight: 700; } .navbar-light .navbar-toggler { color: white; border-color: rgba(255, 255, 255, 0.8); } .divisor { width: 1px; background: white; margin: 12px 15px; } /* Capa */ .capa { text-align: center; } .btn-custom { width: 300px; color: white; border-radius: 500px; -webkit-border-radius: 500px; -moz-border-radius: 500px; -ms-border-radius: 500px; -o-border-radius: 500px; text-transform: uppercase; transition: background 0.4s, color 0.4s; -webkit-transition: background 0.4s, color 0.4s; -moz-transition: background 0.4s, color 0.4s; -ms-transition: background 0.4s, color 0.4s; -o-transition: background 0.4s, color 0.4s; margin-top: 20px; margin-right: 10px; padding: 10px 20px; } .btn-black { background: #000; } .btn-black:hover { background: rgb(77, 77, 77); color: #ffffff; } .btn-white { border: 2px solid white; } .btn-white:hover { background: #ffffff; color: #000; } /* Content */ .box { padding-top: 20px; padding-bottom: 20px; } #services { background: white; } #services h2, h3 { color: #7c25f8; } #resources p { color: white; font-weight: 700; } #resources h3 { color: #9bf0e1; } #resources h2{ color: white; } .albums { padding: 10px 0; } .rotation { transform: rotate(30deg); -webkit-transform: rotate(30deg); -moz-transform: rotate(30deg); -ms-transform: rotate(30deg); -o-transform: rotate(30deg); padding-left: 80px; } /* Footer */ footer { background: #000; padding: 50px 0 20px 0; position: relative; } footer h4 { font-size: 12px; color: #919496; line-height: 16.8px; vertical-align: baseline; letter-spacing: 0.96px; font-weight: 900; text-transform: uppercase; text-decoration: rgb(145, 148, 150); text-align: start; } footer .navbar-nav a { color: white; line-height: 24px; font-size: 16px; font-weight: 600; } footer .navbar-nav a:hover { color: #1DB954; text-decoration: none; } footer ul { list-style: none; } footer ul li{ float: right; padding-right: 10px; } /* FONTS */ #home h1 { font-family: Circular, Helvetica, Arial, sans-serif, IosFix; line-height: 73.6px; vertical-align: baseline; letter-spacing: -2.56px; word-spacing: 0px; font-weight: 900; color: white; text-align: center; } h2 { font-size: 3em; font-weight: 700; letter-spacing: -0.04em; } h3 { font-size: 2em; font-weight: 700; letter-spacing: -0.04em; } .borda { border: 1px solid red } .title { text-align: center; } .title::after { content: ''; display: block; height: 1px; width: 80%; background-color: currentColor; margin: 20px auto; } /* Dispositivos extra small (telefones em modo retrato, com menos de 576px) */ @media (max-width: 575.98px) { h1 { font-size:2.7em; } .btn-purple { margin-top: 0; } } /* Dispositivos small (telefones em modo paisagem, com 576px ou mais)*/ @media (min-width: 576px) and (max-width: 767.98px) { h1 { font-size: 3em; } } /* Dispositivos mรฉdios (tablets com 768px ou mais) */ @media (min-width: 768px) and (max-width: 991.98px) { h1 { font-size: 4em; } #resources .row .col-md-8 .row { margin-top: 125px; } footer .social { -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; justify-content: start; } footer .social img { width: 30px; } } /* Dispositivos large (desktops com 992px ou mais) */ @media (min-width: 992px) and (max-width: 1199.98px) { h1 { font-size: 5em; } } /* Dispositivos extra large (desktops grandes com 1200px ou mais) */ @media (min-width: 1200px) { h1 { font-size: 6em; } } /* Breakpoints - medium devices */ @media (max-width: 767.98px) { /* header */ header .navbar-brand img { width: 100px; margin-left: 1rem; } nav.navbar-mobile { padding: 6px; background: #000; } header button.navbar-toggler { align-self: center; margin-right: 1rem; } header button.navbar-toggler:hover { outline: none; } header button.btn{ margin-bottom: 5px; } header ul li a { margin-left: 1.5rem; } .navbar-light .navbar-toggler { color: white; border: none; } .navbar-light .navbar-nav .nav-link:hover { color: #1db954; } /* foooter */ footer .col-md-2 { margin-top: 10px; } footer .col-md-2 img { width: 100px; padding-bottom: 15px; } footer .social img { margin-top: 15px; width: 30px; } /* Carousel */ .carousel-inner .carousel-item a{ font-size: 16px; width: 60%; } }
0.221435
0.104569
.alert-debug { color: black; background-color: white; border-color: #d6e9c6; } .alert-error { color: #b94a48; background-color: #f2dede; border-color: #eed3d7; 600 } /* ###### GENERAL */ @font-face { font-family: "Europa"; src: url("../fonts/font-face/23c0fcab84d99da0de762de7e220a6e1.eot"); src: url("../fonts/font-face23c0fcab84d99da0de762de7e220a6e1.eot?#iefix") format("embedded-opentype"), url("../fonts/font-face/23c0fcab84d99da0de762de7e220a6e1.woff2") format("woff2"), url("../fonts/font-face/23c0fcab84d99da0de762de7e220a6e1.woff") format("woff"), url("../fonts/font-face/23c0fcab84d99da0de762de7e220a6e1.ttf") format("truetype"), url("../fonts/font-face/23c0fcab84d99da0de762de7e220a6e1.svg#Europa") format("svg"); } html, body { font-family: 'Europa', 'Helvetica', 'sans-serif'; /* font-size: 0.9rem */ } .btn { border-radius: 0px; } a { color: inherit } a:hover { color: inherit; text-decoration: none; } .link:hover { font-weight: 600; } /* ###### HEADER */ #header a { padding: 10px; padding-left: 30px; padding-right: 30px; } /* ####### GET IN TOUCH OVERLAY */ #get-in-touch-overlay { z-index: 9999; position: fixed; right: 20px; bottom: 20px; width: 120px; color: #000; font-weight: 600; background-color: #a8d0e6; border: 1px solid #f76c6c; -webkit-box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); -moz-box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); } #get-in-touch-overlay:hover { cursor: pointer; background-color: rgba(210, 229, 240, 1); } /* ###### HOMEPAGE */ .landingpage-panel { padding: 20px; padding-top: 75px; padding-bottom: 75px; } /* Footer */ #footer { background-color: #f76c6c; height: 20px; width: 100% } /* Banner Section */ #banner { padding-top: 130px; padding-bottom: 100px; text-align: center; background: rgb(226, 239, 245); background: linear-gradient(90deg, rgba(226, 239, 245, 1) 0%, rgba(210, 229, 240, 1) 35%, rgba(168, 208, 230, 1) 100%); } #banner .btn { padding-left: 75px; padding-right: 75px; max-width: 400px; margin-top: 20px; margin-bottom: 20px; color: #fff; font-weight: 600; background-color: #f76c6c; border: 1px solid #a8d0e6; -webkit-box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); -moz-box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); } #banner .btn:hover { background-color: #f38282; } /* About Me Section */ #about-me { text-align: center; width: 100%; margin: auto; background: rgb(249, 156, 156); background: linear-gradient(90deg, rgba(249, 156, 156, 1) 0%, rgba(246, 125, 125, 1) 35%, rgba(247, 108, 108, 1) 100%); } #about-me .row { padding-top: 20px; padding-bottom: 20px; } #aboutme_text { display: inline-block; vertical-align: top; padding: 10px; text-align: right; } #aboutme_text ul { list-style: none; padding-inline-start: 0px; } #about-me .btn { width: 80%; max-width: 250px; margin: 5px; font-weight: 600; color: #000; background-color: white; border: 1px solid #a8d0e6; -webkit-box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); -moz-box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); } #about-me .btn:hover { background-color: #a8d0e6; } /* Portfolio items */ #portfolio-items { background: #f8e9a1; } #portfolio-items .card { background-color: white; -webkit-box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); -moz-box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); display: inline-flex; margin-top: 10px; margin-bottom: 10px; } #portfolio-items .btn { width: 80%; max-width: 200px; margin-top: 5px; margin-bottom: 5px; color: rgba(0, 0, 0, 0.863); font-weight: 600; background-color: #a8d0e6; border: 1px solid #fff; -webkit-box-shadow: 3px 5px 3px 0px rgba(0, 0, 0, 0.11); -moz-box-shadow: 3px 5px 3px 0px rgba(0, 0, 0, 0.11); box-shadow: 3px 5px 3px 0px rgba(0, 0, 0, 0.11); } #portfolio-items .btn:hover { background-color: #93cae7; } #portfolio-items .badge-pill { /* font-size: 12pt; */ } @media screen and (max-width: 600px) { #portfolio-items .badge-pill { font-size: 10pt; } } #portfolio-items .badge { padding: .15em .4em; } @media (min-width: 576px) { .card-columns { column-count: 2; } } @media (max-width: 576px) { .card-columns { column-count: 1; } }
findram/static/css/project.css
.alert-debug { color: black; background-color: white; border-color: #d6e9c6; } .alert-error { color: #b94a48; background-color: #f2dede; border-color: #eed3d7; 600 } /* ###### GENERAL */ @font-face { font-family: "Europa"; src: url("../fonts/font-face/23c0fcab84d99da0de762de7e220a6e1.eot"); src: url("../fonts/font-face23c0fcab84d99da0de762de7e220a6e1.eot?#iefix") format("embedded-opentype"), url("../fonts/font-face/23c0fcab84d99da0de762de7e220a6e1.woff2") format("woff2"), url("../fonts/font-face/23c0fcab84d99da0de762de7e220a6e1.woff") format("woff"), url("../fonts/font-face/23c0fcab84d99da0de762de7e220a6e1.ttf") format("truetype"), url("../fonts/font-face/23c0fcab84d99da0de762de7e220a6e1.svg#Europa") format("svg"); } html, body { font-family: 'Europa', 'Helvetica', 'sans-serif'; /* font-size: 0.9rem */ } .btn { border-radius: 0px; } a { color: inherit } a:hover { color: inherit; text-decoration: none; } .link:hover { font-weight: 600; } /* ###### HEADER */ #header a { padding: 10px; padding-left: 30px; padding-right: 30px; } /* ####### GET IN TOUCH OVERLAY */ #get-in-touch-overlay { z-index: 9999; position: fixed; right: 20px; bottom: 20px; width: 120px; color: #000; font-weight: 600; background-color: #a8d0e6; border: 1px solid #f76c6c; -webkit-box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); -moz-box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); } #get-in-touch-overlay:hover { cursor: pointer; background-color: rgba(210, 229, 240, 1); } /* ###### HOMEPAGE */ .landingpage-panel { padding: 20px; padding-top: 75px; padding-bottom: 75px; } /* Footer */ #footer { background-color: #f76c6c; height: 20px; width: 100% } /* Banner Section */ #banner { padding-top: 130px; padding-bottom: 100px; text-align: center; background: rgb(226, 239, 245); background: linear-gradient(90deg, rgba(226, 239, 245, 1) 0%, rgba(210, 229, 240, 1) 35%, rgba(168, 208, 230, 1) 100%); } #banner .btn { padding-left: 75px; padding-right: 75px; max-width: 400px; margin-top: 20px; margin-bottom: 20px; color: #fff; font-weight: 600; background-color: #f76c6c; border: 1px solid #a8d0e6; -webkit-box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); -moz-box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); } #banner .btn:hover { background-color: #f38282; } /* About Me Section */ #about-me { text-align: center; width: 100%; margin: auto; background: rgb(249, 156, 156); background: linear-gradient(90deg, rgba(249, 156, 156, 1) 0%, rgba(246, 125, 125, 1) 35%, rgba(247, 108, 108, 1) 100%); } #about-me .row { padding-top: 20px; padding-bottom: 20px; } #aboutme_text { display: inline-block; vertical-align: top; padding: 10px; text-align: right; } #aboutme_text ul { list-style: none; padding-inline-start: 0px; } #about-me .btn { width: 80%; max-width: 250px; margin: 5px; font-weight: 600; color: #000; background-color: white; border: 1px solid #a8d0e6; -webkit-box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); -moz-box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); } #about-me .btn:hover { background-color: #a8d0e6; } /* Portfolio items */ #portfolio-items { background: #f8e9a1; } #portfolio-items .card { background-color: white; -webkit-box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); -moz-box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); box-shadow: 6px 9px 5px 0px rgba(0, 0, 0, 0.11); display: inline-flex; margin-top: 10px; margin-bottom: 10px; } #portfolio-items .btn { width: 80%; max-width: 200px; margin-top: 5px; margin-bottom: 5px; color: rgba(0, 0, 0, 0.863); font-weight: 600; background-color: #a8d0e6; border: 1px solid #fff; -webkit-box-shadow: 3px 5px 3px 0px rgba(0, 0, 0, 0.11); -moz-box-shadow: 3px 5px 3px 0px rgba(0, 0, 0, 0.11); box-shadow: 3px 5px 3px 0px rgba(0, 0, 0, 0.11); } #portfolio-items .btn:hover { background-color: #93cae7; } #portfolio-items .badge-pill { /* font-size: 12pt; */ } @media screen and (max-width: 600px) { #portfolio-items .badge-pill { font-size: 10pt; } } #portfolio-items .badge { padding: .15em .4em; } @media (min-width: 576px) { .card-columns { column-count: 2; } } @media (max-width: 576px) { .card-columns { column-count: 1; } }
0.22627
0.092483
.markdown { line-height: 22px } .markdown img { max-width: 100%; max-height: 100% } .markdown a { color: #4080d0; text-decoration: none } .markdown a:focus, .markdown input:focus, .markdown select:focus, .markdown textarea:focus { outline: 1px solid -webkit-focus-ring-color; outline-offset: -1px } .markdown hr { border: 0; height: 2px; border-bottom: 2px solid } .markdown h1 { padding-bottom: .3em; line-height: 1.2; border-bottom-width: 1px; border-bottom-style: solid } .markdown h1, .markdown h2, .markdown h3 { font-weight: 400 } .markdown a:hover { color: #4080d0; text-decoration: underline } .markdown table { border-collapse: collapse } .markdown table>thead>tr>th { text-align: left; border-bottom: 1px solid } .markdown table>tbody>tr>td, .markdown table>tbody>tr>th, .markdown table>thead>tr>td, .markdown table>thead>tr>th { padding: 5px 10px } .markdown table>tbody>tr+tr>td { border-top: 1px solid } .markdown blockquote { margin: 0 7px 0 5px; padding: 0 16px 0 10px; border-left: 5px solid } .markdown code { font-family: Menlo, Monaco, Consolas, Droid Sans Mono, Courier New, monospace, Droid Sans Fallback; font-size: 14px; line-height: 19px } .markdown .mac code { font-size: 12px; line-height: 18px } .markdown code>div { padding: 16px; border-radius: 3px; overflow: auto } .vscode-light .markdown { color: #1e1e1e } .vscode-dark .markdown { color: #ddd } .vscode-high-contrast .markdown { color: #fff } .vscode-light .markdown code { color: #a31515 } .vscode-dark .markdown code { color: #d7ba7d } .vscode-light .markdown code>div { background-color: hsla(0, 0%, 86%, .4) } .vscode-dark .markdown code>div { background-color: hsla(0, 0%, 4%, .4) } .vscode-high-contrast .markdown code>div { background-color: #000 } .vscode-high-contrast .markdown h1 { border-color: #000 } .vscode-light .markdown table>thead>tr>th { border-color: rgba(0, 0, 0, .69) } .vscode-dark .markdown table>thead>tr>th { border-color: hsla(0, 0%, 100%, .69) } .vscode-light .markdown h1, .vscode-light .markdown hr, .vscode-light .markdown table>tbody>tr+tr>td { border-color: rgba(0, 0, 0, .18) } .vscode-dark .markdown h1, .vscode-dark .markdown hr, .vscode-dark .markdown table>tbody>tr+tr>td { border-color: hsla(0, 0%, 100%, .18) } .vscode-dark .markdown blockquote, .vscode-light .markdown blockquote { background: hsla(0, 0%, 50%, .1); border-color: rgba(0, 122, 204, .5) } .vscode-high-contrast .markdown blockquote { background: transparent; border-color: #fff }
src/catalog/markdown.css
.markdown { line-height: 22px } .markdown img { max-width: 100%; max-height: 100% } .markdown a { color: #4080d0; text-decoration: none } .markdown a:focus, .markdown input:focus, .markdown select:focus, .markdown textarea:focus { outline: 1px solid -webkit-focus-ring-color; outline-offset: -1px } .markdown hr { border: 0; height: 2px; border-bottom: 2px solid } .markdown h1 { padding-bottom: .3em; line-height: 1.2; border-bottom-width: 1px; border-bottom-style: solid } .markdown h1, .markdown h2, .markdown h3 { font-weight: 400 } .markdown a:hover { color: #4080d0; text-decoration: underline } .markdown table { border-collapse: collapse } .markdown table>thead>tr>th { text-align: left; border-bottom: 1px solid } .markdown table>tbody>tr>td, .markdown table>tbody>tr>th, .markdown table>thead>tr>td, .markdown table>thead>tr>th { padding: 5px 10px } .markdown table>tbody>tr+tr>td { border-top: 1px solid } .markdown blockquote { margin: 0 7px 0 5px; padding: 0 16px 0 10px; border-left: 5px solid } .markdown code { font-family: Menlo, Monaco, Consolas, Droid Sans Mono, Courier New, monospace, Droid Sans Fallback; font-size: 14px; line-height: 19px } .markdown .mac code { font-size: 12px; line-height: 18px } .markdown code>div { padding: 16px; border-radius: 3px; overflow: auto } .vscode-light .markdown { color: #1e1e1e } .vscode-dark .markdown { color: #ddd } .vscode-high-contrast .markdown { color: #fff } .vscode-light .markdown code { color: #a31515 } .vscode-dark .markdown code { color: #d7ba7d } .vscode-light .markdown code>div { background-color: hsla(0, 0%, 86%, .4) } .vscode-dark .markdown code>div { background-color: hsla(0, 0%, 4%, .4) } .vscode-high-contrast .markdown code>div { background-color: #000 } .vscode-high-contrast .markdown h1 { border-color: #000 } .vscode-light .markdown table>thead>tr>th { border-color: rgba(0, 0, 0, .69) } .vscode-dark .markdown table>thead>tr>th { border-color: hsla(0, 0%, 100%, .69) } .vscode-light .markdown h1, .vscode-light .markdown hr, .vscode-light .markdown table>tbody>tr+tr>td { border-color: rgba(0, 0, 0, .18) } .vscode-dark .markdown h1, .vscode-dark .markdown hr, .vscode-dark .markdown table>tbody>tr+tr>td { border-color: hsla(0, 0%, 100%, .18) } .vscode-dark .markdown blockquote, .vscode-light .markdown blockquote { background: hsla(0, 0%, 50%, .1); border-color: rgba(0, 122, 204, .5) } .vscode-high-contrast .markdown blockquote { background: transparent; border-color: #fff }
0.612426
0.283578
body { margin: auto; max-width: 1000px; background: black; font-family: 'Josefin Sans', sans-serif; font-size: 22px; box-sizing: border-box; display: flex; } nav { width: 100%; max-width: 1000px; box-sizing: border-box; display: flex; justify-content: space-around; padding: 20px; background: #222; position: fixed; top: 0px; z-index: 5; } nav a { text-decoration: none; color: white; } .container { box-sizing: border-box; background: white; margin-top: 45px; display: flex; flex-wrap: wrap; line-height: 1.5; } main { box-sizing: border-box; max-width: 1000px; width: 100%; display: flex; flex-wrap: wrap; justify-content: space-between; padding-top: 50px; align-items: flex-start; } header { box-sizing: border-box; background-size: cover; background: no-repeat; background-position: -250px; height: 300px; margin-top: -35px; position: relative; min-width: 380px; flex: 2 1 100px; } h1 { position: absolute; left: 30px; bottom: 10px; line-height: 1; font-family: 'Abril Fatface', cursive; font-weight: 200; font-size: 60px; letter-spacing: 10px; margin: 0px; width: 100%; min-width: 300px; } h1::first-line { font-size: 28px; } blockquote { display: flex; flex-direction: column; box-sizing: border-box; /* width: 40%; max-width: 40%; min-width: 300px; */ background: #444; color: white; font-family: 'Abril Fatface', cursive; font-size: 50px; padding: 50px; position: relative; margin-left: 0px; flex: 2 1 200px; } blockquote::before { content: 'โ€'; font-size: 200px; position: absolute; left: 0px; top: -70px; } section { box-sizing: border-box; padding: 0px 40px 0px 20px; display: flex; flex-direction: column; /* max-width: 0%; */ /* min-width: 400px; */ flex: 1 1 500px; } ul { list-style-type: square; } h2 { text-transform: uppercase; font-weight: bold; } h3 { font-weight: bold; } .title { margin-top: 0px; font-size: 15px; font-family: 'Merriweather', serif; }
dist/style.css
body { margin: auto; max-width: 1000px; background: black; font-family: 'Josefin Sans', sans-serif; font-size: 22px; box-sizing: border-box; display: flex; } nav { width: 100%; max-width: 1000px; box-sizing: border-box; display: flex; justify-content: space-around; padding: 20px; background: #222; position: fixed; top: 0px; z-index: 5; } nav a { text-decoration: none; color: white; } .container { box-sizing: border-box; background: white; margin-top: 45px; display: flex; flex-wrap: wrap; line-height: 1.5; } main { box-sizing: border-box; max-width: 1000px; width: 100%; display: flex; flex-wrap: wrap; justify-content: space-between; padding-top: 50px; align-items: flex-start; } header { box-sizing: border-box; background-size: cover; background: no-repeat; background-position: -250px; height: 300px; margin-top: -35px; position: relative; min-width: 380px; flex: 2 1 100px; } h1 { position: absolute; left: 30px; bottom: 10px; line-height: 1; font-family: 'Abril Fatface', cursive; font-weight: 200; font-size: 60px; letter-spacing: 10px; margin: 0px; width: 100%; min-width: 300px; } h1::first-line { font-size: 28px; } blockquote { display: flex; flex-direction: column; box-sizing: border-box; /* width: 40%; max-width: 40%; min-width: 300px; */ background: #444; color: white; font-family: 'Abril Fatface', cursive; font-size: 50px; padding: 50px; position: relative; margin-left: 0px; flex: 2 1 200px; } blockquote::before { content: 'โ€'; font-size: 200px; position: absolute; left: 0px; top: -70px; } section { box-sizing: border-box; padding: 0px 40px 0px 20px; display: flex; flex-direction: column; /* max-width: 0%; */ /* min-width: 400px; */ flex: 1 1 500px; } ul { list-style-type: square; } h2 { text-transform: uppercase; font-weight: bold; } h3 { font-weight: bold; } .title { margin-top: 0px; font-size: 15px; font-family: 'Merriweather', serif; }
0.468061
0.059811
๏ปฟbody { margin:0px; background-image:none; position:static; left:auto; width:380px; margin-left:0; margin-right:0; text-align:left; } #base { position:absolute; z-index:0; } #u0 { position:absolute; left:-10px; top:-69px; width:400px; height:472px; } #u0_img { position:absolute; left:0px; top:0px; width:401px; height:473px; } #u1 { position:absolute; left:2px; top:228px; width:396px; visibility:hidden; word-wrap:break-word; } #u2 { position:absolute; left:146px; top:146px; width:210px; height:15px; } #u2_img { position:absolute; left:0px; top:0px; width:211px; height:16px; } #u3 { position:absolute; left:2px; top:0px; width:206px; visibility:hidden; word-wrap:break-word; } #u4 { position:absolute; left:87px; top:-42px; width:208px; height:14px; font-family:'Arial-BoldMT', 'Arial Bold', 'Arial'; font-weight:700; font-style:normal; font-size:12px; text-align:center; } #u4_img { position:absolute; left:0px; top:0px; width:209px; height:15px; } #u5 { position:absolute; left:0px; top:0px; width:208px; word-wrap:break-word; } #u6 { position:absolute; left:282px; top:359px; width:86px; height:17px; } #u6_img { position:absolute; left:0px; top:0px; width:87px; height:18px; } #u7 { position:absolute; left:2px; top:0px; width:82px; visibility:hidden; word-wrap:break-word; } #u8 { position:absolute; left:11px; top:218px; width:357px; height:24px; } #u8_img { position:absolute; left:0px; top:0px; width:358px; height:25px; } #u9 { position:absolute; left:2px; top:4px; width:353px; visibility:hidden; word-wrap:break-word; } #u10 { position:absolute; left:146px; top:16px; width:210px; height:8px; } #u10_img { position:absolute; left:0px; top:0px; width:211px; height:9px; } #u11 { position:absolute; left:2px; top:-4px; width:206px; visibility:hidden; word-wrap:break-word; } #u12 { position:absolute; left:146px; top:32px; width:210px; height:8px; } #u12_img { position:absolute; left:0px; top:0px; width:211px; height:9px; } #u13 { position:absolute; left:2px; top:-4px; width:206px; visibility:hidden; word-wrap:break-word; } #u14 { position:absolute; left:11px; top:147px; width:105px; height:10px; } #u14_img { position:absolute; left:0px; top:0px; width:106px; height:11px; } #u15 { position:absolute; left:2px; top:-3px; width:101px; visibility:hidden; word-wrap:break-word; } #u16 { position:absolute; left:146px; top:178px; width:210px; height:15px; } #u16_img { position:absolute; left:0px; top:0px; width:211px; height:16px; } #u17 { position:absolute; left:2px; top:0px; width:206px; visibility:hidden; word-wrap:break-word; } #u18 { position:absolute; left:11px; top:182px; width:105px; height:10px; } #u18_img { position:absolute; left:0px; top:0px; width:106px; height:11px; } #u19 { position:absolute; left:2px; top:-3px; width:101px; visibility:hidden; word-wrap:break-word; } #u20 { position:absolute; left:11px; top:116px; width:105px; height:10px; } #u20_img { position:absolute; left:0px; top:0px; width:106px; height:11px; } #u21 { position:absolute; left:2px; top:-3px; width:101px; visibility:hidden; word-wrap:break-word; } #u22 { position:absolute; left:146px; top:52px; width:61px; height:8px; } #u22_img { position:absolute; left:0px; top:0px; width:62px; height:9px; } #u23 { position:absolute; left:2px; top:-4px; width:57px; visibility:hidden; word-wrap:break-word; } #u24 { position:absolute; left:11px; top:262px; width:139px; height:76px; } #u24_img { position:absolute; left:0px; top:0px; width:140px; height:77px; } #u25 { position:absolute; left:2px; top:30px; width:135px; visibility:hidden; word-wrap:break-word; } #u26 { position:absolute; left:163px; top:262px; width:208px; height:76px; } #u26_img { position:absolute; left:0px; top:0px; width:209px; height:77px; } #u27 { position:absolute; left:2px; top:30px; width:204px; visibility:hidden; word-wrap:break-word; } #u28 { position:absolute; left:29px; top:16px; width:41px; height:55px; color:#FFFFFF; } #u28_img { position:absolute; left:0px; top:0px; width:42px; height:56px; } #u29 { position:absolute; left:2px; top:20px; width:37px; visibility:hidden; word-wrap:break-word; } #u30 { position:absolute; left:146px; top:116px; width:210px; height:15px; } #u30_img { position:absolute; left:0px; top:0px; width:210px; height:15px; } #u31 { position:absolute; left:2px; top:0px; width:206px; visibility:hidden; word-wrap:break-word; }
Github_wireframe_code/files/_user_account/styles.css
๏ปฟbody { margin:0px; background-image:none; position:static; left:auto; width:380px; margin-left:0; margin-right:0; text-align:left; } #base { position:absolute; z-index:0; } #u0 { position:absolute; left:-10px; top:-69px; width:400px; height:472px; } #u0_img { position:absolute; left:0px; top:0px; width:401px; height:473px; } #u1 { position:absolute; left:2px; top:228px; width:396px; visibility:hidden; word-wrap:break-word; } #u2 { position:absolute; left:146px; top:146px; width:210px; height:15px; } #u2_img { position:absolute; left:0px; top:0px; width:211px; height:16px; } #u3 { position:absolute; left:2px; top:0px; width:206px; visibility:hidden; word-wrap:break-word; } #u4 { position:absolute; left:87px; top:-42px; width:208px; height:14px; font-family:'Arial-BoldMT', 'Arial Bold', 'Arial'; font-weight:700; font-style:normal; font-size:12px; text-align:center; } #u4_img { position:absolute; left:0px; top:0px; width:209px; height:15px; } #u5 { position:absolute; left:0px; top:0px; width:208px; word-wrap:break-word; } #u6 { position:absolute; left:282px; top:359px; width:86px; height:17px; } #u6_img { position:absolute; left:0px; top:0px; width:87px; height:18px; } #u7 { position:absolute; left:2px; top:0px; width:82px; visibility:hidden; word-wrap:break-word; } #u8 { position:absolute; left:11px; top:218px; width:357px; height:24px; } #u8_img { position:absolute; left:0px; top:0px; width:358px; height:25px; } #u9 { position:absolute; left:2px; top:4px; width:353px; visibility:hidden; word-wrap:break-word; } #u10 { position:absolute; left:146px; top:16px; width:210px; height:8px; } #u10_img { position:absolute; left:0px; top:0px; width:211px; height:9px; } #u11 { position:absolute; left:2px; top:-4px; width:206px; visibility:hidden; word-wrap:break-word; } #u12 { position:absolute; left:146px; top:32px; width:210px; height:8px; } #u12_img { position:absolute; left:0px; top:0px; width:211px; height:9px; } #u13 { position:absolute; left:2px; top:-4px; width:206px; visibility:hidden; word-wrap:break-word; } #u14 { position:absolute; left:11px; top:147px; width:105px; height:10px; } #u14_img { position:absolute; left:0px; top:0px; width:106px; height:11px; } #u15 { position:absolute; left:2px; top:-3px; width:101px; visibility:hidden; word-wrap:break-word; } #u16 { position:absolute; left:146px; top:178px; width:210px; height:15px; } #u16_img { position:absolute; left:0px; top:0px; width:211px; height:16px; } #u17 { position:absolute; left:2px; top:0px; width:206px; visibility:hidden; word-wrap:break-word; } #u18 { position:absolute; left:11px; top:182px; width:105px; height:10px; } #u18_img { position:absolute; left:0px; top:0px; width:106px; height:11px; } #u19 { position:absolute; left:2px; top:-3px; width:101px; visibility:hidden; word-wrap:break-word; } #u20 { position:absolute; left:11px; top:116px; width:105px; height:10px; } #u20_img { position:absolute; left:0px; top:0px; width:106px; height:11px; } #u21 { position:absolute; left:2px; top:-3px; width:101px; visibility:hidden; word-wrap:break-word; } #u22 { position:absolute; left:146px; top:52px; width:61px; height:8px; } #u22_img { position:absolute; left:0px; top:0px; width:62px; height:9px; } #u23 { position:absolute; left:2px; top:-4px; width:57px; visibility:hidden; word-wrap:break-word; } #u24 { position:absolute; left:11px; top:262px; width:139px; height:76px; } #u24_img { position:absolute; left:0px; top:0px; width:140px; height:77px; } #u25 { position:absolute; left:2px; top:30px; width:135px; visibility:hidden; word-wrap:break-word; } #u26 { position:absolute; left:163px; top:262px; width:208px; height:76px; } #u26_img { position:absolute; left:0px; top:0px; width:209px; height:77px; } #u27 { position:absolute; left:2px; top:30px; width:204px; visibility:hidden; word-wrap:break-word; } #u28 { position:absolute; left:29px; top:16px; width:41px; height:55px; color:#FFFFFF; } #u28_img { position:absolute; left:0px; top:0px; width:42px; height:56px; } #u29 { position:absolute; left:2px; top:20px; width:37px; visibility:hidden; word-wrap:break-word; } #u30 { position:absolute; left:146px; top:116px; width:210px; height:15px; } #u30_img { position:absolute; left:0px; top:0px; width:210px; height:15px; } #u31 { position:absolute; left:2px; top:0px; width:206px; visibility:hidden; word-wrap:break-word; }
0.497315
0.046163
@namespace url(http://www.w3.org/1999/xhtml); @-moz-document domain("google.com") { * { background-color: #262626 !important; background-image: none !important; border-color: #262626 !important; color: #8a8a8a !important; } .gbts, a:link { color: #a7a15e !important; } h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *, input, a:visited { color: #a67b07 !important; } td.cur, cite, cite *, a:hover { color: #af5f00 !important; } .gbz0 .gbts, .gbz0l .gbts, span.titleText, strong, strong *, b *, b, em { color: #556b2f !important; } span.gl *, span.f, li { color: #705b46 !important; } input, button, textarea, select { background: #262626 !important; border: 1px solid #3e3e3e !important; } div[style*="height:33px;position:absolute;width:44px"] { background: none !important; } .lhshdr, .std { display: none !important; } img[id*="logo"], a#srp-logo, #logo > img, #logo span, img[src*="/youtube"], img[src*="nav"], img[src*="logo"], img[src*="play"], img[src*="/newspaper.gif"], img[src*="/images_logo.gif"], img[src*="/images_logo.gif"], img[src*="/remind.png"], img[src*="/mobile.png"], img[src*="/pubgal.png"], img[src*="/calendar_sm2_en.gif"], img[src*="/scholar_results.gif"], img[src*="http://www.gstatic.com/news/img/logo/debr.gif"], img[src*="/translate_logo.gif"], img[src*="/logo.gif"], img[src$="logo_sm.gif"], img[src*="/maps_small_horizontal_logo.png"], img[src*="/ps_logo_lg.gif"], img[src*="http://www.gstatic.com/news/img/bluelogo/en_us/news.gif"], img[src*="/150x55.gif"], img[src*="/logo_docs.gif"], img[src*="google_transparent.gif"], img[src*="googleaccountslogo.gif"], img[src*="/books_sm2.gif"], img[src*="/groups_medium.gif"], img[src*="/news.gif"], img[src*="/maps_logo_small_blue.png"], img[src*="/maps_logo_large.png"], img[src*="/logo_videos.png?hl=en"], img[src$="google_sm.gif"], img[src*="https://mail.google.com/mail/images/corner_tl.gif"], img[src*="https://mail.google.com/mail/images/corner_tr.gif"], img[src*="https://mail.google.com/mail/images/corner_bl.gif"], img[src*="https://mail.google.com/mail/images/corner_br.gif"], img[src*="https://mail.google.com/mail/help/images/icons/spam_new.gif"], img[src*="https://mail.google.com/mail/help/images/icons/cell.gif"], img[src*="/ps2.png?v=oXYdwmffXlY"], img[src*="https://mail.google.com/mail/help/images/icons/storage.gif"], img[src$="logo_google_suggest_sm.gif"], img[src*="/scholar_logo_lg_2009.gif"], img[src*="/logo2.gif"], img[src*="/checkout_logo.gif"], img[src*="/logo_sm.jpg"], img[src*="/desktop_logo.gif"], img[src*="/directory_logo_lg.gif"], img[src*="/earth_logo.gif"], img[src*="/logo_beta.gif?hl=en&gl=us"], img[src*="/blogs_logo.gif"], img[src*="/books_logo.gif"], img[src*="/custom_search_logo_beta.gif"], img[src*="/logo_us.gif"] { width: 0px !important; background: none !important; } }
data/usercss/18280.user.css
@namespace url(http://www.w3.org/1999/xhtml); @-moz-document domain("google.com") { * { background-color: #262626 !important; background-image: none !important; border-color: #262626 !important; color: #8a8a8a !important; } .gbts, a:link { color: #a7a15e !important; } h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *, input, a:visited { color: #a67b07 !important; } td.cur, cite, cite *, a:hover { color: #af5f00 !important; } .gbz0 .gbts, .gbz0l .gbts, span.titleText, strong, strong *, b *, b, em { color: #556b2f !important; } span.gl *, span.f, li { color: #705b46 !important; } input, button, textarea, select { background: #262626 !important; border: 1px solid #3e3e3e !important; } div[style*="height:33px;position:absolute;width:44px"] { background: none !important; } .lhshdr, .std { display: none !important; } img[id*="logo"], a#srp-logo, #logo > img, #logo span, img[src*="/youtube"], img[src*="nav"], img[src*="logo"], img[src*="play"], img[src*="/newspaper.gif"], img[src*="/images_logo.gif"], img[src*="/images_logo.gif"], img[src*="/remind.png"], img[src*="/mobile.png"], img[src*="/pubgal.png"], img[src*="/calendar_sm2_en.gif"], img[src*="/scholar_results.gif"], img[src*="http://www.gstatic.com/news/img/logo/debr.gif"], img[src*="/translate_logo.gif"], img[src*="/logo.gif"], img[src$="logo_sm.gif"], img[src*="/maps_small_horizontal_logo.png"], img[src*="/ps_logo_lg.gif"], img[src*="http://www.gstatic.com/news/img/bluelogo/en_us/news.gif"], img[src*="/150x55.gif"], img[src*="/logo_docs.gif"], img[src*="google_transparent.gif"], img[src*="googleaccountslogo.gif"], img[src*="/books_sm2.gif"], img[src*="/groups_medium.gif"], img[src*="/news.gif"], img[src*="/maps_logo_small_blue.png"], img[src*="/maps_logo_large.png"], img[src*="/logo_videos.png?hl=en"], img[src$="google_sm.gif"], img[src*="https://mail.google.com/mail/images/corner_tl.gif"], img[src*="https://mail.google.com/mail/images/corner_tr.gif"], img[src*="https://mail.google.com/mail/images/corner_bl.gif"], img[src*="https://mail.google.com/mail/images/corner_br.gif"], img[src*="https://mail.google.com/mail/help/images/icons/spam_new.gif"], img[src*="https://mail.google.com/mail/help/images/icons/cell.gif"], img[src*="/ps2.png?v=oXYdwmffXlY"], img[src*="https://mail.google.com/mail/help/images/icons/storage.gif"], img[src$="logo_google_suggest_sm.gif"], img[src*="/scholar_logo_lg_2009.gif"], img[src*="/logo2.gif"], img[src*="/checkout_logo.gif"], img[src*="/logo_sm.jpg"], img[src*="/desktop_logo.gif"], img[src*="/directory_logo_lg.gif"], img[src*="/earth_logo.gif"], img[src*="/logo_beta.gif?hl=en&gl=us"], img[src*="/blogs_logo.gif"], img[src*="/books_logo.gif"], img[src*="/custom_search_logo_beta.gif"], img[src*="/logo_us.gif"] { width: 0px !important; background: none !important; } }
0.212232
0.187914
๏ปฟ/*Margin and Padding helpers*/ /*xs*/ .p-xs { padding: .25em; } .p-x-xs { padding: 0 .25em; } .p-y-xs { padding: .25em 0; } .p-t-xs { padding-top: .25em; } .p-r-xs { padding-right: .25em; } .p-b-xs { padding-bottom: .25em; } .p-l-xs { padding-left: .50em; } .m-xs { margin: .25em; } .m-x-xs { margin: 0 .25em; } .m-y-xs { margin: .25em 0; } .m-r-xs { margin-right: .25em; } .m-l-xs { margin-left: .25em; } .m-t-xs { margin-top: .25em; } .m-b-xs { margin-bottom: .25em; } /*sm*/ @media (min-width:768px) { /*sm*/ .p-sm { padding: .5em; } .p-x-sm { padding: 0 .5em; } .p-y-sm { padding: .5em 0; } .p-t-sm { padding-top: .5em; } .p-r-sm { padding-right: .5em; } .p-b-sm { padding-bottom: .5em; } .p-l-sm { padding-left: .5em; } .m-sm { margin: .5em; } .m-x-sm { margin: 0 .5em; } .m-y-sm { margin: .5em 0; } .m-t-sm { margin-top: .5em; } .m-r-sm { margin-right: .5em; } .m-b-sm { margin-bottom: .5em; } .m-l-sm { margin-left: .5em; } } /*md*/ @media (min-width: 990px) { .p-md { padding: 1em; } .p-x-md { padding: 0 1em; } .p-y-md { padding: 1em 0; } .p-t-md { padding-top: 1em; } .p-r-md { padding-right: 5px !important; } .p-b-md { padding-bottom: 1em; } .p-l-md { padding-left: 1em; } .m-md { margin: 1em; } .m-x-md { margin: 0 1em; } .m-y-md { margin: 1em 0; } .m-t-md { margin-top: 1em; } .m-r-md { margin-right: 1em; } .m-b-md { margin-bottom: 1em; } .m-l-md { margin-left: 1em; } } /*lg*/ @media (min-width: 1200px) { .p-lg { padding: 1.5em; } .p-x-lg { padding: 0 1.5em; } .p-y-lg { padding: 1.5em 0; } .p-t-lg { padding-top: 1.5em; } .p-r-lg { padding-right: 1.5em; } .p-b-lg { padding-bottom: 1.5em; } .p-l-lg { padding-left: 1.5em !important; } .m-lg { margin: 1.5em; } .m-x-lg { margin: 0 1.5em; } .m-y-lg { margin: 1.5em 0; } .m-t-lg { margin-top: 1.5em; } .m-r-lg { margin-right: 1.5em; } .m-b-lg { margin-bottom: 1.5em; } .m-l-lg { margin-left: 1.5em; } } /*xl*/ .p-xl { padding: 3em; } .p-x-xl { padding: 0 3em; } .p-y-xl { padding: 3em 0; } .p-t-xl { padding-top: 3em; } .p-r-xl { padding-right: 3em; } .p-b-xl { padding-bottom: 3em; } .p-l-xl { padding-left: 3em; } .m-xl { margin: 3em; } .m-x-xl { margin: 0 3em; } .m-y-xl { margin: 3em 0; } .m-t-xl { margin-top: 3em; } .m-r-xl { margin-right: 3em; } .m-b-xl { margin-bottom: 3em; } .m-l-xl { margin-left: 3em; } /* Loader Icon Start */ .loaderOverlay { position: fixed; top: 0; right: 0; bottom: 0; left: 0; background-color: #000; opacity: .75; z-index: 9999; } .loader { padding-left: 17px; border: 13px solid #f3f3f3; border-radius: 50%; border-top: 13px solid rgb(34, 85, 130); width: 90px; height: 90px; -webkit-animation: spin .6s linear infinite; /* Safari */ animation: spin .6s linear infinite; } /* Safari */ @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); } } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } /* Loader Icon End */ /* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification\ for details on configuring this project to bundle and minify static web assets. */ body { padding-top: 50px; padding-bottom: 20px; } /* Wrapping element */ /* Set some basic padding to keep content from hitting the edges */ .body-content { padding-left: 15px; padding-right: 15px; } /* Carousel */ .carousel-caption p { font-size: 20px; line-height: 1.4; } /* Make .svg files in the carousel display properly in older browsers */ .carousel-inner .item img[src$=".svg"] { width: 100%; } /* QR code generator */ #qrCode { margin: 15px; } /* Hide/rearrange for smaller screens */ @media screen and (max-width: 767px) { /* Hide captions */ .carousel-caption { display: none; } } .svg-inline--fa { margin-right: 5px; } .modal-open { overflow: scroll !important; } .k-calendar-container { padding: 0; BORDER-RADIUS: 0PX; } .k-calendar .k-content .k-link { border-radius: 0rem; } .k-popup { BORDER-RADIUS: 0PX; } .k-button, .k-button-group.k-state-disabled .k-button:not(.k-state-active), .k-button-group .k-button.k-state-disabled:not(.k-state-active), .k-list-container .k-nodata .k-button, .k-dropdown .k-dropdown-wrap, .k-dropdowntree .k-dropdown-wrap, .k-grid .k-button, .k-grouping-header .k-group-indicator, .k-spreadsheet-filter, .k-pivot-toolbar .k-button, .k-fieldselector .k-list li.k-item, .k-colorpicker .k-picker-wrap, .k-combobox .k-select, .k-datepicker .k-select, .k-timepicker .k-select, .k-datetimepicker .k-select, .k-dateinput .k-select, .k-editor-toolbar a.k-tool, .k-numerictextbox .k-select, .k-switch-wrapper, .km-switch-wrapper, .k-switch-handle, .km-switch-handle, .k-handle, .k-map .k-navigator, .k-gantt-views li, .k-task-single, .k-scheduler-navigation .k-nav-today, .k-scheduler-navigation .k-nav-prev, .k-scheduler-navigation .k-nav-next, .k-scheduler-views li, .k-scheduler-footer li { color: #ffffff; background-color: #00838f; border-color: #eff4f9; } .k-autocomplete { border-radius: 0.0rem !important; color: #666 !important; } k-datepicker { border-radius: 0.0rem !important; color: #666 !important; } .k-picker-wrap, .k-state-default .k-state-selected { border-radius: 0.0rem !important; color: #666 !important; } k-picker-wrap .k-state-focused .k-state-selected { box-shadow: none !important; border-color: none !important; color: #666 !important; height: calc(2.2rem + 0rem) !important; } .k-autocomplete .k-state-focused, .k-combobox .k-state-focused, .k-combobox .k-state-active, .k-datepicker .k-state-focused, .k-timepicker .k-state-focused, .k-datetimepicker .k-state-focused, .k-datepicker .k-state-active, .k-timepicker .k-state-active, .k-datetimepicker .k-state-active, .k-dateinput .k-state-focused, .k-state-focused .k-multiselect-wrap, .k-numerictextbox .k-state-focused { box-shadow: none !important; border-color: none !important; color: #666 !important; height: calc(2.2rem + 0rem) !important; } .k-input:focus, .k-input.k-state-focused, .k-textbox:focus, .k-textbox.k-state-focused, .k-textarea:focus, .k-textarea.k-state-focused, .k-input.k-textbox:focus, .k-input.k-textbox.k-state-focused { border-color: none !important; } .k-datetimepicker .k-state-focused { box-shadow: none !important; border-color: none !important; color: #666 !important; height: calc(2.2rem + 0rem) !important; } .form-control:focus { color: #666; background-color: transparent; border-color: none !important; outline: 0; box-shadow: 0 0 0 .2rem rgba(28,26,104,.25) } .k-select { border-radius: 0px !important; box-shadow: 1px 1px 1px 1px #ddd !important; height: 32px; } .k-widget.form-control .k-input { height: auto; } .k-list .k-item.k-state-selected, .k-list-container .k-button:active, .k-list-container .k-button.k-state-active, .k-spreadsheet-popup .k-button:active, .k-spreadsheet-popup .k-button.k-state-active, .k-spreadsheet-popup .k-button.k-state-selected, .k-menu-group .k-item.k-state-selected, .k-menu.k-context-menu .k-item.k-state-selected { color: #ffffff !important; background-color: #1c1a68; } .k-grid-content tr:last-child td, .k-grid-content-locked tr:last-child td { border-bottom-width: 0px !important; } .k-link { padding-right: 29px; } .k-button { border-radius: 0px; height: 33px; padding-left: 9px; /* border-top-width: 0px; */ border: none; padding-right: 3px; padding-top: 7px; } .k-grid-delete { background-color: #b71010 !important; } .k-grid-header .k-with-icon > .k-link, .k-grid-header .k-filterable > .k-link { font-size: 14px; font-weight: 500; } .k-grid th { font-size: 14px; } .k-grid td { font-size: 14px; padding-top: 3px; padding-bottom: 4px; padding-left: 10px; padding-right: 5px; border-top-width: 1px; } .k-grid td:first-child { padding-right: 10px; /*display: flex;*/ } .k-grid-header .k-grid-filter, .k-grid-header .k-header-column-menu { padding-top: 0px; padding-bottom: 0px; } .k-grid-header .k-header-column-menu { padding-right: 0px !important; right: 0px !important; } .k-grid-header .k-header > .k-link { padding-right: 28px !important; } .k-pager-wrap .k-pager-info { min-width: 100px; } .k-grid-pager { overflow-x: auto; } .k-i-close::before, .k-i-group-delete::before { content: ""; } .k-icon.k-i-close { height: 0; width: 0; } .k-dateinput-wrap .k-input, .k-dropdown-wrap .k-input, .k-picker-wrap .k-input, .k-multiselect-wrap .k-input, .k-numeric-wrap .k-input { height: calc( 0.55rem + 1.45em); } .k-autocomplete, .k-combobox, .k-dateinput, .k-datepicker, .k-datetimepicker, .k-dropdown, .k-dropdowntree, .k-multiselect, .k-numerictextbox, .k-maskedtextbox, .k-timepicker, .k-dropdowntree { height: calc( 0.65rem + 1.45em); } .k-dropdown-wrap { border-radius: 0px; } .clock-grids { background: #FFFFFF; border-radius: 5px; -webkit-border-radius: 5px; -ms-border-radius: 5px; -o-border-radius: 5px; -moz-border-radius: 5px; border-top: solid 5px #399348; box-shadow: 0 0px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); } .clock-heading h3 { margin: 1em 0; text-align: center; font-size: 1.5em; color: #EE732F; font-weight: 600; text-transform: uppercase; } .clock-left { padding: 0 1em; } .clock { display: inline; } div#myclock { text-align: center; } #set { text-decoration: none; padding: 5px 10px 5px 10px; color: #FFF; background-color: #F3A829; border-radius: 5px; } #set:hover { text-decoration: none; padding: 4px 9px 4px 9px; color: #fefefe; background-color: #F3A829; border-radius: 5px; } #Date { font-size: 1em; text-align: center; color: #FFFFFF; } .clock ul { padding: 0; margin: 1em 0 0 0; text-align: center; } .clock ul li { display: inline; font-size: 2em; text-align: center; color: #FFF; } .clock-bottom { margin: 1em 0 0 0; padding: 1em; background: #22aaa1; background: -moz-linear-gradient(left, #22aaa1 0%, #399348 100%); background: -webkit-linear-gradient(left, #22aaa1 0%, #399348 100%); background: linear-gradient(to right, #22aaa1 0%, #399348 100%); filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#22aaa1', endColorstr='#399348', GradientType=1); border-bottom-left-radius: 5px; -webkit-border-bottom-left-radius: 5px; -moz-border-bottom-left-radius: 5px; -ms-border-bottom-left-radius: 5px; -o-border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; -webkit-border-bottom-right-radius: 5px; -ms-border-bottom-right-radius: 5px; -moz-border-bottom-right-radius: 5px; -o-border-bottom-right-radius: 5px; } div#myclock canvas { width: 140px !important; height: 140px !important; color: white; }
Project/WebAppCore/wwwroot/css/site.css
๏ปฟ/*Margin and Padding helpers*/ /*xs*/ .p-xs { padding: .25em; } .p-x-xs { padding: 0 .25em; } .p-y-xs { padding: .25em 0; } .p-t-xs { padding-top: .25em; } .p-r-xs { padding-right: .25em; } .p-b-xs { padding-bottom: .25em; } .p-l-xs { padding-left: .50em; } .m-xs { margin: .25em; } .m-x-xs { margin: 0 .25em; } .m-y-xs { margin: .25em 0; } .m-r-xs { margin-right: .25em; } .m-l-xs { margin-left: .25em; } .m-t-xs { margin-top: .25em; } .m-b-xs { margin-bottom: .25em; } /*sm*/ @media (min-width:768px) { /*sm*/ .p-sm { padding: .5em; } .p-x-sm { padding: 0 .5em; } .p-y-sm { padding: .5em 0; } .p-t-sm { padding-top: .5em; } .p-r-sm { padding-right: .5em; } .p-b-sm { padding-bottom: .5em; } .p-l-sm { padding-left: .5em; } .m-sm { margin: .5em; } .m-x-sm { margin: 0 .5em; } .m-y-sm { margin: .5em 0; } .m-t-sm { margin-top: .5em; } .m-r-sm { margin-right: .5em; } .m-b-sm { margin-bottom: .5em; } .m-l-sm { margin-left: .5em; } } /*md*/ @media (min-width: 990px) { .p-md { padding: 1em; } .p-x-md { padding: 0 1em; } .p-y-md { padding: 1em 0; } .p-t-md { padding-top: 1em; } .p-r-md { padding-right: 5px !important; } .p-b-md { padding-bottom: 1em; } .p-l-md { padding-left: 1em; } .m-md { margin: 1em; } .m-x-md { margin: 0 1em; } .m-y-md { margin: 1em 0; } .m-t-md { margin-top: 1em; } .m-r-md { margin-right: 1em; } .m-b-md { margin-bottom: 1em; } .m-l-md { margin-left: 1em; } } /*lg*/ @media (min-width: 1200px) { .p-lg { padding: 1.5em; } .p-x-lg { padding: 0 1.5em; } .p-y-lg { padding: 1.5em 0; } .p-t-lg { padding-top: 1.5em; } .p-r-lg { padding-right: 1.5em; } .p-b-lg { padding-bottom: 1.5em; } .p-l-lg { padding-left: 1.5em !important; } .m-lg { margin: 1.5em; } .m-x-lg { margin: 0 1.5em; } .m-y-lg { margin: 1.5em 0; } .m-t-lg { margin-top: 1.5em; } .m-r-lg { margin-right: 1.5em; } .m-b-lg { margin-bottom: 1.5em; } .m-l-lg { margin-left: 1.5em; } } /*xl*/ .p-xl { padding: 3em; } .p-x-xl { padding: 0 3em; } .p-y-xl { padding: 3em 0; } .p-t-xl { padding-top: 3em; } .p-r-xl { padding-right: 3em; } .p-b-xl { padding-bottom: 3em; } .p-l-xl { padding-left: 3em; } .m-xl { margin: 3em; } .m-x-xl { margin: 0 3em; } .m-y-xl { margin: 3em 0; } .m-t-xl { margin-top: 3em; } .m-r-xl { margin-right: 3em; } .m-b-xl { margin-bottom: 3em; } .m-l-xl { margin-left: 3em; } /* Loader Icon Start */ .loaderOverlay { position: fixed; top: 0; right: 0; bottom: 0; left: 0; background-color: #000; opacity: .75; z-index: 9999; } .loader { padding-left: 17px; border: 13px solid #f3f3f3; border-radius: 50%; border-top: 13px solid rgb(34, 85, 130); width: 90px; height: 90px; -webkit-animation: spin .6s linear infinite; /* Safari */ animation: spin .6s linear infinite; } /* Safari */ @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); } } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } /* Loader Icon End */ /* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification\ for details on configuring this project to bundle and minify static web assets. */ body { padding-top: 50px; padding-bottom: 20px; } /* Wrapping element */ /* Set some basic padding to keep content from hitting the edges */ .body-content { padding-left: 15px; padding-right: 15px; } /* Carousel */ .carousel-caption p { font-size: 20px; line-height: 1.4; } /* Make .svg files in the carousel display properly in older browsers */ .carousel-inner .item img[src$=".svg"] { width: 100%; } /* QR code generator */ #qrCode { margin: 15px; } /* Hide/rearrange for smaller screens */ @media screen and (max-width: 767px) { /* Hide captions */ .carousel-caption { display: none; } } .svg-inline--fa { margin-right: 5px; } .modal-open { overflow: scroll !important; } .k-calendar-container { padding: 0; BORDER-RADIUS: 0PX; } .k-calendar .k-content .k-link { border-radius: 0rem; } .k-popup { BORDER-RADIUS: 0PX; } .k-button, .k-button-group.k-state-disabled .k-button:not(.k-state-active), .k-button-group .k-button.k-state-disabled:not(.k-state-active), .k-list-container .k-nodata .k-button, .k-dropdown .k-dropdown-wrap, .k-dropdowntree .k-dropdown-wrap, .k-grid .k-button, .k-grouping-header .k-group-indicator, .k-spreadsheet-filter, .k-pivot-toolbar .k-button, .k-fieldselector .k-list li.k-item, .k-colorpicker .k-picker-wrap, .k-combobox .k-select, .k-datepicker .k-select, .k-timepicker .k-select, .k-datetimepicker .k-select, .k-dateinput .k-select, .k-editor-toolbar a.k-tool, .k-numerictextbox .k-select, .k-switch-wrapper, .km-switch-wrapper, .k-switch-handle, .km-switch-handle, .k-handle, .k-map .k-navigator, .k-gantt-views li, .k-task-single, .k-scheduler-navigation .k-nav-today, .k-scheduler-navigation .k-nav-prev, .k-scheduler-navigation .k-nav-next, .k-scheduler-views li, .k-scheduler-footer li { color: #ffffff; background-color: #00838f; border-color: #eff4f9; } .k-autocomplete { border-radius: 0.0rem !important; color: #666 !important; } k-datepicker { border-radius: 0.0rem !important; color: #666 !important; } .k-picker-wrap, .k-state-default .k-state-selected { border-radius: 0.0rem !important; color: #666 !important; } k-picker-wrap .k-state-focused .k-state-selected { box-shadow: none !important; border-color: none !important; color: #666 !important; height: calc(2.2rem + 0rem) !important; } .k-autocomplete .k-state-focused, .k-combobox .k-state-focused, .k-combobox .k-state-active, .k-datepicker .k-state-focused, .k-timepicker .k-state-focused, .k-datetimepicker .k-state-focused, .k-datepicker .k-state-active, .k-timepicker .k-state-active, .k-datetimepicker .k-state-active, .k-dateinput .k-state-focused, .k-state-focused .k-multiselect-wrap, .k-numerictextbox .k-state-focused { box-shadow: none !important; border-color: none !important; color: #666 !important; height: calc(2.2rem + 0rem) !important; } .k-input:focus, .k-input.k-state-focused, .k-textbox:focus, .k-textbox.k-state-focused, .k-textarea:focus, .k-textarea.k-state-focused, .k-input.k-textbox:focus, .k-input.k-textbox.k-state-focused { border-color: none !important; } .k-datetimepicker .k-state-focused { box-shadow: none !important; border-color: none !important; color: #666 !important; height: calc(2.2rem + 0rem) !important; } .form-control:focus { color: #666; background-color: transparent; border-color: none !important; outline: 0; box-shadow: 0 0 0 .2rem rgba(28,26,104,.25) } .k-select { border-radius: 0px !important; box-shadow: 1px 1px 1px 1px #ddd !important; height: 32px; } .k-widget.form-control .k-input { height: auto; } .k-list .k-item.k-state-selected, .k-list-container .k-button:active, .k-list-container .k-button.k-state-active, .k-spreadsheet-popup .k-button:active, .k-spreadsheet-popup .k-button.k-state-active, .k-spreadsheet-popup .k-button.k-state-selected, .k-menu-group .k-item.k-state-selected, .k-menu.k-context-menu .k-item.k-state-selected { color: #ffffff !important; background-color: #1c1a68; } .k-grid-content tr:last-child td, .k-grid-content-locked tr:last-child td { border-bottom-width: 0px !important; } .k-link { padding-right: 29px; } .k-button { border-radius: 0px; height: 33px; padding-left: 9px; /* border-top-width: 0px; */ border: none; padding-right: 3px; padding-top: 7px; } .k-grid-delete { background-color: #b71010 !important; } .k-grid-header .k-with-icon > .k-link, .k-grid-header .k-filterable > .k-link { font-size: 14px; font-weight: 500; } .k-grid th { font-size: 14px; } .k-grid td { font-size: 14px; padding-top: 3px; padding-bottom: 4px; padding-left: 10px; padding-right: 5px; border-top-width: 1px; } .k-grid td:first-child { padding-right: 10px; /*display: flex;*/ } .k-grid-header .k-grid-filter, .k-grid-header .k-header-column-menu { padding-top: 0px; padding-bottom: 0px; } .k-grid-header .k-header-column-menu { padding-right: 0px !important; right: 0px !important; } .k-grid-header .k-header > .k-link { padding-right: 28px !important; } .k-pager-wrap .k-pager-info { min-width: 100px; } .k-grid-pager { overflow-x: auto; } .k-i-close::before, .k-i-group-delete::before { content: ""; } .k-icon.k-i-close { height: 0; width: 0; } .k-dateinput-wrap .k-input, .k-dropdown-wrap .k-input, .k-picker-wrap .k-input, .k-multiselect-wrap .k-input, .k-numeric-wrap .k-input { height: calc( 0.55rem + 1.45em); } .k-autocomplete, .k-combobox, .k-dateinput, .k-datepicker, .k-datetimepicker, .k-dropdown, .k-dropdowntree, .k-multiselect, .k-numerictextbox, .k-maskedtextbox, .k-timepicker, .k-dropdowntree { height: calc( 0.65rem + 1.45em); } .k-dropdown-wrap { border-radius: 0px; } .clock-grids { background: #FFFFFF; border-radius: 5px; -webkit-border-radius: 5px; -ms-border-radius: 5px; -o-border-radius: 5px; -moz-border-radius: 5px; border-top: solid 5px #399348; box-shadow: 0 0px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); } .clock-heading h3 { margin: 1em 0; text-align: center; font-size: 1.5em; color: #EE732F; font-weight: 600; text-transform: uppercase; } .clock-left { padding: 0 1em; } .clock { display: inline; } div#myclock { text-align: center; } #set { text-decoration: none; padding: 5px 10px 5px 10px; color: #FFF; background-color: #F3A829; border-radius: 5px; } #set:hover { text-decoration: none; padding: 4px 9px 4px 9px; color: #fefefe; background-color: #F3A829; border-radius: 5px; } #Date { font-size: 1em; text-align: center; color: #FFFFFF; } .clock ul { padding: 0; margin: 1em 0 0 0; text-align: center; } .clock ul li { display: inline; font-size: 2em; text-align: center; color: #FFF; } .clock-bottom { margin: 1em 0 0 0; padding: 1em; background: #22aaa1; background: -moz-linear-gradient(left, #22aaa1 0%, #399348 100%); background: -webkit-linear-gradient(left, #22aaa1 0%, #399348 100%); background: linear-gradient(to right, #22aaa1 0%, #399348 100%); filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#22aaa1', endColorstr='#399348', GradientType=1); border-bottom-left-radius: 5px; -webkit-border-bottom-left-radius: 5px; -moz-border-bottom-left-radius: 5px; -ms-border-bottom-left-radius: 5px; -o-border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; -webkit-border-bottom-right-radius: 5px; -ms-border-bottom-right-radius: 5px; -moz-border-bottom-right-radius: 5px; -o-border-bottom-right-radius: 5px; } div#myclock canvas { width: 140px !important; height: 140px !important; color: white; }
0.478529
0.135432
/* BUTTONS CONTAINER */ /*.ui-dialog-buttons { text-align: center; float:left; width:100%; } */ .ui-dialog-content { position:relative; overflow:auto; } .ui-dialog-buttons { position:relative; text-align: center; } .ui-window .content { overflow: hidden !important; } .ui-window .n { padding-left:0 !important; padding-right:0 !important; } /* BUTTONS */ .ui-dialog-buttons span { width: 70px; } .ui-dialog-buttons button { margin:0 3px; background-color:#f5f5f5; border:1px solid #dedede; border-top:1px solid #eee; border-left:1px solid #eee; font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif; font-size:100%; line-height:130%; text-decoration:none; font-weight:bold; color:#565656; cursor:pointer; width: 100px; padding:5px 10px 6px 7px; /* Links */ text-align:center; } /* STANDARD */ .ui-dialog-buttons button:hover{ background-color:#dff4ff; border:1px solid #c2e1ef; color:#336699; } .ui-dialog-buttons button:active{ background-color:#6299c5; border:1px solid #6299c5; color:#fff; } /* DISABLED */ .ui-dialog-buttons button.disabled, .ui-dialog-buttons button.disabled:hover, .ui-dialog-buttons button.disabled:active{ color:#888 !important; background-color:#666 !important; border:1px solid #444 !important; cursor:auto; } /* OK */ .ui-dialog-buttons button.ok { color:#529214; background-image: url(famfamfam/tick.png); background-repeat: no-repeat; background-position: 6px center; padding-left: 20px; } .ui-dialog-buttons button.ok:hover{ background-color:#E6EFC2; border:1px solid #C6D880; color:#529214; } .ui-dialog-buttons button.ok:active{ background-color:#529214; border:1px solid #529214; color:#fff; } /* CANCEL */ .ui-dialog-buttons button.cancel { color:#d12f19; background-image: url(famfamfam/cross.png); background-repeat: no-repeat; background-position: 6px center; padding-left: 20px; } .ui-dialog-buttons button.cancel:hover { background-color:#fbe3e4; border:1px solid #fbc2c4; color:#d12f19; } .ui-dialog-buttons button.cancel:active{ background-color:#d12f19; border:1px solid #d12f19; color:#fff; }
themes/dialog/famfamfam.css
/* BUTTONS CONTAINER */ /*.ui-dialog-buttons { text-align: center; float:left; width:100%; } */ .ui-dialog-content { position:relative; overflow:auto; } .ui-dialog-buttons { position:relative; text-align: center; } .ui-window .content { overflow: hidden !important; } .ui-window .n { padding-left:0 !important; padding-right:0 !important; } /* BUTTONS */ .ui-dialog-buttons span { width: 70px; } .ui-dialog-buttons button { margin:0 3px; background-color:#f5f5f5; border:1px solid #dedede; border-top:1px solid #eee; border-left:1px solid #eee; font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif; font-size:100%; line-height:130%; text-decoration:none; font-weight:bold; color:#565656; cursor:pointer; width: 100px; padding:5px 10px 6px 7px; /* Links */ text-align:center; } /* STANDARD */ .ui-dialog-buttons button:hover{ background-color:#dff4ff; border:1px solid #c2e1ef; color:#336699; } .ui-dialog-buttons button:active{ background-color:#6299c5; border:1px solid #6299c5; color:#fff; } /* DISABLED */ .ui-dialog-buttons button.disabled, .ui-dialog-buttons button.disabled:hover, .ui-dialog-buttons button.disabled:active{ color:#888 !important; background-color:#666 !important; border:1px solid #444 !important; cursor:auto; } /* OK */ .ui-dialog-buttons button.ok { color:#529214; background-image: url(famfamfam/tick.png); background-repeat: no-repeat; background-position: 6px center; padding-left: 20px; } .ui-dialog-buttons button.ok:hover{ background-color:#E6EFC2; border:1px solid #C6D880; color:#529214; } .ui-dialog-buttons button.ok:active{ background-color:#529214; border:1px solid #529214; color:#fff; } /* CANCEL */ .ui-dialog-buttons button.cancel { color:#d12f19; background-image: url(famfamfam/cross.png); background-repeat: no-repeat; background-position: 6px center; padding-left: 20px; } .ui-dialog-buttons button.cancel:hover { background-color:#fbe3e4; border:1px solid #fbc2c4; color:#d12f19; } .ui-dialog-buttons button.cancel:active{ background-color:#d12f19; border:1px solid #d12f19; color:#fff; }
0.250821
0.047825
body{ background-image: url('/img/optimizecode.jpg'); background-repeat: no-repeat; background-size: cover; background-color: rgb(0, 0, 0,.6); background-blend-mode: overlay; overflow-x: hidden; } ul li{ display: inline-block; list-style: none; text-decoration:none; } li a{ position: absolute; top: 16px; left: 60px; text-decoration: none; color: black; font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; font-size: 20px; padding: 10px 10px; } a{ border:none; text-decoration: none; } a:hover{ background-color: rgb(0, 0, 0,.1); text-decoration: none; color: black; } #arrow{ position: absolute; left: -30px; color: black; font-size: 15px; background-color: white; padding: 5px 5px; border: 1px solid black; border-radius: 50%; } .abt-layout{ position:absolute; top: 255px; left:0; background-color: white; width: 100%; height: 408px; } #profile{ position: absolute; top: -50px; left: 0; border-radius: 50%; width: 200px; height: 200px; } .abt-header{ position: absolute; top: 20px; left: 350px; font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; font-size: 28px; } .abt-line{ position: absolute; top: 70px; left: 350px; background-color:#fb6542; width: 50px; height: 3px; } .abt-body{ position: absolute; top: 100px; left: 350px; font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; font-size: 14px; line-height: 20px; } /* media query */ @media(max-width: 500px){ body{ background-color: white; background-repeat: no-repeat; background-size: cover; } #profile{ position: absolute; top: -50px; left: 100px; border-radius: 50%; width: 200px; height: 200px; } .abt-header{ position: absolute; top: 220px; left: 10px; font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; font-size: 28px; } .abt-line{ position: absolute; top: 270px; left: 10px; background-color:#fb6542; width: 50px; height: 3px; } .abt-body{ position: absolute; top: 300px; left: 10px; font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; font-size: 13px; line-height: 20px; } }
public/abt.css
body{ background-image: url('/img/optimizecode.jpg'); background-repeat: no-repeat; background-size: cover; background-color: rgb(0, 0, 0,.6); background-blend-mode: overlay; overflow-x: hidden; } ul li{ display: inline-block; list-style: none; text-decoration:none; } li a{ position: absolute; top: 16px; left: 60px; text-decoration: none; color: black; font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; font-size: 20px; padding: 10px 10px; } a{ border:none; text-decoration: none; } a:hover{ background-color: rgb(0, 0, 0,.1); text-decoration: none; color: black; } #arrow{ position: absolute; left: -30px; color: black; font-size: 15px; background-color: white; padding: 5px 5px; border: 1px solid black; border-radius: 50%; } .abt-layout{ position:absolute; top: 255px; left:0; background-color: white; width: 100%; height: 408px; } #profile{ position: absolute; top: -50px; left: 0; border-radius: 50%; width: 200px; height: 200px; } .abt-header{ position: absolute; top: 20px; left: 350px; font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; font-size: 28px; } .abt-line{ position: absolute; top: 70px; left: 350px; background-color:#fb6542; width: 50px; height: 3px; } .abt-body{ position: absolute; top: 100px; left: 350px; font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; font-size: 14px; line-height: 20px; } /* media query */ @media(max-width: 500px){ body{ background-color: white; background-repeat: no-repeat; background-size: cover; } #profile{ position: absolute; top: -50px; left: 100px; border-radius: 50%; width: 200px; height: 200px; } .abt-header{ position: absolute; top: 220px; left: 10px; font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; font-size: 28px; } .abt-line{ position: absolute; top: 270px; left: 10px; background-color:#fb6542; width: 50px; height: 3px; } .abt-body{ position: absolute; top: 300px; left: 10px; font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; font-size: 13px; line-height: 20px; } }
0.506591
0.085671
.multi-select-container { display: inline-block !important; position: relative!important; width: 100%!important; } .multi-select-menu { position: absolute!important; left: 0!important; top: 0.8em!important; z-index: 1!important; float: left!important; min-width: 100%!important; background: #fff!important; margin: 1em 0!important; border: 1px solid #aaa!important; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2)!important; display: none!important; } .multi-select-menuitem { display: block!important; font-size: 0.875em!important; padding: 0.6em 1em 0.6em 30px!important; white-space: nowrap!important; } .multi-select-menuitem + .multi-select-menuitem { padding-top: 0!important; } .multi-select-presets { border-bottom: 1px solid #ddd!important; } .multi-select-menuitem input { position: absolute!important; margin-top: 0.25em!important; margin-left: -20px!important; } .multi-select-button { display: inline-block!important; font-size: 0.875em!important; padding: 0.5em 0.6em!important; width: 100%!important; white-space: nowrap!important; overflow: hidden!important; text-overflow: ellipsis!important; vertical-align: -0.5em!important; background-color: #fff!important; border: 1px solid #aaa!important; border-radius: 4px!important; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2)!important; cursor: default!important; height: calc(2.25rem + 10px)!important; } .multi-select-button:after { content: ""!important; display: inline-block!important; width: 0 !important; height: 0 !important; border-style: solid !important; border-width: 0.4em 0.4em 0 0.4em !important; border-color: #999 transparent transparent transparent !important; margin-left: 0.4em !important; vertical-align: 0.1em !important; } .multi-select-container--open .multi-select-menu { display: block !important; } .multi-select-container--open .multi-select-button:after { border-width: 0 0.4em 0.4em 0.4em !important; border-color: transparent transparent #999 transparent !important; } .multi-select-container--positioned .multi-select-menu { /* Avoid border/padding on menu messing with JavaScript width calculation */ box-sizing: border-box !important; } .multi-select-container--positioned .multi-select-menu label { /* Allow labels to line wrap when menu is artificially narrowed */ white-space: normal !important; } @media only screen and (min-width: 800px) { .row .lft { padding-left:0px; } .row .rt { padding-right:0px; } }
public/dist/css/multiselect-checkbox.css
.multi-select-container { display: inline-block !important; position: relative!important; width: 100%!important; } .multi-select-menu { position: absolute!important; left: 0!important; top: 0.8em!important; z-index: 1!important; float: left!important; min-width: 100%!important; background: #fff!important; margin: 1em 0!important; border: 1px solid #aaa!important; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2)!important; display: none!important; } .multi-select-menuitem { display: block!important; font-size: 0.875em!important; padding: 0.6em 1em 0.6em 30px!important; white-space: nowrap!important; } .multi-select-menuitem + .multi-select-menuitem { padding-top: 0!important; } .multi-select-presets { border-bottom: 1px solid #ddd!important; } .multi-select-menuitem input { position: absolute!important; margin-top: 0.25em!important; margin-left: -20px!important; } .multi-select-button { display: inline-block!important; font-size: 0.875em!important; padding: 0.5em 0.6em!important; width: 100%!important; white-space: nowrap!important; overflow: hidden!important; text-overflow: ellipsis!important; vertical-align: -0.5em!important; background-color: #fff!important; border: 1px solid #aaa!important; border-radius: 4px!important; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2)!important; cursor: default!important; height: calc(2.25rem + 10px)!important; } .multi-select-button:after { content: ""!important; display: inline-block!important; width: 0 !important; height: 0 !important; border-style: solid !important; border-width: 0.4em 0.4em 0 0.4em !important; border-color: #999 transparent transparent transparent !important; margin-left: 0.4em !important; vertical-align: 0.1em !important; } .multi-select-container--open .multi-select-menu { display: block !important; } .multi-select-container--open .multi-select-button:after { border-width: 0 0.4em 0.4em 0.4em !important; border-color: transparent transparent #999 transparent !important; } .multi-select-container--positioned .multi-select-menu { /* Avoid border/padding on menu messing with JavaScript width calculation */ box-sizing: border-box !important; } .multi-select-container--positioned .multi-select-menu label { /* Allow labels to line wrap when menu is artificially narrowed */ white-space: normal !important; } @media only screen and (min-width: 800px) { .row .lft { padding-left:0px; } .row .rt { padding-right:0px; } }
0.298185
0.077973
.page-support-searchinput .placeholder { text-transform: uppercase; } .page-support-searchinput ::-webkit-input-placeholder { text-transform: uppercase; } .page-support-searchinput :-moz-placeholder { text-transform: uppercase; } .page-support-searchinput ::-moz-placeholder { text-transform: uppercase; } .page-support-searchinput :-ms-input-placeholder { text-transform: uppercase; } /*Intro*/ .page-support .background .page-support-intro.inverted { text-shadow: 0 1px 2em rgba(28, 43, 50, 1); } /*Form*/ .page-support-searchinput form { max-width: 30em; overflow: hidden; box-shadow: 0 2px 2px rgba(28, 43, 50, 0.5); } .page-support-searchinput form:hover { box-shadow: 0 2px 1em rgba(28, 43, 50, 1); } /*Input*/ .page-support-searchinput input[type="search"] { width: 100%; padding: 1em 1.4em; background-color: transparent; line-height: 1.6; } /*Submit button*/ .page-support-searchinput input[type="submit"] { display: block; width: 100%; font-size: 1.6em; height: 2.15em; line-height: 2.15em; font-family: 'icons'; color: #1c2b32; box-shadow: 0 0 4em rgba(28, 43, 50, 0.2); } .page-support-searchinput input[type="submit"]:hover, .page-support-searchinput input[type="submit"]:focus { box-shadow: 0 0 4em rgba(28, 43, 50, 0.3); } .page-support-searchinput input[type="submit"]:active, .page-support-searchinput input[type="submit"]:focus { outline: 0; } /*Fixed column widths*/ .page-support-searchinput .column.fixed { width: 4em; } .page-support-searchinput .column.fluid > .column-content { margin-right: 4em; } .page-support-searchinput .column.fluid.right > .column-content { margin-left: 4em; } /*Responses*/ .page-support-searchinput .form-response { overflow-x: hidden; overflow-y: auto; max-height: 15.2em; z-index: 20; position: absolute; width: 100%; top: 4em; left: 0; box-shadow: 0 2px 2px rgba(28, 43, 50, 0.1); } .page-support-searchinput .form-response .search-noresults, .page-support-searchinput .form-response a { padding: 0.5em 1em; } .page-support-searchinput .form-response a { border-top-width: 1px; border-color: #f0f1f2; } .page-support-searchinput .form-response a:hover, .page-support-searchinput .form-response a:focus { background-color: #f5f6f7; } .page-support-searchinput .form-response a:first-of-type { border-top-width: 0; } /*Menu*/ .page-support .menu-supporthome { max-width: 36em; margin-left: auto; margin-right: auto; } @media handheld, only screen and (min-width: 25em) { .page-support .menu-supporthome { padding-left: 5%; } } @media handheld, only screen and (min-width: 55em) { .page-support .menu-supporthome { max-width: 48em; } } @media handheld, only screen and (min-width: 70em) { .page-support .menu-supporthome { max-width: 60em; } } /*Positioning*/ .page-support ul.menu-supporthome > li { margin-bottom: 6%; } @media handheld, only screen and (min-width: 25em) { .page-support ul.menu-supporthome > li { float: left; clear: none; width: 50%; } .page-support ul.menu-supporthome > li:nth-child(2n+1) { clear: both; } } @media handheld, only screen and (min-width: 55em) { .page-support ul.menu-supporthome > li { width: 33%; } .page-support ul.menu-supporthome > li:nth-child(2n+1) { clear: none; } .page-support ul.menu-supporthome > li:nth-child(3n+1) { clear: both; } .page-support ul.menu-supporthome > li:nth-child(4n+1) { clear: none; } /*Tools*/ .page-support .menu-supporthome .tools { width: 100%; } .page-support .menu-supporthome .tools li { float: left; clear: none; width: 31%; padding-right: 2%; } } @media handheld, only screen and (min-width: 70em) { .page-support ul.menu-supporthome > li { width: 25%; } .page-support ul.menu-supporthome > li:nth-child(2n+1) { clear: none; } .page-support ul.menu-supporthome > li:nth-child(3n+1) { clear: none; } .page-support ul.menu-supporthome > li:nth-child(4n+1) { clear: both; } /*Tools*/ .page-support .menu-supporthome .tools { width: 75%; } .page-support .menu-supporthome .tools li { float: left; clear: none; padding-right: 0.6em; } }
theme/base/source/styles/templates/pages/notfound.css
.page-support-searchinput .placeholder { text-transform: uppercase; } .page-support-searchinput ::-webkit-input-placeholder { text-transform: uppercase; } .page-support-searchinput :-moz-placeholder { text-transform: uppercase; } .page-support-searchinput ::-moz-placeholder { text-transform: uppercase; } .page-support-searchinput :-ms-input-placeholder { text-transform: uppercase; } /*Intro*/ .page-support .background .page-support-intro.inverted { text-shadow: 0 1px 2em rgba(28, 43, 50, 1); } /*Form*/ .page-support-searchinput form { max-width: 30em; overflow: hidden; box-shadow: 0 2px 2px rgba(28, 43, 50, 0.5); } .page-support-searchinput form:hover { box-shadow: 0 2px 1em rgba(28, 43, 50, 1); } /*Input*/ .page-support-searchinput input[type="search"] { width: 100%; padding: 1em 1.4em; background-color: transparent; line-height: 1.6; } /*Submit button*/ .page-support-searchinput input[type="submit"] { display: block; width: 100%; font-size: 1.6em; height: 2.15em; line-height: 2.15em; font-family: 'icons'; color: #1c2b32; box-shadow: 0 0 4em rgba(28, 43, 50, 0.2); } .page-support-searchinput input[type="submit"]:hover, .page-support-searchinput input[type="submit"]:focus { box-shadow: 0 0 4em rgba(28, 43, 50, 0.3); } .page-support-searchinput input[type="submit"]:active, .page-support-searchinput input[type="submit"]:focus { outline: 0; } /*Fixed column widths*/ .page-support-searchinput .column.fixed { width: 4em; } .page-support-searchinput .column.fluid > .column-content { margin-right: 4em; } .page-support-searchinput .column.fluid.right > .column-content { margin-left: 4em; } /*Responses*/ .page-support-searchinput .form-response { overflow-x: hidden; overflow-y: auto; max-height: 15.2em; z-index: 20; position: absolute; width: 100%; top: 4em; left: 0; box-shadow: 0 2px 2px rgba(28, 43, 50, 0.1); } .page-support-searchinput .form-response .search-noresults, .page-support-searchinput .form-response a { padding: 0.5em 1em; } .page-support-searchinput .form-response a { border-top-width: 1px; border-color: #f0f1f2; } .page-support-searchinput .form-response a:hover, .page-support-searchinput .form-response a:focus { background-color: #f5f6f7; } .page-support-searchinput .form-response a:first-of-type { border-top-width: 0; } /*Menu*/ .page-support .menu-supporthome { max-width: 36em; margin-left: auto; margin-right: auto; } @media handheld, only screen and (min-width: 25em) { .page-support .menu-supporthome { padding-left: 5%; } } @media handheld, only screen and (min-width: 55em) { .page-support .menu-supporthome { max-width: 48em; } } @media handheld, only screen and (min-width: 70em) { .page-support .menu-supporthome { max-width: 60em; } } /*Positioning*/ .page-support ul.menu-supporthome > li { margin-bottom: 6%; } @media handheld, only screen and (min-width: 25em) { .page-support ul.menu-supporthome > li { float: left; clear: none; width: 50%; } .page-support ul.menu-supporthome > li:nth-child(2n+1) { clear: both; } } @media handheld, only screen and (min-width: 55em) { .page-support ul.menu-supporthome > li { width: 33%; } .page-support ul.menu-supporthome > li:nth-child(2n+1) { clear: none; } .page-support ul.menu-supporthome > li:nth-child(3n+1) { clear: both; } .page-support ul.menu-supporthome > li:nth-child(4n+1) { clear: none; } /*Tools*/ .page-support .menu-supporthome .tools { width: 100%; } .page-support .menu-supporthome .tools li { float: left; clear: none; width: 31%; padding-right: 2%; } } @media handheld, only screen and (min-width: 70em) { .page-support ul.menu-supporthome > li { width: 25%; } .page-support ul.menu-supporthome > li:nth-child(2n+1) { clear: none; } .page-support ul.menu-supporthome > li:nth-child(3n+1) { clear: none; } .page-support ul.menu-supporthome > li:nth-child(4n+1) { clear: both; } /*Tools*/ .page-support .menu-supporthome .tools { width: 75%; } .page-support .menu-supporthome .tools li { float: left; clear: none; padding-right: 0.6em; } }
0.278453
0.069447
/*็™ปๅฝ•็ญ‰็•Œ้ข่ƒŒๆ™ฏ*/ .login{ width:1208px; height:479px; margin:0 auto; padding-top:128px; position:relative; background:url(../images/login_bg.png) no-repeat; font-family:"ๅพฎ่ฝฏ้›…้ป‘"; font-size:12px; color:#6b6b6b; } /*็™ปๅฝ•็ญ‰็•Œ้ข่ƒŒๆ™ฏend*/ /*็”ณ่ฏทๅ…ฅ้ฉปstep1*/ #apply_icon5{position:absolute;left:210px;bottom:0;} /*ๅฐๅคดๅƒ*/ #login_icon1{position:absolute;left:494px;top:140px;} /*ๅฐ้”*/ #login_icon2{position:absolute;left:494px;top:170px;} /*็”จๆˆทๅๅŠๅฏ†็ ่พ“ๅ…ฅๆก†*/ #usename,#password{ background:#f2f4f4; border-radius:5px; height:16px; width:193px; position:absolute; left:519px; border:1px solid #f2f4f4; } #usename{top:140px;} #password{top:170px;} #password1{position:absolute;top:172px;_top:170px;left:724px;} /*่ฎฐไฝๅฏ†็ ใ€ๅฟ˜่ฎฐๅฏ†็ */ .password2{ position:absolute; top:170px; left:740px; font-family:"ๅพฎ่ฝฏ้›…้ป‘"; font-size:12px; color:#6b6b6b; } .password2 a{ text-decoration:none; font-family:"ๅพฎ่ฝฏ้›…้ป‘"; font-size:12px; color:#6b6b6b; } #verification_code{ background:#f2f4f4; border-top-left-radius:5px; border-bottom-left-radius:5px; height:16px; width:102px; position:absolute; left:519px; top:199px; border:1px solid #f2f4f4; } /*้ชŒ่ฏ็ ๅ›พ*/ #code{position:absolute;left:621px;top:199px;} /*็™ปๅฝ•*/ #login_icon3{ position:absolute; left:519px; top:230px; background:url(../images/login_icon3.png); width:195px; height:18px; border-radius:5px; border:0px; outline:medium; } /*ไฝฟ็”จqq็™ปๅฝ•ใ€ๆณจๅ†Œ*/ .login4{position:absolute;left:714px;top:230px;} .login4 a{ text-decoration:none; font-family:"ๅพฎ่ฝฏ้›…้ป‘"; font-size:12px; color:#6b6b6b; } /*็”ณ่ฏทๅ…ฅ้ฉปstep1-end*/ /*็”ณ่ฏทๅ…ฅ้ฉปstep2*/ .lline{width:600px;height:18px;margin-top:12px;margin-left:307px;} .lline2 input,.lline3 input,.lline4 input{ border-radius:5px; border:1px solid #f2f4f4; background:#f2f4f4; width:218px; height:16px; margin-left:13px;} .lline1{padding-left:149px;} .lline1 span{float:left;} .lline1 input{margin:2px 0 0 13px;_margin:0 0 0 13px;float:left;} .lline2,.lline3{padding-left:173px;} .lline4{padding-left:137px;} .lline5{padding-left:7px;} .lline5 span,.lline5 input,.lline5 label{float:left;} .lline5 a{text-decoration:none;color:#6b6b6b;} .lline5 input{margin-left:17px;} #agree{margin-right:10px;margin-top:2px;_margin-top:0px;} #auth{ border-radius:5px; border:0px; background:url(../images/login/login_pic.png) no-repeat 0 -381px; width:220px; height:18px; outline:medium; _margin-left:-62px;} /*็”ณ่ฏทๅ…ฅ้ฉปstep2-end*/ /*็”ณ่ฏทๅ…ฅ้ฉปstep3*/ .createshop{ width:1208px; height:2028px; margin:0 auto; position:relative; background:url(../images/cs_bg.png); } .createshop span{font-family:"ๅพฎ่ฝฏ้›…้ป‘";font-size:12px;color:#6b6b6b;letter-spacing:1px;} #service_type{position:absolute;top:113px;left:341px;} #tp{position:absolute;left:414px;top:113px;} #shop_name span{position:absolute;top:142px;left:341px;} #shop_name input{ position:absolute; top:140px; left:414px; border-radius:5px; border:1px solid #f2f4f4; background:#f2f4f4; width:218px; height:16px; } #introduction span{position:absolute;top:172px;left:341px;} #introduction textarea{ position:absolute; top:170px; left:414px; border-radius:5px; border:1px solid #f2f4f4; background:#f2f4f4; width:558px; height:100px; } #address{position:absolute;top:289px;left:355px;width:480px;} #address input{ border-radius:5px; border:1px solid #f2f4f4; background:#f2f4f4; width:58px; height:16px; margin:0 4px; } #add1{position:absolute;top:0px;left:50px;margin:0 4px;} #add2{position:absolute;top:0px;left:130px;margin:0 4px;} #add3{position:absolute;top:0px;left:210px;margin:0 4px;} #add4{position:absolute;top:0px;left:313px;margin:0 4px;} #add4 input{width:120px;} #specific_add span{position:absolute;top:321px;left:343px;} #specific_add input{ position:absolute; top:319px; left:413px; border-radius:5px; border:1px solid #f2f4f4; background:#f2f4f4; } #map span{position:absolute;top:349px;left:252px;} #map input{ position:absolute; top:349px; left:414px; border-radius:5px; border:1px solid #f2f4f4; background:#f2f4f4; width:558px; height:160px; } #upload{position:absolute;top:529px;left:300px;} #upload img{position:absolute;top:0px;left:115px;} #telephone span{position:absolute;top:650px;left:354px} #telephone input{ position:absolute; top:650px; left:414px; border-radius:5px; border:1px solid #f2f4f4; background:#f2f4f4; width:158px; height:16px; } #mobilephone span{position:absolute;top:680px;left:354px;} #mobilephone input{ position:absolute; top:680px; left:414px; border-radius:5px; border:1px solid #f2f4f4; background:#f2f4f4; width:158px; height:16px; } #verify span{position:absolute;top:710px;left:354px;} #verify input{ position:absolute; top:710px; left:414px; border-top-left-radius:5px; border-bottom-left-radius:5px; border:1px solid #f2f4f4; background:#f2f4f4; width:80px; height:16px; } #verify img{position:absolute;top:710px;left:495px;} #submit{ position:absolute; top:740px; left:414px; background:url(../images/submit.png); width:160px; height:18px; border:0px; } /*็”ณ่ฏทๅ…ฅ้ฉปstep3-end*/ /*็”ณ่ฏทๅ…ฅ้ฉปstep4*/ .pay img{position:absolute;top:140px;left:494px;} #pay{ position:absolute; top:170px; left:494px; width:105px; height:18px; border:0px; background:url(../images/pay.png); } #no-pay{ position:absolute; top:170px; left:609px; width:105px; height:18px; border:0px; background:url(../images/no-pay.png); } /*็”ณ่ฏทๅ…ฅ้ฉปstep4-end*/
src/main/webapp/static/style/apply.css
/*็™ปๅฝ•็ญ‰็•Œ้ข่ƒŒๆ™ฏ*/ .login{ width:1208px; height:479px; margin:0 auto; padding-top:128px; position:relative; background:url(../images/login_bg.png) no-repeat; font-family:"ๅพฎ่ฝฏ้›…้ป‘"; font-size:12px; color:#6b6b6b; } /*็™ปๅฝ•็ญ‰็•Œ้ข่ƒŒๆ™ฏend*/ /*็”ณ่ฏทๅ…ฅ้ฉปstep1*/ #apply_icon5{position:absolute;left:210px;bottom:0;} /*ๅฐๅคดๅƒ*/ #login_icon1{position:absolute;left:494px;top:140px;} /*ๅฐ้”*/ #login_icon2{position:absolute;left:494px;top:170px;} /*็”จๆˆทๅๅŠๅฏ†็ ่พ“ๅ…ฅๆก†*/ #usename,#password{ background:#f2f4f4; border-radius:5px; height:16px; width:193px; position:absolute; left:519px; border:1px solid #f2f4f4; } #usename{top:140px;} #password{top:170px;} #password1{position:absolute;top:172px;_top:170px;left:724px;} /*่ฎฐไฝๅฏ†็ ใ€ๅฟ˜่ฎฐๅฏ†็ */ .password2{ position:absolute; top:170px; left:740px; font-family:"ๅพฎ่ฝฏ้›…้ป‘"; font-size:12px; color:#6b6b6b; } .password2 a{ text-decoration:none; font-family:"ๅพฎ่ฝฏ้›…้ป‘"; font-size:12px; color:#6b6b6b; } #verification_code{ background:#f2f4f4; border-top-left-radius:5px; border-bottom-left-radius:5px; height:16px; width:102px; position:absolute; left:519px; top:199px; border:1px solid #f2f4f4; } /*้ชŒ่ฏ็ ๅ›พ*/ #code{position:absolute;left:621px;top:199px;} /*็™ปๅฝ•*/ #login_icon3{ position:absolute; left:519px; top:230px; background:url(../images/login_icon3.png); width:195px; height:18px; border-radius:5px; border:0px; outline:medium; } /*ไฝฟ็”จqq็™ปๅฝ•ใ€ๆณจๅ†Œ*/ .login4{position:absolute;left:714px;top:230px;} .login4 a{ text-decoration:none; font-family:"ๅพฎ่ฝฏ้›…้ป‘"; font-size:12px; color:#6b6b6b; } /*็”ณ่ฏทๅ…ฅ้ฉปstep1-end*/ /*็”ณ่ฏทๅ…ฅ้ฉปstep2*/ .lline{width:600px;height:18px;margin-top:12px;margin-left:307px;} .lline2 input,.lline3 input,.lline4 input{ border-radius:5px; border:1px solid #f2f4f4; background:#f2f4f4; width:218px; height:16px; margin-left:13px;} .lline1{padding-left:149px;} .lline1 span{float:left;} .lline1 input{margin:2px 0 0 13px;_margin:0 0 0 13px;float:left;} .lline2,.lline3{padding-left:173px;} .lline4{padding-left:137px;} .lline5{padding-left:7px;} .lline5 span,.lline5 input,.lline5 label{float:left;} .lline5 a{text-decoration:none;color:#6b6b6b;} .lline5 input{margin-left:17px;} #agree{margin-right:10px;margin-top:2px;_margin-top:0px;} #auth{ border-radius:5px; border:0px; background:url(../images/login/login_pic.png) no-repeat 0 -381px; width:220px; height:18px; outline:medium; _margin-left:-62px;} /*็”ณ่ฏทๅ…ฅ้ฉปstep2-end*/ /*็”ณ่ฏทๅ…ฅ้ฉปstep3*/ .createshop{ width:1208px; height:2028px; margin:0 auto; position:relative; background:url(../images/cs_bg.png); } .createshop span{font-family:"ๅพฎ่ฝฏ้›…้ป‘";font-size:12px;color:#6b6b6b;letter-spacing:1px;} #service_type{position:absolute;top:113px;left:341px;} #tp{position:absolute;left:414px;top:113px;} #shop_name span{position:absolute;top:142px;left:341px;} #shop_name input{ position:absolute; top:140px; left:414px; border-radius:5px; border:1px solid #f2f4f4; background:#f2f4f4; width:218px; height:16px; } #introduction span{position:absolute;top:172px;left:341px;} #introduction textarea{ position:absolute; top:170px; left:414px; border-radius:5px; border:1px solid #f2f4f4; background:#f2f4f4; width:558px; height:100px; } #address{position:absolute;top:289px;left:355px;width:480px;} #address input{ border-radius:5px; border:1px solid #f2f4f4; background:#f2f4f4; width:58px; height:16px; margin:0 4px; } #add1{position:absolute;top:0px;left:50px;margin:0 4px;} #add2{position:absolute;top:0px;left:130px;margin:0 4px;} #add3{position:absolute;top:0px;left:210px;margin:0 4px;} #add4{position:absolute;top:0px;left:313px;margin:0 4px;} #add4 input{width:120px;} #specific_add span{position:absolute;top:321px;left:343px;} #specific_add input{ position:absolute; top:319px; left:413px; border-radius:5px; border:1px solid #f2f4f4; background:#f2f4f4; } #map span{position:absolute;top:349px;left:252px;} #map input{ position:absolute; top:349px; left:414px; border-radius:5px; border:1px solid #f2f4f4; background:#f2f4f4; width:558px; height:160px; } #upload{position:absolute;top:529px;left:300px;} #upload img{position:absolute;top:0px;left:115px;} #telephone span{position:absolute;top:650px;left:354px} #telephone input{ position:absolute; top:650px; left:414px; border-radius:5px; border:1px solid #f2f4f4; background:#f2f4f4; width:158px; height:16px; } #mobilephone span{position:absolute;top:680px;left:354px;} #mobilephone input{ position:absolute; top:680px; left:414px; border-radius:5px; border:1px solid #f2f4f4; background:#f2f4f4; width:158px; height:16px; } #verify span{position:absolute;top:710px;left:354px;} #verify input{ position:absolute; top:710px; left:414px; border-top-left-radius:5px; border-bottom-left-radius:5px; border:1px solid #f2f4f4; background:#f2f4f4; width:80px; height:16px; } #verify img{position:absolute;top:710px;left:495px;} #submit{ position:absolute; top:740px; left:414px; background:url(../images/submit.png); width:160px; height:18px; border:0px; } /*็”ณ่ฏทๅ…ฅ้ฉปstep3-end*/ /*็”ณ่ฏทๅ…ฅ้ฉปstep4*/ .pay img{position:absolute;top:140px;left:494px;} #pay{ position:absolute; top:170px; left:494px; width:105px; height:18px; border:0px; background:url(../images/pay.png); } #no-pay{ position:absolute; top:170px; left:609px; width:105px; height:18px; border:0px; background:url(../images/no-pay.png); } /*็”ณ่ฏทๅ…ฅ้ฉปstep4-end*/
0.169956
0.041715
body,html{ font-family: "Lucida Grande"; margin: 0; padding: 0; } .heading{ padding-top:60px; padding-bottom:30px; color:#5f5d60; } /* nav */ nav{ height: 80px; margin: 0; } .navbar-light .navbar-nav .nav-link.active{ color:#935F79; } .navbar-light .navbar-nav .nav-link{ color:#BD93BD; } .navbar-light .navbar-nav .active >.nav-link{ color: #935F79; } .navbar-light .navbar-nav .nav-link:hover{ color:#935F79; } .navbar-light .navbar-nav .nav-link:focus{ color: #935F79; } .navbar-expand-lg .navbar-nav .nav-link{ padding: 20px; } /* jumbo */ .my-jumbo{ background-color: #F3EEEC; padding: 60px 45px 15px 45px; } .my-jumbo img{ padding-left: 30px; padding-bottom: 10px; margin-bottom: 20px; } .my-jumbo-text{ align-self: center; text-align: center; } .my-jumbo-text h1{ color: black; opacity: 0.7; font-size: 3.5vw; letter-spacing:5px; font-weight: bold; margin-bottom: 25px; } .dot-1{ color:#fec601; } .dot-2{ color: #F05365; } .my-jumbo-text p{ opacity: 0.7; margin-bottom: 10px; } .subscribe{ margin-top: 30px; margin-bottom: 30px; display: flex; flex-flow: row wrap; justify-content: center; align-items: center; } input{ height: 45px; width: 300px; border:1px solid #fec601; margin-right: 10px; margin-bottom: 20px; } .btn-subscribe{ background-color: #F05365; color: white; padding: 12px 24px; border-radius: 4px; margin-bottom: 20px; } .btn-subscribe:hover{ text-decoration: none; color: white; background-color: #af3946; } /* resources */ .latest-resources { padding: 30px; text-align: center; background-color: #fbfbfb; } .latest-resources h2{ margin-bottom: 40px; } .learn-more { display: flex; justify-content: flex-end; } .learn-more a{ color: #935F79; } /* message */ .message{ padding-top: 50px; padding-bottom:100px; text-align:center; } .my-button{ padding:12px 24px; color:white; opacity:0.8; border-radius:4px; background-color: #F05365; padding:15px 40px; cursor: pointer; box-shadow: 0 7px #f2374a; } .message a:hover{ text-decoration: none; color: white; } .my-button:active{ box-shadow:none; position:relative; top:7px; } /* footer */ footer{ padding:10px; background-color: #F2EDEB; } footer img{ width: 80px; } footer p{ color: #b3aeb5; font-size:12px; margin: 0; padding:5px; }
css/design.css
body,html{ font-family: "Lucida Grande"; margin: 0; padding: 0; } .heading{ padding-top:60px; padding-bottom:30px; color:#5f5d60; } /* nav */ nav{ height: 80px; margin: 0; } .navbar-light .navbar-nav .nav-link.active{ color:#935F79; } .navbar-light .navbar-nav .nav-link{ color:#BD93BD; } .navbar-light .navbar-nav .active >.nav-link{ color: #935F79; } .navbar-light .navbar-nav .nav-link:hover{ color:#935F79; } .navbar-light .navbar-nav .nav-link:focus{ color: #935F79; } .navbar-expand-lg .navbar-nav .nav-link{ padding: 20px; } /* jumbo */ .my-jumbo{ background-color: #F3EEEC; padding: 60px 45px 15px 45px; } .my-jumbo img{ padding-left: 30px; padding-bottom: 10px; margin-bottom: 20px; } .my-jumbo-text{ align-self: center; text-align: center; } .my-jumbo-text h1{ color: black; opacity: 0.7; font-size: 3.5vw; letter-spacing:5px; font-weight: bold; margin-bottom: 25px; } .dot-1{ color:#fec601; } .dot-2{ color: #F05365; } .my-jumbo-text p{ opacity: 0.7; margin-bottom: 10px; } .subscribe{ margin-top: 30px; margin-bottom: 30px; display: flex; flex-flow: row wrap; justify-content: center; align-items: center; } input{ height: 45px; width: 300px; border:1px solid #fec601; margin-right: 10px; margin-bottom: 20px; } .btn-subscribe{ background-color: #F05365; color: white; padding: 12px 24px; border-radius: 4px; margin-bottom: 20px; } .btn-subscribe:hover{ text-decoration: none; color: white; background-color: #af3946; } /* resources */ .latest-resources { padding: 30px; text-align: center; background-color: #fbfbfb; } .latest-resources h2{ margin-bottom: 40px; } .learn-more { display: flex; justify-content: flex-end; } .learn-more a{ color: #935F79; } /* message */ .message{ padding-top: 50px; padding-bottom:100px; text-align:center; } .my-button{ padding:12px 24px; color:white; opacity:0.8; border-radius:4px; background-color: #F05365; padding:15px 40px; cursor: pointer; box-shadow: 0 7px #f2374a; } .message a:hover{ text-decoration: none; color: white; } .my-button:active{ box-shadow:none; position:relative; top:7px; } /* footer */ footer{ padding:10px; background-color: #F2EDEB; } footer img{ width: 80px; } footer p{ color: #b3aeb5; font-size:12px; margin: 0; padding:5px; }
0.192881
0.04679
.language-switcher { display: flex; text-align: center; justify-content: center; align-items: center; padding: 0 12px; } .language-switcher__ru { display: flex; text-align: center; justify-content: center; align-items: center; padding: 0 5px; } .language-switcher__ru > img { border-radius: 6px; } .language-switcher__ru:hover { cursor: pointer; } .language-switcher__ru:active { transform: scale(0.90); } .language-switcher__en { display: flex; text-align: center; justify-content: center; align-items: center; padding: 0 5px; } .language-switcher__en > img { border-radius: 6px; } .language-switcher__en:hover { cursor: pointer; } .language-switcher__en:active { transform: scale(0.90); } .active-language-switcher { font-weight: 600; color: #1877F2; padding-left: 5px; } .not-active-language-switcher { font-weight: 600; color: gray; padding-left: 5px; } .language-switcher__switcher { position: relative; display: inline-block; width: 52px; height: 28px; } .language-switcher__switcher > input { opacity: 0; width: 0; height: 0; } .language-switcher__switcher input:checked + .language-switcher__slider-round { background-color: #1877F2; } .language-switcher__switcher input:focus + .language-switcher__slider-round { box-shadow: 0 0 1px #1877F2; } .language-switcher__switcher input:checked + .language-switcher__slider-round:before { -webkit-transform: translateX(24px); -ms-transform: translateX(24px); transform: translateX(24px); } .language-switcher__slider-round { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; -webkit-transition: .4s; transition: .4s; } .language-switcher__slider-round:before { position: absolute; content: ""; height: 26px; width: 26px; left: 1px; bottom: 1px; background-color: white; -webkit-transition: .4s; transition: .4s; } .language-switcher__slider-round { border-radius: 34px; } .language-switcher__slider-round:before { border-radius: 50%; }
src/containers/Header/components/LanguageSwitcher/LanguageSwitcher.css
.language-switcher { display: flex; text-align: center; justify-content: center; align-items: center; padding: 0 12px; } .language-switcher__ru { display: flex; text-align: center; justify-content: center; align-items: center; padding: 0 5px; } .language-switcher__ru > img { border-radius: 6px; } .language-switcher__ru:hover { cursor: pointer; } .language-switcher__ru:active { transform: scale(0.90); } .language-switcher__en { display: flex; text-align: center; justify-content: center; align-items: center; padding: 0 5px; } .language-switcher__en > img { border-radius: 6px; } .language-switcher__en:hover { cursor: pointer; } .language-switcher__en:active { transform: scale(0.90); } .active-language-switcher { font-weight: 600; color: #1877F2; padding-left: 5px; } .not-active-language-switcher { font-weight: 600; color: gray; padding-left: 5px; } .language-switcher__switcher { position: relative; display: inline-block; width: 52px; height: 28px; } .language-switcher__switcher > input { opacity: 0; width: 0; height: 0; } .language-switcher__switcher input:checked + .language-switcher__slider-round { background-color: #1877F2; } .language-switcher__switcher input:focus + .language-switcher__slider-round { box-shadow: 0 0 1px #1877F2; } .language-switcher__switcher input:checked + .language-switcher__slider-round:before { -webkit-transform: translateX(24px); -ms-transform: translateX(24px); transform: translateX(24px); } .language-switcher__slider-round { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; -webkit-transition: .4s; transition: .4s; } .language-switcher__slider-round:before { position: absolute; content: ""; height: 26px; width: 26px; left: 1px; bottom: 1px; background-color: white; -webkit-transition: .4s; transition: .4s; } .language-switcher__slider-round { border-radius: 34px; } .language-switcher__slider-round:before { border-radius: 50%; }
0.557725
0.097476
h1, h2, h3, h4, h5, h6 { font-family: inherit; } h1, h2, h3 { margin-top: 10px; } .panel-body { padding: 2px 10px 10px; } body { position: relative; } a:hover, a:active, a:focus { outline: 0; text-decoration: none !important; } .row { margin: 0px 0px 0px -15px; } /* Header */ .header { width: 100%; padding: 10px; background: #4e5d6d; color: #FFF; text-shadow: -1px 1px 0px rgba(0, 0, 0, 0.5); } .header a { color: inherit; } .header a:hover { color: rgba(255, 255, 255, 0.8); text-decoration: none; } .header .sitename { font-size: 26px; margin: 4px 0 -3px 8px; display: inline-block; } .header .sitename .icon { font-size: 20px; } .right-link { display: inline-block; float: right; margin: 3px 3px; } .nav-box { font-size: 14px; margin: -2px 5px; background: rgba(0, 0, 0, 0.25); padding: 8px 11px; border-radius: 4px; } .nav-box .glyphicon { top: 1px; font-size: 12px; } .nav-box:hover .glyphicon { color: #5277ff; } #error-bar { margin-top: 10px; /* Hidden by default*/ display: none; } /*------------------ -------------------- ------------------*/ html{ /* background: url(../img/background_2.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; */ } .jumbotron{ min-height: 768px; background: url("../img/background_2.jpg") no-repeat center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; margin-bottom: 0px; } body{ background-color: none; background: none; } header{ background-color: none; background: none; } .container{ background-color: none; background: none; margin-top: 20px; } h1, h2, h3, p, pre, blockquote, a, a:hover{ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-style: normal; font-variant: normal; font-weight: 200; line-height: auto; color: #fff; } h1 { font-size: 4em; } h3 { font-size: 1.8em; } p { font-size: 1.2em; } blockquote { font-size: 1.2em; } pre { font-size: 1.2em; } a { font-size: 0.8em; text-decoration: underline; } a:hover { color: #ff6bd3; } a:active { color: #fff; } .front-p{ width: 550px; height: auto; margin-right: auto; margin-left: auto; margin-top: 5%; } .knappar{ width:600px; height: 100px; margin-left: auto; margin-right: auto; text-align: center; margin-top: 5%; color: #fff; } .btn { font-family: Arial; background-color: transparent; background-repeat:no-repeat; font-size: 16px; padding: 10px 20px 10px 20px; border: solid #fff 2px; text-decoration: none; color: #fff; } .btn:hover { background: #fff; text-decoration: none; } .col-md-8{ text-align: center; min-width: 500px; min-height: 400px; height: auto; width: auto; margin-right: auto; margin-left: auto; } .logo-img{ width: 60%; height: auto; } .col-md-6{ text-align: center; } .widewrapper { width:100%; } .widewrapper > img { width:100%; } .row{ width: 80%; min-height: 600px; height: auto; margin-right: auto; margin-left: auto; text-align: center; } .row h1,.row h3,.row p,.row a{ color: #000; } .img-circle{ width: 80%; height: 80%; } .col-md-6 .btn #left{ margin-top:20%; } @media all and (max-width: 768px){ .col-md-8{ text-align: left; min-width: auto; min-height: auto; height: auto; width: auto; margin-right: auto; margin-left: auto; padding: 10px; } .btn { margin-left: auto; margin-right: auto; font-family: Arial; background-color: transparent; background-repeat:no-repeat; font-size: 16px; padding: 10px 20px 10px 20px; border: solid #fff 2px; text-decoration: none; color: #fff; } .btn:hover, a .btn:hover { background: #fff; color: #333; text-decoration: none; } .col-md-6 .btn { margin-top:20px; margin-bottom: 40px; } h1 { font-size: 1.6em; } h3 { font-size: 1.4em; } p { font-size: 1em; } blockquote { font-size: 1em; } pre { font-size: 1em; } a { font-size: 1em; } a:hover { font-size: 1em; } } @media only screen and (min-device-width : 320px) and (max-device-width : 568px) { h1 { font-size: 1.6em; } h3 { font-size: 1.4em; } p { font-size: 1em; } blockquote { font-size: 1em; } pre { font-size: 1em; } a { font-size: 1em; } a:hover { font-size: 1em; }} /* Submissions page */ #submissions-wrapper { background: none repeat scroll 0% 0% rgba(255, 255, 255, 0.24); width: 100%; border-radius: 5px; box-shadow: 0px 0px 14px rgba(33, 33, 33, 0.22); position: relative; } #submissions-wrapper h1 { color: #fff; padding: 25px 0px 0 25px; margin-bottom: 5px; } #submissions-wrapper h3 { color: rgba(255, 255, 255, 0.62); font-size: 20px; padding: 0px 28px; margin: 0; } .submissions { list-style: none; padding: 25px; } .submissions .photo { position: relative; } .submissions .photo img { width: 100%; } .track-details { position: absolute; text-align: right; bottom: 30px; right: 0px; } .track-name { font-size: 28px; padding: 8px 15px; color: #FFF; } .track-artist { font-size: 22px; padding: 4px 15px; color: rgba(255, 255, 255, 0.5); } .track-artist .glyphicon { font-size: 15px; } .player-controls { position: absolute; left: 50px; bottom: 50px; z-index: 20; } .player-controls .glyphicon { color: rgba(255, 255, 255, 0.9); font-size: 45px; text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.9); opacity: 0.5; cursor: pointer; } .player-controls .glyphicon:hover { opacity: 1; text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.4); } .play-on-spotify { display: block; text-decoration: none; opacity: 0.8; margin-top: 10px; } .play-on-spotify:hover { opacity: 1; color: #fff; } .track-overlay { position: absolute; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 25%) repeat scroll 0% 0% transparent; /* W3C */ } .photo_panel { width: 100%; } .photo_panel .submissions { padding: 0; margin: 0; } .photo_panel .photo { z-index: 20; overflow: hidden; float: left; width: 33.33333%; } .photo_panel li .track-details .glyphicon { display: none; } .photo_panel li .track-name { font-size: 15px; background: none; } .photo_panel li .track-artist { font-size: 12px !important; background: none; } .photo_panel li .player-controls { left: 15px; bottom: 20px; } .photo_panel li .track-overlay { background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 50%) repeat scroll 0% 0% transparent } .photo_panel li:hover .track-overlay { background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 180%) repeat scroll 0% 0% transparent } .photo_panel li .track-details, .photo_panel li .player-controls { opacity: 0; } .photo_panel li:hover .track-details, .photo_panel li:hover .player-controls { opacity: 0.8 !important; } /**---**/ .fileUpload { position: relative; overflow: hidden; margin: 10px; } .fileUpload input.upload { position: absolute; top: 0; right: 0; margin: 0; padding: 0; font-size: 20px; cursor: pointer; opacity: 0; filter: alpha(opacity=0); } .btn-submit-right { position: absolute; top: 45px; right: 30px; }
static/css/main.css
h1, h2, h3, h4, h5, h6 { font-family: inherit; } h1, h2, h3 { margin-top: 10px; } .panel-body { padding: 2px 10px 10px; } body { position: relative; } a:hover, a:active, a:focus { outline: 0; text-decoration: none !important; } .row { margin: 0px 0px 0px -15px; } /* Header */ .header { width: 100%; padding: 10px; background: #4e5d6d; color: #FFF; text-shadow: -1px 1px 0px rgba(0, 0, 0, 0.5); } .header a { color: inherit; } .header a:hover { color: rgba(255, 255, 255, 0.8); text-decoration: none; } .header .sitename { font-size: 26px; margin: 4px 0 -3px 8px; display: inline-block; } .header .sitename .icon { font-size: 20px; } .right-link { display: inline-block; float: right; margin: 3px 3px; } .nav-box { font-size: 14px; margin: -2px 5px; background: rgba(0, 0, 0, 0.25); padding: 8px 11px; border-radius: 4px; } .nav-box .glyphicon { top: 1px; font-size: 12px; } .nav-box:hover .glyphicon { color: #5277ff; } #error-bar { margin-top: 10px; /* Hidden by default*/ display: none; } /*------------------ -------------------- ------------------*/ html{ /* background: url(../img/background_2.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; */ } .jumbotron{ min-height: 768px; background: url("../img/background_2.jpg") no-repeat center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; margin-bottom: 0px; } body{ background-color: none; background: none; } header{ background-color: none; background: none; } .container{ background-color: none; background: none; margin-top: 20px; } h1, h2, h3, p, pre, blockquote, a, a:hover{ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-style: normal; font-variant: normal; font-weight: 200; line-height: auto; color: #fff; } h1 { font-size: 4em; } h3 { font-size: 1.8em; } p { font-size: 1.2em; } blockquote { font-size: 1.2em; } pre { font-size: 1.2em; } a { font-size: 0.8em; text-decoration: underline; } a:hover { color: #ff6bd3; } a:active { color: #fff; } .front-p{ width: 550px; height: auto; margin-right: auto; margin-left: auto; margin-top: 5%; } .knappar{ width:600px; height: 100px; margin-left: auto; margin-right: auto; text-align: center; margin-top: 5%; color: #fff; } .btn { font-family: Arial; background-color: transparent; background-repeat:no-repeat; font-size: 16px; padding: 10px 20px 10px 20px; border: solid #fff 2px; text-decoration: none; color: #fff; } .btn:hover { background: #fff; text-decoration: none; } .col-md-8{ text-align: center; min-width: 500px; min-height: 400px; height: auto; width: auto; margin-right: auto; margin-left: auto; } .logo-img{ width: 60%; height: auto; } .col-md-6{ text-align: center; } .widewrapper { width:100%; } .widewrapper > img { width:100%; } .row{ width: 80%; min-height: 600px; height: auto; margin-right: auto; margin-left: auto; text-align: center; } .row h1,.row h3,.row p,.row a{ color: #000; } .img-circle{ width: 80%; height: 80%; } .col-md-6 .btn #left{ margin-top:20%; } @media all and (max-width: 768px){ .col-md-8{ text-align: left; min-width: auto; min-height: auto; height: auto; width: auto; margin-right: auto; margin-left: auto; padding: 10px; } .btn { margin-left: auto; margin-right: auto; font-family: Arial; background-color: transparent; background-repeat:no-repeat; font-size: 16px; padding: 10px 20px 10px 20px; border: solid #fff 2px; text-decoration: none; color: #fff; } .btn:hover, a .btn:hover { background: #fff; color: #333; text-decoration: none; } .col-md-6 .btn { margin-top:20px; margin-bottom: 40px; } h1 { font-size: 1.6em; } h3 { font-size: 1.4em; } p { font-size: 1em; } blockquote { font-size: 1em; } pre { font-size: 1em; } a { font-size: 1em; } a:hover { font-size: 1em; } } @media only screen and (min-device-width : 320px) and (max-device-width : 568px) { h1 { font-size: 1.6em; } h3 { font-size: 1.4em; } p { font-size: 1em; } blockquote { font-size: 1em; } pre { font-size: 1em; } a { font-size: 1em; } a:hover { font-size: 1em; }} /* Submissions page */ #submissions-wrapper { background: none repeat scroll 0% 0% rgba(255, 255, 255, 0.24); width: 100%; border-radius: 5px; box-shadow: 0px 0px 14px rgba(33, 33, 33, 0.22); position: relative; } #submissions-wrapper h1 { color: #fff; padding: 25px 0px 0 25px; margin-bottom: 5px; } #submissions-wrapper h3 { color: rgba(255, 255, 255, 0.62); font-size: 20px; padding: 0px 28px; margin: 0; } .submissions { list-style: none; padding: 25px; } .submissions .photo { position: relative; } .submissions .photo img { width: 100%; } .track-details { position: absolute; text-align: right; bottom: 30px; right: 0px; } .track-name { font-size: 28px; padding: 8px 15px; color: #FFF; } .track-artist { font-size: 22px; padding: 4px 15px; color: rgba(255, 255, 255, 0.5); } .track-artist .glyphicon { font-size: 15px; } .player-controls { position: absolute; left: 50px; bottom: 50px; z-index: 20; } .player-controls .glyphicon { color: rgba(255, 255, 255, 0.9); font-size: 45px; text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.9); opacity: 0.5; cursor: pointer; } .player-controls .glyphicon:hover { opacity: 1; text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.4); } .play-on-spotify { display: block; text-decoration: none; opacity: 0.8; margin-top: 10px; } .play-on-spotify:hover { opacity: 1; color: #fff; } .track-overlay { position: absolute; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 25%) repeat scroll 0% 0% transparent; /* W3C */ } .photo_panel { width: 100%; } .photo_panel .submissions { padding: 0; margin: 0; } .photo_panel .photo { z-index: 20; overflow: hidden; float: left; width: 33.33333%; } .photo_panel li .track-details .glyphicon { display: none; } .photo_panel li .track-name { font-size: 15px; background: none; } .photo_panel li .track-artist { font-size: 12px !important; background: none; } .photo_panel li .player-controls { left: 15px; bottom: 20px; } .photo_panel li .track-overlay { background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 50%) repeat scroll 0% 0% transparent } .photo_panel li:hover .track-overlay { background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 180%) repeat scroll 0% 0% transparent } .photo_panel li .track-details, .photo_panel li .player-controls { opacity: 0; } .photo_panel li:hover .track-details, .photo_panel li:hover .player-controls { opacity: 0.8 !important; } /**---**/ .fileUpload { position: relative; overflow: hidden; margin: 10px; } .fileUpload input.upload { position: absolute; top: 0; right: 0; margin: 0; padding: 0; font-size: 20px; cursor: pointer; opacity: 0; filter: alpha(opacity=0); } .btn-submit-right { position: absolute; top: 45px; right: 30px; }
0.220762
0.091382
.UFIComment[patrolled] .lfloat { position: relative; } .patroll-icon { /* $w: 14; $h: 20; */ position: absolute; left: -16px; /* -$w-2 */ bottom: 50%; margin-bottom: -10px; /* -$h/2 */ width: 14px; /* $w */ height: 20px; /* $h */ background: white; z-index: 1; cursor: pointer; box-shadow: 0 1px 4px rgba(0,0,0,0.5); transition-duration: 1.5s; opacity: 1; transform: translate3d(0,0,0); } .patroll-icon.blank { /* $w: 12; $h: 12; */ left: -15px; /* -$w-2 */ margin-bottom: -6px; /* -$h/2 */ width: 12px; /* $w */ height: 12px; /* $h */ box-shadow: 0 1px 4px rgba(0,0,0,0.4); } .patroll-icon.unknown { /* $w: 10; $h: 10; */ left: -15px; /* -$w-2 */ margin-bottom: -5px; /* -$h/2 */ width: 10px; /* $w */ height: 10px; /* $h */ background-color: #e9ebed; box-shadow: none; border: 1px solid #dddfe2; box-shadow: 0 1px 4px rgba(0,0,0,0.15); } .patroll-icon.blank *, .patroll-icon.unknown * { display: none; } .patroll-icon.inicializing { opacity: 0; transform: translate3d(0,0,0) scale(0.001); } .patroll-icon.bounceIn { animation-name: bounceIn; animation-duration: 1s; } .patroll-icon [class^="level"] { box-sizing: border-box; position: absolute; left: 1px; right: 1px; height: 3px; background-color: #DDD; text-align: right; } .patroll-icon [class^="level"] span { position: absolute; right: 0; top: 0; height: 3px; width: 0; transition-duration: 0.5s; } .patroll-icon .level-1 { top: 1px; } .patroll-icon .level-1 span { background-color: #FFAD00; } .patroll-icon.hold-1 .level-1 span { width: 0 !important; } .patroll-icon .level-2 { top: 6px; } .patroll-icon .level-2 span { background-color: #E46C16; } .patroll-icon.hold-2 .level-2 span { width: 0 !important; } .patroll-icon .level-3 { top: 11px; } .patroll-icon .level-3 span { background-color: #C92B2B; } .patroll-icon.hold-3 .level-3 span { width: 0 !important; } .patroll-icon .level-4 { top: 16px; } .patroll-icon .level-4 span { background-color: #575757; } .patroll-icon.hold-4 .level-4 span { width: 0 !important; } .patroll-popup { position: absolute; background-color: white; border: 1px solid #a8a8a8; box-shadow: 0 3px 10px rgba(0,0,0,0.35); width: 220px; height: 250px; left: -250px; /* - width - 30 */ top: -16px; z-index: 100; opacity: 1; transition-duration: 0.5s; box-sizing: border-box; padding: 0.75em; } .patroll-popup.hidden { opacity: 0; } .patroll-popup .pin { width: 14px; height: 25px; background: no-repeat center center; background-size: 100% 100%; right: -13px; top: 18px; position: absolute; } .patroll-popup .logo { width: 112px; /* 223px */ height: 34px; /* 67px */ background: no-repeat center center; background-size: 100% 100%; margin-left: -0.7em; margin-top: -0.6em; } .patroll-popup .unknown { text-align: center; font-size: 15px; color: #666; margin-top: 1.5em; } .patroll-popup .unknown strong { display: block; color: #000; } .patroll-popup .report { text-align: center; font-size: 13px; color: #666; position: absolute; left: 0; right: 0; bottom: 0; padding: 0.75em; } .patroll-popup .report p { margin-bottom: 0.5em; } .patroll-popup .report .button { border-radius: 0.5em; padding: 0.35em; background: #DDD; color: black; cursor: pointer; user-select: none; } .patroll-popup .report .button:hover { color: white; background: #c1404c; } .patroll-popup .blank { text-align: center; font-size: 15px; color: #666; margin-top: 1.5em; } .patroll-popup .button-show-profile { border-radius: 0.5em; padding: 0.35em; background: #DDD; color: black; text-align: center; font-size: 14px; background: #EEE; margin-top: 0.7em; cursor: pointer; user-select: none; } .patroll-popup .button-show-profile:hover { color: white; background: #349556; } .patroll-popup .levels { margin-top: 0.25em; } .patroll-popup .levels .level { margin-bottom: 5px; text-align: right; } .patroll-popup .levels .level .count { font-size: 11px; float: left; } .patroll-popup .levels .level h2 { font-size: 11px; margin-bottom: 2px; } .patroll-popup .levels .level .track { background: #eee; height: 12px; } .patroll-popup .levels .level .value { display: inline-block; height: 12px; } .patroll-popup .levels .level-1 .value { background-color: #FFAD00; } .patroll-popup .levels .level-2 .value { background-color: #E46C16; } .patroll-popup .levels .level-3 .value { background-color: #C92B2B; } .patroll-popup .levels .level-4 .value { background-color: #575757; } @keyframes bounceIn { from, 20%, 40%, 60%, 80%, to { animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); } 0% { opacity: 0; transform: scale3d(.3, .3, .3); } 20% { transform: scale3d(1.1, 1.1, 1.1); } 40% { transform: scale3d(.9, .9, .9); } 60% { opacity: 1; transform: scale3d(1.03, 1.03, 1.03); } 80% { transform: scale3d(.97, .97, .97); } to { opacity: 1; transform: scale3d(1, 1, 1); } }
src/inject/inject.css
.UFIComment[patrolled] .lfloat { position: relative; } .patroll-icon { /* $w: 14; $h: 20; */ position: absolute; left: -16px; /* -$w-2 */ bottom: 50%; margin-bottom: -10px; /* -$h/2 */ width: 14px; /* $w */ height: 20px; /* $h */ background: white; z-index: 1; cursor: pointer; box-shadow: 0 1px 4px rgba(0,0,0,0.5); transition-duration: 1.5s; opacity: 1; transform: translate3d(0,0,0); } .patroll-icon.blank { /* $w: 12; $h: 12; */ left: -15px; /* -$w-2 */ margin-bottom: -6px; /* -$h/2 */ width: 12px; /* $w */ height: 12px; /* $h */ box-shadow: 0 1px 4px rgba(0,0,0,0.4); } .patroll-icon.unknown { /* $w: 10; $h: 10; */ left: -15px; /* -$w-2 */ margin-bottom: -5px; /* -$h/2 */ width: 10px; /* $w */ height: 10px; /* $h */ background-color: #e9ebed; box-shadow: none; border: 1px solid #dddfe2; box-shadow: 0 1px 4px rgba(0,0,0,0.15); } .patroll-icon.blank *, .patroll-icon.unknown * { display: none; } .patroll-icon.inicializing { opacity: 0; transform: translate3d(0,0,0) scale(0.001); } .patroll-icon.bounceIn { animation-name: bounceIn; animation-duration: 1s; } .patroll-icon [class^="level"] { box-sizing: border-box; position: absolute; left: 1px; right: 1px; height: 3px; background-color: #DDD; text-align: right; } .patroll-icon [class^="level"] span { position: absolute; right: 0; top: 0; height: 3px; width: 0; transition-duration: 0.5s; } .patroll-icon .level-1 { top: 1px; } .patroll-icon .level-1 span { background-color: #FFAD00; } .patroll-icon.hold-1 .level-1 span { width: 0 !important; } .patroll-icon .level-2 { top: 6px; } .patroll-icon .level-2 span { background-color: #E46C16; } .patroll-icon.hold-2 .level-2 span { width: 0 !important; } .patroll-icon .level-3 { top: 11px; } .patroll-icon .level-3 span { background-color: #C92B2B; } .patroll-icon.hold-3 .level-3 span { width: 0 !important; } .patroll-icon .level-4 { top: 16px; } .patroll-icon .level-4 span { background-color: #575757; } .patroll-icon.hold-4 .level-4 span { width: 0 !important; } .patroll-popup { position: absolute; background-color: white; border: 1px solid #a8a8a8; box-shadow: 0 3px 10px rgba(0,0,0,0.35); width: 220px; height: 250px; left: -250px; /* - width - 30 */ top: -16px; z-index: 100; opacity: 1; transition-duration: 0.5s; box-sizing: border-box; padding: 0.75em; } .patroll-popup.hidden { opacity: 0; } .patroll-popup .pin { width: 14px; height: 25px; background: no-repeat center center; background-size: 100% 100%; right: -13px; top: 18px; position: absolute; } .patroll-popup .logo { width: 112px; /* 223px */ height: 34px; /* 67px */ background: no-repeat center center; background-size: 100% 100%; margin-left: -0.7em; margin-top: -0.6em; } .patroll-popup .unknown { text-align: center; font-size: 15px; color: #666; margin-top: 1.5em; } .patroll-popup .unknown strong { display: block; color: #000; } .patroll-popup .report { text-align: center; font-size: 13px; color: #666; position: absolute; left: 0; right: 0; bottom: 0; padding: 0.75em; } .patroll-popup .report p { margin-bottom: 0.5em; } .patroll-popup .report .button { border-radius: 0.5em; padding: 0.35em; background: #DDD; color: black; cursor: pointer; user-select: none; } .patroll-popup .report .button:hover { color: white; background: #c1404c; } .patroll-popup .blank { text-align: center; font-size: 15px; color: #666; margin-top: 1.5em; } .patroll-popup .button-show-profile { border-radius: 0.5em; padding: 0.35em; background: #DDD; color: black; text-align: center; font-size: 14px; background: #EEE; margin-top: 0.7em; cursor: pointer; user-select: none; } .patroll-popup .button-show-profile:hover { color: white; background: #349556; } .patroll-popup .levels { margin-top: 0.25em; } .patroll-popup .levels .level { margin-bottom: 5px; text-align: right; } .patroll-popup .levels .level .count { font-size: 11px; float: left; } .patroll-popup .levels .level h2 { font-size: 11px; margin-bottom: 2px; } .patroll-popup .levels .level .track { background: #eee; height: 12px; } .patroll-popup .levels .level .value { display: inline-block; height: 12px; } .patroll-popup .levels .level-1 .value { background-color: #FFAD00; } .patroll-popup .levels .level-2 .value { background-color: #E46C16; } .patroll-popup .levels .level-3 .value { background-color: #C92B2B; } .patroll-popup .levels .level-4 .value { background-color: #575757; } @keyframes bounceIn { from, 20%, 40%, 60%, 80%, to { animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); } 0% { opacity: 0; transform: scale3d(.3, .3, .3); } 20% { transform: scale3d(1.1, 1.1, 1.1); } 40% { transform: scale3d(.9, .9, .9); } 60% { opacity: 1; transform: scale3d(1.03, 1.03, 1.03); } 80% { transform: scale3d(.97, .97, .97); } to { opacity: 1; transform: scale3d(1, 1, 1); } }
0.199893
0.088978
@font-face { font-family : "CraftyGirls"; src: url('/cositas/fonts/CraftyGirls.ttf'); } html { font-family: CraftyGirls !important; height: 100%; font-size: 13px; color: #000000; } body { height: 100%; margin: 0; padding: 0; } #welcome { text-align: center; left: 0px; position: relative; height: 100%; width: 100%; border: 0px solid red; background: #3D6376 url("/cositas/images/estrellas.png"); vertical-align: middle; overflow: hidden; } #welcome #welcomefloater { border: 0px solid red; margin-top: auto; margin-bottom: auto; position: relative; vertical-align: middle; overflow: hidden; } #welcome #welcomefloater img { border: 0px; } #welcome #spacewelcome1 { position: relative; width: 100%; height: 10%; } #page { position: absolute; top: 0px; left: 0px; width: 100%; border: 0px none orange; background: transparent url("/cositas/images/fondo.png"); margin: 0; } #floater { position: relative; float: left; height: 50%; width: 50%; border: 0px solid red; margin-bottom: -384px; } #content { position: relative; margin: 0 auto; clear: both; border: 0px solid blue; background-color: transparent; text-align: center; vertical-align: middle; color: orange; width: 90%; } #topdiv { background-color: #FFF8AF; position: relative; border: 0px solid lightgreen; width: 100%; height: 120px; z-index: 15; margin: 0; width: 100%; text-align: left; } #topdiv img { border: 0px; margin: 0px; text-align: left; height: 120px; width: 710px; } #space1 { position: relative; border: 0px solid lightgreen; width: 100%; height: 20px; margin: 0; } #space2 { position: relative; border: 0px solid lightgreen; width: 100%; height: 20px; margin: 0; } #space3 { position: relative; border: 0px solid lightgreen; width: 100%; height: 50px; margin: 0; } /************************************/ /* LAYOUT */ /************************************/ #contentbody { position: relative; /*height: 500px;*/ border: 10px solid #AC749C; background: #3D6376 url("/cositas/images/estrellas.png"); } #central { left: 0%; position: relative; width: 100%; height: 100%; border: 0px dotted yellow; background: #3D6376 url("/cositas/images/estrellas.png"); } #div rgal { position: relative; width: 100%; height: 60%; left: 0; top: 0; border: 0px solid green; vertical-align: middle; text-align: center; } #divgallery { position: absolute; width: 98% !important; height: 98% !important; top: 0px; margin-left: 1% !important; border: 0px solid red; } #divgallery h1 { color: #E00D31; font-size: 30px; margin: 0px; background-color: #FFF8AF; opacity: 0.3; } #divgallery h1 div { opacity: 1 !important; } /************************************/ /* MENU IZQ */ /************************************/ #menuizq { left: 0px; position: absolute; height: 500px; width: 30%; border: 0px dotted red; background: #3D6376 url("/cositas/images/estrellas.png"); } #menucosita { position: relative; border: 0px solid orange; margin: 0px; padding: 0px; width: 100%; height: 59px; background-color: !transparent; overflow: hidden; text-align: center; center; } #menucosita #menucositait { position: relative; float: left; border: 0px solid orange; margin: 0px; padding: 0px; width: 177px; height: 59px; display: block; overflow: hidden; } #menucosita #menucositait form { border: 0px solid orange; margin: 0px; padding: 0px; } #menucosita #menucositait form input { border: 0px solid orange; margin: 0px; padding: 0px; width: 177px; height: 59px; } /************************************/ /* FOOTER */ /************************************/ #divfootercontent { border: 0px solid orange; text-align: right; vertical-align: middle; } #divfootercontent a { font-size: 20px; color: #AC749C; text-decoration: none; vertical-align: middle; border: 0px; } #divfootercontent a label { font-size: 20px; color: #AC749C; text-decoration: none; vertical-align: middle; top: 0px; } #divfootercontent a img { font-size: 20px; color: #AC749C; text-decoration: none; vertical-align: middle; border: 0px; } #divramita { background: transparent url("/cositas/images/ramitas.png") no-repeat bottom; position: relative; border: 0px solid lightgreen; width: 100%; height: 60px; z-index: 15; margin: 0; } /********************************/ /* hometext */ /********************************/ #divhometext { border: 0px solid orange; margin: 0px; padding: 0px; width: 100%; height: 100%; margin-left: 5%; margin-bottom: 5%; margin-top: 5%; } #divhometext #divhometextcontent { background-color: #FFF8AF; border: 0px solid orange; padding: 0px; text-align: center; height: 90%; width: 90%; } #divhometext #divhometextcontent ul { width: 90%; text-align: center; border: 0px solid orange; margin: 0px; list-style: none; color: #325CA6; font-size: 30px; } #divhometext #divhometextcontent ul p { border: 0px solid orange; color: #000000; font-size: 20px; text-align: justify; margin: 0 10 0 10; width: 100%; } #divacercatit { top: 0%; left: 0%; width: 100%; height: 5%; } #divacercabody { margin-top: 5%; margin-bottom: 5%; left: 0%; width: 90%; height: 90%; color: #000000; border: 0px none; margin-left: 5%; text-align: justify; background-color: #AC749C; border: 0px none; overflow: hidden; } #divacercabody #ultit { width: 90%; text-align: center; border: 0px solid orange; margin: 0px; list-style: none; color: #325CA6; font-size: 30px; } #divacercascroll { top: 5%; left: 95%; width: 5%; height: 90%; position: absolute; } #divacercascrollint { position:absolute; top: 5%; height: 90%; } #divacercabody p { margin-top: 0px; margin-left: 5px; margin-right: 5px; } #divacercabody p img { margin-top: 1px; margin-left: 5px; margin-right: 5px; } #divacercabody ul { width: 100%; margin-left: 5px; margin-right: 5px; list-style: disc inside none; } .ui-slider-vertical .ui-slider-handle { background-image: url("/cositas/images/bug.png"); background-color: transparent; width: 25px; height: 25px; outline: none; border: 0px; } .ui-slider-vertical .ui-widget-header { background: #FFF8AF; } /********************************/ /* contacto */ /********************************/ #divcontacto { border: 0px solid orange; margin: 0px; padding: 0px; width: 100%; height: 100%; top: 5%; left: 5%; } #divcontacto #divcontactocontent { margin-top: 5%; margin-left: 5%; margin-bottom:5%; width: 90%; background-color: #FFF8AF; border: 0px solid orange; padding: 0px; text-align: center; height: 90%; } #divcontacto #divcontactocontent ul { width: 90%; text-align: center; border: 0px solid orange; margin: 0px; list-style: none; color: #325CA6; font-size: 20px; } #divcontacto #divcontactocontent ul p { border: 0px solid orange; color: #000000; font-size: 15px; text-align: justify; margin: 0 10 0 10; width: 100%; } #divcontacto #divcontactocontent ul form { margin: 0; } #galelem ul li p img { /*width: 450px; height: 250px;*/ } #galelem ul { list-style: none; } .ui-accordion { width: 90% !important; margin-left: 5% !important; margin-top: 5% !important; margin-bottom: 5% !important; font-family: CraftyGirls !important; font-size: 20px !important; } #ligal { border: 3px #AC749C dashed !important; background: url("images/ui-bg_glass_65_ffffff_1x400.png") repeat #DFECF5; font-family: CraftyGirls !important; font-size: 15px !important; } #sticker { background: #FFFFFF !transparent; color: 325CA6; font-family: CraftyGirls !important; font-size: 15px; text-align: center; padding: 5px; text-shadow: 0 1px 1px rgba(0,0,0,.2); border-radius: 50px; z-index: 1000; cursor: pointer !important; border: 0px; margin: 0px; } #parriba { background: #C23055; border: 0px; margin: 0px; color: #FFFFFF; }
target/classes/static/cositas/css/cositas.css
@font-face { font-family : "CraftyGirls"; src: url('/cositas/fonts/CraftyGirls.ttf'); } html { font-family: CraftyGirls !important; height: 100%; font-size: 13px; color: #000000; } body { height: 100%; margin: 0; padding: 0; } #welcome { text-align: center; left: 0px; position: relative; height: 100%; width: 100%; border: 0px solid red; background: #3D6376 url("/cositas/images/estrellas.png"); vertical-align: middle; overflow: hidden; } #welcome #welcomefloater { border: 0px solid red; margin-top: auto; margin-bottom: auto; position: relative; vertical-align: middle; overflow: hidden; } #welcome #welcomefloater img { border: 0px; } #welcome #spacewelcome1 { position: relative; width: 100%; height: 10%; } #page { position: absolute; top: 0px; left: 0px; width: 100%; border: 0px none orange; background: transparent url("/cositas/images/fondo.png"); margin: 0; } #floater { position: relative; float: left; height: 50%; width: 50%; border: 0px solid red; margin-bottom: -384px; } #content { position: relative; margin: 0 auto; clear: both; border: 0px solid blue; background-color: transparent; text-align: center; vertical-align: middle; color: orange; width: 90%; } #topdiv { background-color: #FFF8AF; position: relative; border: 0px solid lightgreen; width: 100%; height: 120px; z-index: 15; margin: 0; width: 100%; text-align: left; } #topdiv img { border: 0px; margin: 0px; text-align: left; height: 120px; width: 710px; } #space1 { position: relative; border: 0px solid lightgreen; width: 100%; height: 20px; margin: 0; } #space2 { position: relative; border: 0px solid lightgreen; width: 100%; height: 20px; margin: 0; } #space3 { position: relative; border: 0px solid lightgreen; width: 100%; height: 50px; margin: 0; } /************************************/ /* LAYOUT */ /************************************/ #contentbody { position: relative; /*height: 500px;*/ border: 10px solid #AC749C; background: #3D6376 url("/cositas/images/estrellas.png"); } #central { left: 0%; position: relative; width: 100%; height: 100%; border: 0px dotted yellow; background: #3D6376 url("/cositas/images/estrellas.png"); } #div rgal { position: relative; width: 100%; height: 60%; left: 0; top: 0; border: 0px solid green; vertical-align: middle; text-align: center; } #divgallery { position: absolute; width: 98% !important; height: 98% !important; top: 0px; margin-left: 1% !important; border: 0px solid red; } #divgallery h1 { color: #E00D31; font-size: 30px; margin: 0px; background-color: #FFF8AF; opacity: 0.3; } #divgallery h1 div { opacity: 1 !important; } /************************************/ /* MENU IZQ */ /************************************/ #menuizq { left: 0px; position: absolute; height: 500px; width: 30%; border: 0px dotted red; background: #3D6376 url("/cositas/images/estrellas.png"); } #menucosita { position: relative; border: 0px solid orange; margin: 0px; padding: 0px; width: 100%; height: 59px; background-color: !transparent; overflow: hidden; text-align: center; center; } #menucosita #menucositait { position: relative; float: left; border: 0px solid orange; margin: 0px; padding: 0px; width: 177px; height: 59px; display: block; overflow: hidden; } #menucosita #menucositait form { border: 0px solid orange; margin: 0px; padding: 0px; } #menucosita #menucositait form input { border: 0px solid orange; margin: 0px; padding: 0px; width: 177px; height: 59px; } /************************************/ /* FOOTER */ /************************************/ #divfootercontent { border: 0px solid orange; text-align: right; vertical-align: middle; } #divfootercontent a { font-size: 20px; color: #AC749C; text-decoration: none; vertical-align: middle; border: 0px; } #divfootercontent a label { font-size: 20px; color: #AC749C; text-decoration: none; vertical-align: middle; top: 0px; } #divfootercontent a img { font-size: 20px; color: #AC749C; text-decoration: none; vertical-align: middle; border: 0px; } #divramita { background: transparent url("/cositas/images/ramitas.png") no-repeat bottom; position: relative; border: 0px solid lightgreen; width: 100%; height: 60px; z-index: 15; margin: 0; } /********************************/ /* hometext */ /********************************/ #divhometext { border: 0px solid orange; margin: 0px; padding: 0px; width: 100%; height: 100%; margin-left: 5%; margin-bottom: 5%; margin-top: 5%; } #divhometext #divhometextcontent { background-color: #FFF8AF; border: 0px solid orange; padding: 0px; text-align: center; height: 90%; width: 90%; } #divhometext #divhometextcontent ul { width: 90%; text-align: center; border: 0px solid orange; margin: 0px; list-style: none; color: #325CA6; font-size: 30px; } #divhometext #divhometextcontent ul p { border: 0px solid orange; color: #000000; font-size: 20px; text-align: justify; margin: 0 10 0 10; width: 100%; } #divacercatit { top: 0%; left: 0%; width: 100%; height: 5%; } #divacercabody { margin-top: 5%; margin-bottom: 5%; left: 0%; width: 90%; height: 90%; color: #000000; border: 0px none; margin-left: 5%; text-align: justify; background-color: #AC749C; border: 0px none; overflow: hidden; } #divacercabody #ultit { width: 90%; text-align: center; border: 0px solid orange; margin: 0px; list-style: none; color: #325CA6; font-size: 30px; } #divacercascroll { top: 5%; left: 95%; width: 5%; height: 90%; position: absolute; } #divacercascrollint { position:absolute; top: 5%; height: 90%; } #divacercabody p { margin-top: 0px; margin-left: 5px; margin-right: 5px; } #divacercabody p img { margin-top: 1px; margin-left: 5px; margin-right: 5px; } #divacercabody ul { width: 100%; margin-left: 5px; margin-right: 5px; list-style: disc inside none; } .ui-slider-vertical .ui-slider-handle { background-image: url("/cositas/images/bug.png"); background-color: transparent; width: 25px; height: 25px; outline: none; border: 0px; } .ui-slider-vertical .ui-widget-header { background: #FFF8AF; } /********************************/ /* contacto */ /********************************/ #divcontacto { border: 0px solid orange; margin: 0px; padding: 0px; width: 100%; height: 100%; top: 5%; left: 5%; } #divcontacto #divcontactocontent { margin-top: 5%; margin-left: 5%; margin-bottom:5%; width: 90%; background-color: #FFF8AF; border: 0px solid orange; padding: 0px; text-align: center; height: 90%; } #divcontacto #divcontactocontent ul { width: 90%; text-align: center; border: 0px solid orange; margin: 0px; list-style: none; color: #325CA6; font-size: 20px; } #divcontacto #divcontactocontent ul p { border: 0px solid orange; color: #000000; font-size: 15px; text-align: justify; margin: 0 10 0 10; width: 100%; } #divcontacto #divcontactocontent ul form { margin: 0; } #galelem ul li p img { /*width: 450px; height: 250px;*/ } #galelem ul { list-style: none; } .ui-accordion { width: 90% !important; margin-left: 5% !important; margin-top: 5% !important; margin-bottom: 5% !important; font-family: CraftyGirls !important; font-size: 20px !important; } #ligal { border: 3px #AC749C dashed !important; background: url("images/ui-bg_glass_65_ffffff_1x400.png") repeat #DFECF5; font-family: CraftyGirls !important; font-size: 15px !important; } #sticker { background: #FFFFFF !transparent; color: 325CA6; font-family: CraftyGirls !important; font-size: 15px; text-align: center; padding: 5px; text-shadow: 0 1px 1px rgba(0,0,0,.2); border-radius: 50px; z-index: 1000; cursor: pointer !important; border: 0px; margin: 0px; } #parriba { background: #C23055; border: 0px; margin: 0px; color: #FFFFFF; }
0.102658
0.029845
.logo{ height: 70px; margin-top: 20px; text-transform: lowercase; font-size: 40px; } .logo img { height: 80%; } nav { position: absolute; width: 100%; top:0; margin-bottom: 50px; z-index: 2; } .hr { position: relative; } .hr::after { content: ""; display: block; position: absolute; width: 100%; height: 2px; background-image: linear-gradient(-90deg,rgba(255,255,255,0) 0,#fff 5%,#fff 90%,rgba(255,255,255,0) 100%); opacity: .08; } .heroWrapper { position: relative; z-index: -1; } .hero { background: linear-gradient(217deg, rgba(14,30,37,.4),rgba(14,30,37,0) 70.71%), linear-gradient(127deg, rgba(0,189,189,.51),rgba(0,189,189,0) 70.71%), linear-gradient(336deg, rgba(101,0,117,1) 12.18%,rgba(85,15,100,0) 70.71%); background-color: rgba(8,0,103,1); padding-top: 130px; padding-bottom: 80px; z-index: 1; } .wave { overflow: hidden; position: absolute; width: 100%; transform: translateY(-50%); color: #fff; z-index: 1; } .wave svg { fill: currentColor; width: 102%; margin-left: -1%; height: auto; } .announcement { padding: 30px 0; text-align: center; } .card { border-radius: 8px; box-shadow: 0 0 4.236em rgba(14,30,37,.08); padding: 1.618em; background: #ffffff; color: rgba(14,30,37,.8); font-size: 16px; float: left; width: 30%; margin: 3% 1.5%; box-sizing: border-box; } .card ul{ padding: 0; } .card li { list-style-type: none; position: relative; padding-left: 25px; margin-top: 10px; line-height: 25px; } .card li::before{ content: "โœ“"; display: block; width: 1.618em; height: 1.618em; line-height: 1.75; text-align: center; border-radius: 50%; font-size: .618em; font-weight: 900; background-color: rgba(14,30,37,.87); color: #fff; position: absolute; left: 0; top: .382em; } .closeSiteView { cursor: pointer; } body { font-family: Roboto,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"; color: rgba(14,30,37,.54); margin: 0; -webkit-font-smoothing: antialiased; } p{ font-family: 'Roboto', sans-serif; margin: 0; -webkit-font-smoothing: antialiased; } h1 { font-size: 52px; font-weight: 600; color: #fff; font-family: 'Roboto', sans-serif; margin: 0; } h2{ font-size: 40px; font-family: 'Roboto', sans-serif; font-weight: 500; color: #0e1e25; line-height: 1.2; margin: 0; } h3 { font-size: 20px; color: rgba(255,255,255,.8); margin: 0; line-height: 30px; font-size: 20px; text-shadow: 0 2px 20px rgba(0,0,0,.16); -webkit-font-smoothing: antialiased; margin: 0; font-weight: lighter; } .light{ color:rgba(255,255,255,.8); } .teal { color: #00b09f; } .light-background { background-color: #f7f8f8; } .dark { color: #0e1e25; } .clearfix:after { content: ""; display: table; clear: both; } .container { width: 70%; margin: 0 auto; } .vertAlign { vertical-align: top; } .button { box-sizing: border-box; position: relative; z-index: 1; display: inline-block; vertical-align: middle; outline: 0; font-family: inherit; font-size: .9rem; font-weight: 500; line-height: 1.618em; padding: .382em 1em; text-align: center; text-decoration: none; border: 0; border-radius: 4px; box-shadow: 0 2px 4px 0 rgba(14,30,37,.12); cursor: pointer; background: #00b09f; color: #fff; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; transition: all .15s ease; } .hidden { display: none; } @media only screen and (max-width: 1085px){ .card { width: 46%; } } @media only screen and (max-width: 600px){ .card { width: 100%; } h1 { font-size: 30px; } h2 { font-size: 22px; } h3 { font-size: 18px; } }
firstStepWorkingFiles/style.css
.logo{ height: 70px; margin-top: 20px; text-transform: lowercase; font-size: 40px; } .logo img { height: 80%; } nav { position: absolute; width: 100%; top:0; margin-bottom: 50px; z-index: 2; } .hr { position: relative; } .hr::after { content: ""; display: block; position: absolute; width: 100%; height: 2px; background-image: linear-gradient(-90deg,rgba(255,255,255,0) 0,#fff 5%,#fff 90%,rgba(255,255,255,0) 100%); opacity: .08; } .heroWrapper { position: relative; z-index: -1; } .hero { background: linear-gradient(217deg, rgba(14,30,37,.4),rgba(14,30,37,0) 70.71%), linear-gradient(127deg, rgba(0,189,189,.51),rgba(0,189,189,0) 70.71%), linear-gradient(336deg, rgba(101,0,117,1) 12.18%,rgba(85,15,100,0) 70.71%); background-color: rgba(8,0,103,1); padding-top: 130px; padding-bottom: 80px; z-index: 1; } .wave { overflow: hidden; position: absolute; width: 100%; transform: translateY(-50%); color: #fff; z-index: 1; } .wave svg { fill: currentColor; width: 102%; margin-left: -1%; height: auto; } .announcement { padding: 30px 0; text-align: center; } .card { border-radius: 8px; box-shadow: 0 0 4.236em rgba(14,30,37,.08); padding: 1.618em; background: #ffffff; color: rgba(14,30,37,.8); font-size: 16px; float: left; width: 30%; margin: 3% 1.5%; box-sizing: border-box; } .card ul{ padding: 0; } .card li { list-style-type: none; position: relative; padding-left: 25px; margin-top: 10px; line-height: 25px; } .card li::before{ content: "โœ“"; display: block; width: 1.618em; height: 1.618em; line-height: 1.75; text-align: center; border-radius: 50%; font-size: .618em; font-weight: 900; background-color: rgba(14,30,37,.87); color: #fff; position: absolute; left: 0; top: .382em; } .closeSiteView { cursor: pointer; } body { font-family: Roboto,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"; color: rgba(14,30,37,.54); margin: 0; -webkit-font-smoothing: antialiased; } p{ font-family: 'Roboto', sans-serif; margin: 0; -webkit-font-smoothing: antialiased; } h1 { font-size: 52px; font-weight: 600; color: #fff; font-family: 'Roboto', sans-serif; margin: 0; } h2{ font-size: 40px; font-family: 'Roboto', sans-serif; font-weight: 500; color: #0e1e25; line-height: 1.2; margin: 0; } h3 { font-size: 20px; color: rgba(255,255,255,.8); margin: 0; line-height: 30px; font-size: 20px; text-shadow: 0 2px 20px rgba(0,0,0,.16); -webkit-font-smoothing: antialiased; margin: 0; font-weight: lighter; } .light{ color:rgba(255,255,255,.8); } .teal { color: #00b09f; } .light-background { background-color: #f7f8f8; } .dark { color: #0e1e25; } .clearfix:after { content: ""; display: table; clear: both; } .container { width: 70%; margin: 0 auto; } .vertAlign { vertical-align: top; } .button { box-sizing: border-box; position: relative; z-index: 1; display: inline-block; vertical-align: middle; outline: 0; font-family: inherit; font-size: .9rem; font-weight: 500; line-height: 1.618em; padding: .382em 1em; text-align: center; text-decoration: none; border: 0; border-radius: 4px; box-shadow: 0 2px 4px 0 rgba(14,30,37,.12); cursor: pointer; background: #00b09f; color: #fff; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; transition: all .15s ease; } .hidden { display: none; } @media only screen and (max-width: 1085px){ .card { width: 46%; } } @media only screen and (max-width: 600px){ .card { width: 100%; } h1 { font-size: 30px; } h2 { font-size: 22px; } h3 { font-size: 18px; } }
0.328529
0.125092
@import url('https://fonts.googleapis.com/css?family=Sen&display=swap'); body background: #374E59 color: #C06162 font-family: 'Sen' margin-bottom: 200px h1 font-size: 48px text-align: center margin-top: 30px margin-bottom: 40px .menu-container margin-top: 20px h3 font-size: 24px margin-bottom: 10px text-align: center .menu-container:nth-child(3) margin-top: 200px nav width: 100% display: flex justify-content: center .menu display: flex justify-content: center .dropdown padding: 20px 40px display: flex justify-content: center align-items: center color: white background: #C06162 background: #34495e position: relative font-size: 18px perspective: 1000px z-index: 100 &:hover background: #2980b9 cursor: pointer &:hover .dropdown_menu li display: block .dropdown_menu position: absolute top: 100% left: 0 width: 100% perspective: 1000px z-index: -1 li display: none color: white background-color: #34495e padding: 10px 20px font-size: 16px opacity: 0 &:hover background-color: #2980b9 // Menu as a whole animated .dropdown:hover .dropdown_menu--animated display: block .dropdown_menu--animated display: none li display: block opacity: 1 .dropdown_menu-6 animation: growDown 300ms ease-in-out forwards transform-origin: top center @keyframes growDown { 0% { transform: scaleY(0) } 80% { transform: scaleY(1.1) } 100% { transform: scaleY(1) } } .dropdown_menu-7 animation: rotateMenu 400ms ease-in-out forwards transform-origin: top center @keyframes rotateMenu { 0% { transform: rotateX(-90deg) } 70% { transform: rotateX(20deg) } 100% { transform: rotateX(0deg) } } .dropdown_menu-8 animation: downOut 300ms ease-in-out forwards transform-origin: center center @keyframes downOut { 0% { transform: translateZ(200px) transLateY(40px) } 80% { transform: translateZ(-10px) transLateY(0px) } 100% { transform: translateZ(0px) transLateY(0px) } } .dropdown_menu-9 animation: growOut 300ms ease-in-out forwards transform-origin: top center @keyframes growOut { 0% { transform: scale(0) } 80% { transform: scale(1.1) } 100% { transform: scale(1) } } .dropdown_menu-10 animation: rotateY 300ms ease-in-out forwards transform-origin: top center @keyframes rotateY { 0% { transform: rotateY(90deg) } 80% { transform: rotateY(-10deg) } 100% { transform: rotateY(0) } } // Menu Items Animated invidually .dropdown_menu-1 for num in (1..5) .dropdown_item-{num} transform-origin: top center animation: slideDown 300ms (num * 60ms) ease-in-out forwards @keyframes slideDown { 0% { opacity: 0 transform: translateY(-60px) } 100% { opacity: 1 transform: translateY(0) } } .dropdown_menu-2 for num in (1..5) .dropdown_item-{num} transform-origin: top center animation: rotateX 300ms (num * 60ms) ease-in-out forwards @keyframes rotateX { 0% { opacity: 0; transform: rotateX(-90deg); } 50% { transform: rotateX(-20deg); } 100% { opacity: 1; transform: rotateX(0deg); } } .dropdown_menu-3 for num in (1..5) .dropdown_item-{num} transform-origin: top center animation: rotateZ 300ms (num * 60ms) ease-in-out forwards @keyframes rotateZ { 0% { opacity: 0; transform: translateZ(290px); } 80% { transform: translateZ(10px); } 100% { opacity: 1; transform: translateZ(0); } } .dropdown_menu-4 for num in (1..5) .dropdown_item-{num} transform-origin: top center animation: scaleZ 300ms (num * 60ms) ease-in-out forwards @keyframes scaleZ { 0% { opacity: 0; transform: scale(0); } 80% { transform: scale(1.07); } 100% { opacity: 1; transform: scale(1); } } .dropdown_menu-4 for num in (1..5) .dropdown_item-{num} transform-origin: top center animation: scaleZ 300ms (num * 60ms) ease-in-out forwards @keyframes scaleZ { 0% { opacity: 0; transform: scale(0); } 80% { transform: scale(1.07); } 100% { opacity: 1; transform: scale(1); } } .dropdown_menu-5 for num in (1..5) .dropdown_item-{num} transform-origin: top center animation: translateX 300ms (num * 60ms) ease-in-out forwards @keyframes translateX { 0% { opacity: 0; transform: translateX(60px); } 80% { transform: translateX(-5px); } 100% { opacity: 1; transform: translateX(0px); } }
10dropdowns.css
@import url('https://fonts.googleapis.com/css?family=Sen&display=swap'); body background: #374E59 color: #C06162 font-family: 'Sen' margin-bottom: 200px h1 font-size: 48px text-align: center margin-top: 30px margin-bottom: 40px .menu-container margin-top: 20px h3 font-size: 24px margin-bottom: 10px text-align: center .menu-container:nth-child(3) margin-top: 200px nav width: 100% display: flex justify-content: center .menu display: flex justify-content: center .dropdown padding: 20px 40px display: flex justify-content: center align-items: center color: white background: #C06162 background: #34495e position: relative font-size: 18px perspective: 1000px z-index: 100 &:hover background: #2980b9 cursor: pointer &:hover .dropdown_menu li display: block .dropdown_menu position: absolute top: 100% left: 0 width: 100% perspective: 1000px z-index: -1 li display: none color: white background-color: #34495e padding: 10px 20px font-size: 16px opacity: 0 &:hover background-color: #2980b9 // Menu as a whole animated .dropdown:hover .dropdown_menu--animated display: block .dropdown_menu--animated display: none li display: block opacity: 1 .dropdown_menu-6 animation: growDown 300ms ease-in-out forwards transform-origin: top center @keyframes growDown { 0% { transform: scaleY(0) } 80% { transform: scaleY(1.1) } 100% { transform: scaleY(1) } } .dropdown_menu-7 animation: rotateMenu 400ms ease-in-out forwards transform-origin: top center @keyframes rotateMenu { 0% { transform: rotateX(-90deg) } 70% { transform: rotateX(20deg) } 100% { transform: rotateX(0deg) } } .dropdown_menu-8 animation: downOut 300ms ease-in-out forwards transform-origin: center center @keyframes downOut { 0% { transform: translateZ(200px) transLateY(40px) } 80% { transform: translateZ(-10px) transLateY(0px) } 100% { transform: translateZ(0px) transLateY(0px) } } .dropdown_menu-9 animation: growOut 300ms ease-in-out forwards transform-origin: top center @keyframes growOut { 0% { transform: scale(0) } 80% { transform: scale(1.1) } 100% { transform: scale(1) } } .dropdown_menu-10 animation: rotateY 300ms ease-in-out forwards transform-origin: top center @keyframes rotateY { 0% { transform: rotateY(90deg) } 80% { transform: rotateY(-10deg) } 100% { transform: rotateY(0) } } // Menu Items Animated invidually .dropdown_menu-1 for num in (1..5) .dropdown_item-{num} transform-origin: top center animation: slideDown 300ms (num * 60ms) ease-in-out forwards @keyframes slideDown { 0% { opacity: 0 transform: translateY(-60px) } 100% { opacity: 1 transform: translateY(0) } } .dropdown_menu-2 for num in (1..5) .dropdown_item-{num} transform-origin: top center animation: rotateX 300ms (num * 60ms) ease-in-out forwards @keyframes rotateX { 0% { opacity: 0; transform: rotateX(-90deg); } 50% { transform: rotateX(-20deg); } 100% { opacity: 1; transform: rotateX(0deg); } } .dropdown_menu-3 for num in (1..5) .dropdown_item-{num} transform-origin: top center animation: rotateZ 300ms (num * 60ms) ease-in-out forwards @keyframes rotateZ { 0% { opacity: 0; transform: translateZ(290px); } 80% { transform: translateZ(10px); } 100% { opacity: 1; transform: translateZ(0); } } .dropdown_menu-4 for num in (1..5) .dropdown_item-{num} transform-origin: top center animation: scaleZ 300ms (num * 60ms) ease-in-out forwards @keyframes scaleZ { 0% { opacity: 0; transform: scale(0); } 80% { transform: scale(1.07); } 100% { opacity: 1; transform: scale(1); } } .dropdown_menu-4 for num in (1..5) .dropdown_item-{num} transform-origin: top center animation: scaleZ 300ms (num * 60ms) ease-in-out forwards @keyframes scaleZ { 0% { opacity: 0; transform: scale(0); } 80% { transform: scale(1.07); } 100% { opacity: 1; transform: scale(1); } } .dropdown_menu-5 for num in (1..5) .dropdown_item-{num} transform-origin: top center animation: translateX 300ms (num * 60ms) ease-in-out forwards @keyframes translateX { 0% { opacity: 0; transform: translateX(60px); } 80% { transform: translateX(-5px); } 100% { opacity: 1; transform: translateX(0px); } }
0.456894
0.164684
.santa.left.stand { background-image: url(image/svg/santa_left_stand_one.svg); } .santa.left.run { background-image: url(image/svg/santa_left_run_one.svg); } .santa.right.stand { background-image: url(image/svg/santa_right_stand_one.svg); } .santa.right.run { background-image: url(image/svg/santa_right_run_one.svg); } body.two .santa.left.stand { background-image: url(image/svg/santa_left_stand_two.svg); } body.two .santa.left.run { background-image: url(image/svg/santa_left_run_two.svg); } body.two .santa.right.stand { background-image: url(image/svg/santa_right_stand_two.svg); } body.two .santa.right.run { background-image: url(image/svg/santa_right_run_two.svg); } body.three .santa.left.stand { background-image: url(image/svg/santa_left_stand_three.svg); } body.three .santa.left.run { background-image: url(image/svg/santa_left_run_three.svg); } body.three .santa.right.stand { background-image: url(image/svg/santa_right_stand_three.svg); } body.three .santa.right.run { background-image: url(image/svg/santa_right_run_three.svg); } body.four .santa.left.stand { background-image: url(image/svg/santa_left_stand_four.svg); } body.four .santa.left.run { background-image: url(image/svg/santa_left_run_four.svg); } body.four .santa.right.stand { background-image: url(image/svg/santa_right_stand_four.svg); } body.four .santa.right.run { background-image: url(image/svg/santa_right_run_four.svg); } body.five .santa.left.stand { background-image: url(image/svg/santa_left_stand_five.svg); } body.five .santa.left.run { background-image: url(image/svg/santa_left_run_five.svg); } body.five .santa.right.stand { background-image: url(image/svg/santa_right_stand_five.svg); } body.five .santa.right.run { background-image: url(image/svg/santa_right_run_five.svg); } .santa{ position: absolute; left: 40vw; top: 60vh; width: 100px; height: 100px; /* background-size: 200px 400px; */ background-size: contain; background-repeat: no-repeat; background-position: center center; } .santa img{ position: absolute; } .button { position: absolute; width: 20vw; bottom: 10vw; pointer-events: visible; } .button.left{ left: 22vw; } .button.right{ right: 22vw; } .clothes{ position: absolute; left: 48vw; top: 10vw; width: 50px; height: 50px; background-size: 50px 50px; } .clothes.yes { background-image: url(image/yes_clothes.svg); } .clothes.not { background-image: url(image/not_clothes.svg); } /* ใ‚ฟใ‚คใƒžใƒผ */ .timer { position: absolute; top: 10vw; right: 26vw; left: 26vw; padding: 4px; background-color: white; color: black; border: 5px; border-color: black; border-radius: 30px; font-size: 5vw; font-weight: bold; text-align: center; } /* ใ‚นใ‚ณใ‚ข */ .clothes.hit { display: none; } .scoreBoard { position: absolute; background-color: rgb(30, 83, 255); color: white; font-family: 'Courier New', Courier, monospace; }
game.play.css
.santa.left.stand { background-image: url(image/svg/santa_left_stand_one.svg); } .santa.left.run { background-image: url(image/svg/santa_left_run_one.svg); } .santa.right.stand { background-image: url(image/svg/santa_right_stand_one.svg); } .santa.right.run { background-image: url(image/svg/santa_right_run_one.svg); } body.two .santa.left.stand { background-image: url(image/svg/santa_left_stand_two.svg); } body.two .santa.left.run { background-image: url(image/svg/santa_left_run_two.svg); } body.two .santa.right.stand { background-image: url(image/svg/santa_right_stand_two.svg); } body.two .santa.right.run { background-image: url(image/svg/santa_right_run_two.svg); } body.three .santa.left.stand { background-image: url(image/svg/santa_left_stand_three.svg); } body.three .santa.left.run { background-image: url(image/svg/santa_left_run_three.svg); } body.three .santa.right.stand { background-image: url(image/svg/santa_right_stand_three.svg); } body.three .santa.right.run { background-image: url(image/svg/santa_right_run_three.svg); } body.four .santa.left.stand { background-image: url(image/svg/santa_left_stand_four.svg); } body.four .santa.left.run { background-image: url(image/svg/santa_left_run_four.svg); } body.four .santa.right.stand { background-image: url(image/svg/santa_right_stand_four.svg); } body.four .santa.right.run { background-image: url(image/svg/santa_right_run_four.svg); } body.five .santa.left.stand { background-image: url(image/svg/santa_left_stand_five.svg); } body.five .santa.left.run { background-image: url(image/svg/santa_left_run_five.svg); } body.five .santa.right.stand { background-image: url(image/svg/santa_right_stand_five.svg); } body.five .santa.right.run { background-image: url(image/svg/santa_right_run_five.svg); } .santa{ position: absolute; left: 40vw; top: 60vh; width: 100px; height: 100px; /* background-size: 200px 400px; */ background-size: contain; background-repeat: no-repeat; background-position: center center; } .santa img{ position: absolute; } .button { position: absolute; width: 20vw; bottom: 10vw; pointer-events: visible; } .button.left{ left: 22vw; } .button.right{ right: 22vw; } .clothes{ position: absolute; left: 48vw; top: 10vw; width: 50px; height: 50px; background-size: 50px 50px; } .clothes.yes { background-image: url(image/yes_clothes.svg); } .clothes.not { background-image: url(image/not_clothes.svg); } /* ใ‚ฟใ‚คใƒžใƒผ */ .timer { position: absolute; top: 10vw; right: 26vw; left: 26vw; padding: 4px; background-color: white; color: black; border: 5px; border-color: black; border-radius: 30px; font-size: 5vw; font-weight: bold; text-align: center; } /* ใ‚นใ‚ณใ‚ข */ .clothes.hit { display: none; } .scoreBoard { position: absolute; background-color: rgb(30, 83, 255); color: white; font-family: 'Courier New', Courier, monospace; }
0.691497
0.328005
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap'); * { margin: 0; padding: 0; } *, *::after, *::before { box-sizing: border-box; } html { background: #0c0c0c; color: #fff; font-size: calc(100vw / 1920 * 10); height: 100%; left: 0; position: fixed; top: 0; user-select: none; width: 100%; } body { font-family: 'Inter', sans-serif; font-size: 15px; margin: 0; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; overscroll-behavior-y: none; } /* body:after { animation: grain 6s steps(10) infinite; background-image: url('../images/grain.png'); background-repeat: repeat; content: ''; height: 300%; left: -100%; opacity: 0; pointer-events: none; position: fixed; top: -100%; transition: opacity 0.4s ease; width: 300%; will-change: transform; z-index: 3; } .loaded body:after { opacity: 0.06; } body #cdawrap { --cda-bottom: 3rem; --cda-left: 3rem; --cda-width: 400px; --cda-footer-fontsize: initial; --cda-footer-color: rgba(255,255,255,0.5); } body #cdawrap a:hover { text-decoration: none; opacity: 0.7; } img { display: block; } canvas { height: 100%; left: 0; opacity: 0; position: fixed; top: 0; transition: opacity 1s ease; width: 100%; } .loaded canvas { opacity: 1 } a { color: #fff; outline: none; text-decoration: none; } a:hover, a:focus { outline: none; } @keyframes grain { 0% { transform: translate(20%, -15%) } 10% { transform: translate(-20%, -15%) } 20% { transform: translate(20%, -5%) } 30% { transform: translate(-20%, -5%) } 40% { transform: translate(20%, 5%) } 50% { transform: translate(-20%, 5%) } 60% { transform: translate(20%, 15%) } 70% { transform: translate(-20%, 15%) } 80% { transform: translate(20%, 5%) } 90% { transform: translate(-20%, 5%) } 100% { transform: translate(20%, -5%) } } .demo-1 { height: 100%; left: 0; overflow: hidden; position: fixed; top: 0; width: 100%; z-index: 1; } .demo-1__header { align-items: center; display: flex; flex-direction: column; height: 100%; justify-content: center; left: 0; opacity: 0; position: fixed; top: 0; width: 100%; z-index: 2; .loaded & { opacity: 1; transition: opacity 0.4s ease; } } .demo-1__title { font: 800 20rem/1 'moret', serif; } .demo-1__description { font-size: 2rem; margin-top: -1rem; opacity: 0.75; } */ .demo-1__gallery { /* height: 295rem; position: relative; */ column-count: 3; column-gap: 10rem; /* visibility: hidden; */ } .demo-1__gallery__figure { margin-bottom: 10rem; } .demo-1__gallery__figure img { width: 100% !important; height: auto !important; } .demo-1__gallery__figure { position: relative; } .demo-1__gallery__figure figcaption { position: absolute; top: 0; left: 0; z-index: 1; font-size: 2em; padding: 4rem; opacity: 0; transition: all 0.3; } .demo-1__gallery__figure:hover figcaption { opacity: 1; filter: drop-shadow(1px 1px 1px red); } .demo-1__gallery__figure:hover:before { content: ''; position: absolute; width: 100%; height: 100%; background: rgba(255, 0, 0, 1); mix-blend-mode: screen; } @media (max-width: 1200px) { .demo-1__gallery {column-count: 2;} }
src/styles/global.css
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap'); * { margin: 0; padding: 0; } *, *::after, *::before { box-sizing: border-box; } html { background: #0c0c0c; color: #fff; font-size: calc(100vw / 1920 * 10); height: 100%; left: 0; position: fixed; top: 0; user-select: none; width: 100%; } body { font-family: 'Inter', sans-serif; font-size: 15px; margin: 0; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; overscroll-behavior-y: none; } /* body:after { animation: grain 6s steps(10) infinite; background-image: url('../images/grain.png'); background-repeat: repeat; content: ''; height: 300%; left: -100%; opacity: 0; pointer-events: none; position: fixed; top: -100%; transition: opacity 0.4s ease; width: 300%; will-change: transform; z-index: 3; } .loaded body:after { opacity: 0.06; } body #cdawrap { --cda-bottom: 3rem; --cda-left: 3rem; --cda-width: 400px; --cda-footer-fontsize: initial; --cda-footer-color: rgba(255,255,255,0.5); } body #cdawrap a:hover { text-decoration: none; opacity: 0.7; } img { display: block; } canvas { height: 100%; left: 0; opacity: 0; position: fixed; top: 0; transition: opacity 1s ease; width: 100%; } .loaded canvas { opacity: 1 } a { color: #fff; outline: none; text-decoration: none; } a:hover, a:focus { outline: none; } @keyframes grain { 0% { transform: translate(20%, -15%) } 10% { transform: translate(-20%, -15%) } 20% { transform: translate(20%, -5%) } 30% { transform: translate(-20%, -5%) } 40% { transform: translate(20%, 5%) } 50% { transform: translate(-20%, 5%) } 60% { transform: translate(20%, 15%) } 70% { transform: translate(-20%, 15%) } 80% { transform: translate(20%, 5%) } 90% { transform: translate(-20%, 5%) } 100% { transform: translate(20%, -5%) } } .demo-1 { height: 100%; left: 0; overflow: hidden; position: fixed; top: 0; width: 100%; z-index: 1; } .demo-1__header { align-items: center; display: flex; flex-direction: column; height: 100%; justify-content: center; left: 0; opacity: 0; position: fixed; top: 0; width: 100%; z-index: 2; .loaded & { opacity: 1; transition: opacity 0.4s ease; } } .demo-1__title { font: 800 20rem/1 'moret', serif; } .demo-1__description { font-size: 2rem; margin-top: -1rem; opacity: 0.75; } */ .demo-1__gallery { /* height: 295rem; position: relative; */ column-count: 3; column-gap: 10rem; /* visibility: hidden; */ } .demo-1__gallery__figure { margin-bottom: 10rem; } .demo-1__gallery__figure img { width: 100% !important; height: auto !important; } .demo-1__gallery__figure { position: relative; } .demo-1__gallery__figure figcaption { position: absolute; top: 0; left: 0; z-index: 1; font-size: 2em; padding: 4rem; opacity: 0; transition: all 0.3; } .demo-1__gallery__figure:hover figcaption { opacity: 1; filter: drop-shadow(1px 1px 1px red); } .demo-1__gallery__figure:hover:before { content: ''; position: absolute; width: 100%; height: 100%; background: rgba(255, 0, 0, 1); mix-blend-mode: screen; } @media (max-width: 1200px) { .demo-1__gallery {column-count: 2;} }
0.464416
0.124639
* { margin: 0px; } html,body { text-align: center; font-weight: normal; } a { font-size: 12px; } /* Main structure styles (used to layout the header/footer) */ .wrapper { background: #ffffff url(../img/searchBox.png) repeat-x left top; height: auto !important; margin: -11px auto -4em; position: relative; width: 1024px; font-family: Verdana, Arial, Helvetica, Geneva, sans-serif; font-size: 12px; } #footer { background-color: #cccccc; padding-top: 5px; text-align: center; font-size: 80%; margin-top: 10px; float: left; width: 100%; height: 4em; color: #006666; padding-bottom: 5px; } #topAndBody { width: 1024px; text-align: left; margin: auto; padding-bottom: 15px; } /* Style for the top bar (=header) */ #top_bar { height: 57px; } #top_bar h1 { margin-top: 7px; width: 250px; height: 40px; font-size: 1px; text-indent: -9999px; background: url(../img/banner.png) no-repeat left top; float: left; margin-bottom: -20px; border:0px; padding:0px; } /* Style for the search box in the header */ #search-box input { float: left; width: 280px; border: 1px solid #6F4A00; margin: 15px 0px 0px 10px; /* top right bottom left */ font-size: 14px; height: 17px } #search-box .search-box-button { float: left; margin: 15px 0px 0px 0px; padding: 0px; height: 21px; width: 85px; cursor: pointer; border: 0px; background-image: url('../img/searchButton.png'); } .inputDiscrete { border: 1px solid #6F4A00; } .text_header { color: #006666; background: #eef5f5; padding: 10px 0px 5px 10px; font-size: 120%; font-weight: bold; border-radius:10px 10px 10px 10px; -moz-border-radius: 10px 10px 10px 10px; -webkit-border-radius:10px 10px 10px 10px; } .text_header.plain { background: #ffffff; padding: 10px 0px 5px 0px; } .text_header.yellow { background: #ffd98f; color: #000000; padding: 10px 0px 5px 5px; } .text-column { padding: 10px 10px 15px 0px; float: left; color: #444444; font-weight: lighter; line-height: 1.5; width: 30%; } .text-fullwidth { padding: 5px 5px 5px 0px; float: left; color: #444444; line-height: 1.5; width: 100%; } .text-fullwidth.bold { font-weight: bold; } .text-fullwidth.center { text-align:center; } .messageBox { border: 1px solid #006666; padding:5px 5px 5px 5px; float: left; margin-top: 3px; color:#006666; margin-top:-10px; height:15px; background:#ffd98f; font-weight:bold; } .loggedInAs { font-size:12px; margin-left:20px; color:#006666; font-weight: normal; } .loggedInAsBox { height:20px; border:0px solid purple; text-align:right; } .error { color:#AA0000; font-weight: bold; } .white { color:#ffffff; font-size: 8px; } .gray { color:#B0B0B0; } .formbox { margin-top:10px; padding-top:0px; padding-left:10px; padding-bottom:15px; padding-right:10px; border-radius:10px 10px 10px 10px; -moz-border-radius: 10px 10px 10px 10px; -webkit-border-radius:10px 10px 10px 10px; } /* extend formbox with a border, for entry and searchresults etc */ .formbox.border { border:1px solid #408c8c; } .filterbox { border:1px solid #408c8c; margin-top:10px; padding-top:10px; padding-left:10px; padding-bottom:10px; padding-right:10px; border-radius:10px 10px 10px 10px; -moz-border-radius: 10px 10px 10px 10px; -webkit-border-radius:10px 10px 10px 10px; } .formheader { /*background-color:#408c8c;color: #FFFFFF;*/ color: #408c8c; } .tableheader { padding: 10px 10px 10px 10px; } /* Table data styles*/ .tableitem { margin-top:10px; padding-top:10px; padding-left:10px; padding-bottom:10px; padding-right:10px; } /* paging */ #content p { text-align:left; } #pagingControlsBot ul { display:inline; padding-left:0.5em } #pagingControlsBot li { display:inline; padding:0 0.5em } #pagingControlsTop ul { display:inline; padding-left:0.5em } #pagingControlsTop li { display:inline; padding:0 0.5em } /* table like div tag stuff */ .iscell { float: left; padding: 5px 5px 5px 10px; /* top right bottom left */ text-align:left; text-indent:0px; bbborder: 1px solid black; } .iscell.left{ padding: 5px 5px 5px 0px; /* top right bottom left */ } .expandbox { display:none; border:1px dotted gray; border-radius:10px 10px 10px 10px; -moz-border-radius: 10px 10px 10px 10px; -webkit-border-radius:10px 10px 10px 10px; } #resultList li { text-indent: 5px; list-style-position: outside; list-style-image: url(../img/orangeBullet.jpg); list-style-type: square; padding: 2px; margin: 0px; } #resultListText li { text-indent: 0px; list-style-position: outside; list-style-image: url(../img/orangeBullet.jpg); list-style-type: square; padding: 2px; margin: 0px; } /* Search Highlights */ .highlight { background-color: #9acd32; font-weight: bold; } .title { font-size: 14px; font-weight: bold; } .entryBox { border: 1px solid #006666; padding:20px; float: left; margin-top: 5px; width: 900px; } /* Rounded borders */ .resultItem { padding: 5px 5px 5px 10px; /* top right bottom left */ border: 1px solid #BBBBBB; border-radius:15px 15px 15px 15px; -moz-border-radius: 15px 15px 15px 15px; -webkit-border-radius:15px 15px 15px 15px; box-shadow: 0 0 .5em rgba(0, 0, 0, .8); -moz-box-shadow: 0 0 .5em rgba(0, 0, 0, .8); -webkit-box-shadow: 0 0 .5em rgba(0, 0, 0, .8); } /* Class for Filter items */ .filteritem { font-size: 10px; padding-left:5px; } .topSpacer { height:70px; } .topSpacerFilter { height:23px; } .topSpacerFilter.noText { height:32px; } #homepageLinks { text-align:center; margin-top:50px; } #homepageLinks a { color: #004242; text-decoration: none; font-weight:bold; padding:3px; } /* sddm: simple drop down menu CSS from in http://javascript-array.com/scripts/simple_drop_down_menu/ */ #sddm { margin: 0; padding: 0; z-index: 30; } #sddm li { margin: 0; padding: 0; list-style: none; float: left; font-weight: bold; float: right; } #sddm li a { display: block; margin: 0 1px 0 0; padding: 4px; color: #004242; text-align: center; text-decoration: none; } #sddm li a:hover { /*background: #49A3FF*/ color: #feba12; } #sddm div { position: absolute; visibility: hidden; margin: 0; padding: 0; border: 1px solid 006666 } #sddm div a { position: relative; display: block; margin: 0; padding: 5px 10px; width: auto; white-space: nowrap; text-align: left; text-decoration: none; background: #eef5f5; font-size: 11px; font-weight:normal; } #sddm div a:hover { background: #bdd7d7; color: #004242; } .big_submit { background-color: #006666; border: 1px solid #0A4F4F; -moz-border-radius: 5px; -khtml-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; color: white; font-size: 14px; padding: 4px 2px; margin-top: 4px; } .button_cell_dark { background-color: #006666; border: 1px solid #0A4F4F; -moz-border-radius: 5px; -khtml-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; color: white; font-size: 14px; padding: 4px 2px; margin-top: 4px; text-align: center; } .button_cell_pale { background-color: #ffd98f; border: 1px solid #0A4F4F; -moz-border-radius: 5px; -khtml-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; color: #000000; font-size: 14px; padding: 4px 2px; margin-top: 4px; text-align: center; } .img_alignment_yellow { vertical-align: middle; background: #ffd98f; padding: 4px } .img_alignment_green { vertical-align: middle; background:#eef5f5; padding: 4px } .img_alignment_dark { vertical-align: middle; background:#006666; padding: 4px } .smallArrow { position: relative; top: -1px; border-style: solid dashed dashed; border-color: transparent; border-top-color: #ffd98f; display: -moz-inline-box; display: inline-block; font-size: 0; height: 0; line-height: 0; width: 0; border-width: 5px 5px 0; padding-top: 1px; left: 4px; } .beta_link { position: absolute; left: 0; z-index: 100; }
examples/working.tmp/MTBLS1_DiagramUseCase/MetaboLights entryProtoc-Dateien/styles.css
* { margin: 0px; } html,body { text-align: center; font-weight: normal; } a { font-size: 12px; } /* Main structure styles (used to layout the header/footer) */ .wrapper { background: #ffffff url(../img/searchBox.png) repeat-x left top; height: auto !important; margin: -11px auto -4em; position: relative; width: 1024px; font-family: Verdana, Arial, Helvetica, Geneva, sans-serif; font-size: 12px; } #footer { background-color: #cccccc; padding-top: 5px; text-align: center; font-size: 80%; margin-top: 10px; float: left; width: 100%; height: 4em; color: #006666; padding-bottom: 5px; } #topAndBody { width: 1024px; text-align: left; margin: auto; padding-bottom: 15px; } /* Style for the top bar (=header) */ #top_bar { height: 57px; } #top_bar h1 { margin-top: 7px; width: 250px; height: 40px; font-size: 1px; text-indent: -9999px; background: url(../img/banner.png) no-repeat left top; float: left; margin-bottom: -20px; border:0px; padding:0px; } /* Style for the search box in the header */ #search-box input { float: left; width: 280px; border: 1px solid #6F4A00; margin: 15px 0px 0px 10px; /* top right bottom left */ font-size: 14px; height: 17px } #search-box .search-box-button { float: left; margin: 15px 0px 0px 0px; padding: 0px; height: 21px; width: 85px; cursor: pointer; border: 0px; background-image: url('../img/searchButton.png'); } .inputDiscrete { border: 1px solid #6F4A00; } .text_header { color: #006666; background: #eef5f5; padding: 10px 0px 5px 10px; font-size: 120%; font-weight: bold; border-radius:10px 10px 10px 10px; -moz-border-radius: 10px 10px 10px 10px; -webkit-border-radius:10px 10px 10px 10px; } .text_header.plain { background: #ffffff; padding: 10px 0px 5px 0px; } .text_header.yellow { background: #ffd98f; color: #000000; padding: 10px 0px 5px 5px; } .text-column { padding: 10px 10px 15px 0px; float: left; color: #444444; font-weight: lighter; line-height: 1.5; width: 30%; } .text-fullwidth { padding: 5px 5px 5px 0px; float: left; color: #444444; line-height: 1.5; width: 100%; } .text-fullwidth.bold { font-weight: bold; } .text-fullwidth.center { text-align:center; } .messageBox { border: 1px solid #006666; padding:5px 5px 5px 5px; float: left; margin-top: 3px; color:#006666; margin-top:-10px; height:15px; background:#ffd98f; font-weight:bold; } .loggedInAs { font-size:12px; margin-left:20px; color:#006666; font-weight: normal; } .loggedInAsBox { height:20px; border:0px solid purple; text-align:right; } .error { color:#AA0000; font-weight: bold; } .white { color:#ffffff; font-size: 8px; } .gray { color:#B0B0B0; } .formbox { margin-top:10px; padding-top:0px; padding-left:10px; padding-bottom:15px; padding-right:10px; border-radius:10px 10px 10px 10px; -moz-border-radius: 10px 10px 10px 10px; -webkit-border-radius:10px 10px 10px 10px; } /* extend formbox with a border, for entry and searchresults etc */ .formbox.border { border:1px solid #408c8c; } .filterbox { border:1px solid #408c8c; margin-top:10px; padding-top:10px; padding-left:10px; padding-bottom:10px; padding-right:10px; border-radius:10px 10px 10px 10px; -moz-border-radius: 10px 10px 10px 10px; -webkit-border-radius:10px 10px 10px 10px; } .formheader { /*background-color:#408c8c;color: #FFFFFF;*/ color: #408c8c; } .tableheader { padding: 10px 10px 10px 10px; } /* Table data styles*/ .tableitem { margin-top:10px; padding-top:10px; padding-left:10px; padding-bottom:10px; padding-right:10px; } /* paging */ #content p { text-align:left; } #pagingControlsBot ul { display:inline; padding-left:0.5em } #pagingControlsBot li { display:inline; padding:0 0.5em } #pagingControlsTop ul { display:inline; padding-left:0.5em } #pagingControlsTop li { display:inline; padding:0 0.5em } /* table like div tag stuff */ .iscell { float: left; padding: 5px 5px 5px 10px; /* top right bottom left */ text-align:left; text-indent:0px; bbborder: 1px solid black; } .iscell.left{ padding: 5px 5px 5px 0px; /* top right bottom left */ } .expandbox { display:none; border:1px dotted gray; border-radius:10px 10px 10px 10px; -moz-border-radius: 10px 10px 10px 10px; -webkit-border-radius:10px 10px 10px 10px; } #resultList li { text-indent: 5px; list-style-position: outside; list-style-image: url(../img/orangeBullet.jpg); list-style-type: square; padding: 2px; margin: 0px; } #resultListText li { text-indent: 0px; list-style-position: outside; list-style-image: url(../img/orangeBullet.jpg); list-style-type: square; padding: 2px; margin: 0px; } /* Search Highlights */ .highlight { background-color: #9acd32; font-weight: bold; } .title { font-size: 14px; font-weight: bold; } .entryBox { border: 1px solid #006666; padding:20px; float: left; margin-top: 5px; width: 900px; } /* Rounded borders */ .resultItem { padding: 5px 5px 5px 10px; /* top right bottom left */ border: 1px solid #BBBBBB; border-radius:15px 15px 15px 15px; -moz-border-radius: 15px 15px 15px 15px; -webkit-border-radius:15px 15px 15px 15px; box-shadow: 0 0 .5em rgba(0, 0, 0, .8); -moz-box-shadow: 0 0 .5em rgba(0, 0, 0, .8); -webkit-box-shadow: 0 0 .5em rgba(0, 0, 0, .8); } /* Class for Filter items */ .filteritem { font-size: 10px; padding-left:5px; } .topSpacer { height:70px; } .topSpacerFilter { height:23px; } .topSpacerFilter.noText { height:32px; } #homepageLinks { text-align:center; margin-top:50px; } #homepageLinks a { color: #004242; text-decoration: none; font-weight:bold; padding:3px; } /* sddm: simple drop down menu CSS from in http://javascript-array.com/scripts/simple_drop_down_menu/ */ #sddm { margin: 0; padding: 0; z-index: 30; } #sddm li { margin: 0; padding: 0; list-style: none; float: left; font-weight: bold; float: right; } #sddm li a { display: block; margin: 0 1px 0 0; padding: 4px; color: #004242; text-align: center; text-decoration: none; } #sddm li a:hover { /*background: #49A3FF*/ color: #feba12; } #sddm div { position: absolute; visibility: hidden; margin: 0; padding: 0; border: 1px solid 006666 } #sddm div a { position: relative; display: block; margin: 0; padding: 5px 10px; width: auto; white-space: nowrap; text-align: left; text-decoration: none; background: #eef5f5; font-size: 11px; font-weight:normal; } #sddm div a:hover { background: #bdd7d7; color: #004242; } .big_submit { background-color: #006666; border: 1px solid #0A4F4F; -moz-border-radius: 5px; -khtml-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; color: white; font-size: 14px; padding: 4px 2px; margin-top: 4px; } .button_cell_dark { background-color: #006666; border: 1px solid #0A4F4F; -moz-border-radius: 5px; -khtml-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; color: white; font-size: 14px; padding: 4px 2px; margin-top: 4px; text-align: center; } .button_cell_pale { background-color: #ffd98f; border: 1px solid #0A4F4F; -moz-border-radius: 5px; -khtml-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; color: #000000; font-size: 14px; padding: 4px 2px; margin-top: 4px; text-align: center; } .img_alignment_yellow { vertical-align: middle; background: #ffd98f; padding: 4px } .img_alignment_green { vertical-align: middle; background:#eef5f5; padding: 4px } .img_alignment_dark { vertical-align: middle; background:#006666; padding: 4px } .smallArrow { position: relative; top: -1px; border-style: solid dashed dashed; border-color: transparent; border-top-color: #ffd98f; display: -moz-inline-box; display: inline-block; font-size: 0; height: 0; line-height: 0; width: 0; border-width: 5px 5px 0; padding-top: 1px; left: 4px; } .beta_link { position: absolute; left: 0; z-index: 100; }
0.232136
0.110279
.header { position: relative; width: 100%; height: 80px; background-color: #000; } .header-menu { width: auto; height: auto; } .header-menu:hover { cursor: pointer; } .header-menu__icon { position: absolute; top: 25px; left: 50px; width: 30px; } .header-menu__title { position: absolute; top: 25px; left: 105px; color: #FFF; } .main { position: relative; width: 100%; height: auto; } .nav { position: relative; width: 0px; height: -webkit-calc(100vh); height: -moz-calc(100vh); height: calc(100vh); background-color: #212121; float: left; } .section { position: relative; width: 100%; height: -webkit-calc(100vh); height: -moz-calc(100vh); height: calc(100vh); padding: 20px 30px; background-color: #F8F8F9; float: left; } .section--med { width: 50%; } .footer { position: relative; width: 100%; height: 86px; background-color: black; float: left; } .chartSection { position: relative; width: 70%; height: auto; float: left; } .sale { position: relative; width: 30%; height: auto; float: left; } .tickets { position: relative; width: 100%; height: auto; margin: 0px auto; color: #fff; float: left; } .ticket { position: relative; width: 95%; height: auto; padding: 4%; margin: 5px; text-align: center; background-color: #212121; border-radius: 10px; float: left; } .ticket__title { font-size: 14pt; font-weight: bold; } .ticket__columns--four { position: relative; width: 25%; float: left; } .ticket__columns--two { position: relative; width: 50%; float: left; } .ticket__subtitle { font-size: 14pt; } .ticket__info { font-size: 12pt; } .ticket__subtitle--sma { font-size: 12pt; margin-top: 4px; } .ticket__info--sma { font-size: 10pt; margin-bottom: 4px; } .ticket__color--gray { color: #E0E0E0; } .ticket__color--black { color: #000; } .salesTitleSection { position: relative; width: 100%; float: left; } .salesTitle, .salesButton { position: relative; width: 40%; float: left; } /* ------------------------------------------------------------------------- */ .table--max-height { max-height: -webkit-calc(100vh - 80px); max-height: -moz-calc(100vh - 80px); max-height: calc(100vh - 80px); } #svg { position: relative; float: left; width: calc(60% - 18px); height: 630px; } svg { width: 100%; height: 600px; } #subtotal { position: relative; width: calc(40% - 10px); float: left; } #eventos { position: relative; float: left; } .area1, .area3, .area5, .area7 { fill:#D180E5; stroke:#530666; stroke-width:2; stroke-miterlimit:10; } .area1:hover, .area3:hover, .area5:hover, .area7:hover { fill: #bb45d9; } .area1:active, .area3:active, .area5:active, .area7:active { fill:#a729c7; } .area4, .area8 { fill:#477BD6; stroke:#15004F; stroke-width:2; stroke-miterlimit:10; } .area4:hover, .area8:hover { fill: #326dd2; } .area4:active, .area8:active { fill: #1f488e; } .area2, .area6 { fill:#CE112C; stroke:#5B0617; stroke-width:2; stroke-miterlimit:10; } .area2:hover, .area6:hover { fill:#b80f28; } .area2:active, .area6:active { fill:#a50d24; }
public/css/usr.css
.header { position: relative; width: 100%; height: 80px; background-color: #000; } .header-menu { width: auto; height: auto; } .header-menu:hover { cursor: pointer; } .header-menu__icon { position: absolute; top: 25px; left: 50px; width: 30px; } .header-menu__title { position: absolute; top: 25px; left: 105px; color: #FFF; } .main { position: relative; width: 100%; height: auto; } .nav { position: relative; width: 0px; height: -webkit-calc(100vh); height: -moz-calc(100vh); height: calc(100vh); background-color: #212121; float: left; } .section { position: relative; width: 100%; height: -webkit-calc(100vh); height: -moz-calc(100vh); height: calc(100vh); padding: 20px 30px; background-color: #F8F8F9; float: left; } .section--med { width: 50%; } .footer { position: relative; width: 100%; height: 86px; background-color: black; float: left; } .chartSection { position: relative; width: 70%; height: auto; float: left; } .sale { position: relative; width: 30%; height: auto; float: left; } .tickets { position: relative; width: 100%; height: auto; margin: 0px auto; color: #fff; float: left; } .ticket { position: relative; width: 95%; height: auto; padding: 4%; margin: 5px; text-align: center; background-color: #212121; border-radius: 10px; float: left; } .ticket__title { font-size: 14pt; font-weight: bold; } .ticket__columns--four { position: relative; width: 25%; float: left; } .ticket__columns--two { position: relative; width: 50%; float: left; } .ticket__subtitle { font-size: 14pt; } .ticket__info { font-size: 12pt; } .ticket__subtitle--sma { font-size: 12pt; margin-top: 4px; } .ticket__info--sma { font-size: 10pt; margin-bottom: 4px; } .ticket__color--gray { color: #E0E0E0; } .ticket__color--black { color: #000; } .salesTitleSection { position: relative; width: 100%; float: left; } .salesTitle, .salesButton { position: relative; width: 40%; float: left; } /* ------------------------------------------------------------------------- */ .table--max-height { max-height: -webkit-calc(100vh - 80px); max-height: -moz-calc(100vh - 80px); max-height: calc(100vh - 80px); } #svg { position: relative; float: left; width: calc(60% - 18px); height: 630px; } svg { width: 100%; height: 600px; } #subtotal { position: relative; width: calc(40% - 10px); float: left; } #eventos { position: relative; float: left; } .area1, .area3, .area5, .area7 { fill:#D180E5; stroke:#530666; stroke-width:2; stroke-miterlimit:10; } .area1:hover, .area3:hover, .area5:hover, .area7:hover { fill: #bb45d9; } .area1:active, .area3:active, .area5:active, .area7:active { fill:#a729c7; } .area4, .area8 { fill:#477BD6; stroke:#15004F; stroke-width:2; stroke-miterlimit:10; } .area4:hover, .area8:hover { fill: #326dd2; } .area4:active, .area8:active { fill: #1f488e; } .area2, .area6 { fill:#CE112C; stroke:#5B0617; stroke-width:2; stroke-miterlimit:10; } .area2:hover, .area6:hover { fill:#b80f28; } .area2:active, .area6:active { fill:#a50d24; }
0.377426
0.112893
๏ปฟ.inline { display: inline; } .page-header { margin-top: 0; } .page-header .text-right { margin-top: 22px; } .panel-default > .panel-heading { background: none; border: none; } .nav-tabs { margin-bottom: 15px; } th.sortable { cursor: pointer; } .st-sort-ascent:before{ content: '\25B2'; } .st-sort-descent:before{ content: '\25BC'; } .st-selected{ background: #216eff !important; color: white !important; } /* .date-filter { width: 170px; } */ .product-image-edit { display: inline-block; position: relative; border: 1px solid #ccc; margin: 1px; } .product-image-edit button { position: absolute; top: 0; right: 0; margin: 0; padding: 0; } .product-file-edit { display: inline-block; position: relative; border: 1px solid #ccc; margin: 1px; padding: 10px; } .product-file-edit button { padding: 0 2px 0 10px; font-size: 12px; } table > tbody > tr > td.variation-form { margin: 0; padding: 0; } .order-item-list .product-image img { width: 120px; } #toast-container>div { opacity: 1; } .input-number { position:relative; } .input-number label { position: absolute; left: 0px; top: 0px; cursor: pointer; font-weight: normal; } .input-number input:focus + label { display: none; } /* .simpl-datetime-picker { width: 300px; } */ td>span.glyphicon-ok { color: #5cb85c; } td>span.glyphicon-remove { color: #d9534f; } /* --- Tree --- */ .tree-node { border: 1px solid #dae2ea; background: #f8faff; color: #7c9eb2; } .nodrop { background-color: #f2dede; } .tree-node-content { margin: 10px; } .tree-handle { padding: 10px; background: #428bca; color: #FFF; margin-right: 10px; } .angular-ui-tree-handle:hover { } .angular-ui-tree-placeholder { background: #f0f9ff; border: 2px dashed #bed2db; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .entity-selector thead, .entity-selector tbody { display: block; } .entity-selector tbody { height: 300px; overflow-y: auto; overflow-x: hidden; } .entity-selector .entity-name { width: 200px; } .centered { float: none; margin: 0 auto; } .no-margin-bottom { margin-bottom: 0; } .no-margin-top { margin-top: 0; } .no-margin-right { margin-right: 0 !important; } .no-vertical-padding { padding-top: 0 !important; padding-bottom: 0 !important; } .form-group.required .control-label:after { content: "*"; color: red; } .input-validation-error, .ng-dirty.ng-invalid { border-color: red; } .order-summary { border-top: 2px dotted #dae2ea } .error { color: red; } /* Dont use validation on md elements */ .hide-validation .md-errors-spacer { display: none; } table.vertical-align-middle tr td { vertical-align: middle; } /* user list */ .actions { min-width: 5em; } .control-description { padding-top: 7px; } /* Orders */ .order-note-btn { font-size: 4rem; } .order-note-btn .empty { color: grey; } #order-note-modal .note { width: 100%; height: 10rem; } .st-selected a.editable-click { color: white; } /* Order import */ .order-import .success { color: green; } /* Others */ .text-right { text-align: right; } .loading { font-size: 2rem; color: green; }
src/Modules/SimplCommerce.Module.Core/wwwroot/admin/admin-core.css
๏ปฟ.inline { display: inline; } .page-header { margin-top: 0; } .page-header .text-right { margin-top: 22px; } .panel-default > .panel-heading { background: none; border: none; } .nav-tabs { margin-bottom: 15px; } th.sortable { cursor: pointer; } .st-sort-ascent:before{ content: '\25B2'; } .st-sort-descent:before{ content: '\25BC'; } .st-selected{ background: #216eff !important; color: white !important; } /* .date-filter { width: 170px; } */ .product-image-edit { display: inline-block; position: relative; border: 1px solid #ccc; margin: 1px; } .product-image-edit button { position: absolute; top: 0; right: 0; margin: 0; padding: 0; } .product-file-edit { display: inline-block; position: relative; border: 1px solid #ccc; margin: 1px; padding: 10px; } .product-file-edit button { padding: 0 2px 0 10px; font-size: 12px; } table > tbody > tr > td.variation-form { margin: 0; padding: 0; } .order-item-list .product-image img { width: 120px; } #toast-container>div { opacity: 1; } .input-number { position:relative; } .input-number label { position: absolute; left: 0px; top: 0px; cursor: pointer; font-weight: normal; } .input-number input:focus + label { display: none; } /* .simpl-datetime-picker { width: 300px; } */ td>span.glyphicon-ok { color: #5cb85c; } td>span.glyphicon-remove { color: #d9534f; } /* --- Tree --- */ .tree-node { border: 1px solid #dae2ea; background: #f8faff; color: #7c9eb2; } .nodrop { background-color: #f2dede; } .tree-node-content { margin: 10px; } .tree-handle { padding: 10px; background: #428bca; color: #FFF; margin-right: 10px; } .angular-ui-tree-handle:hover { } .angular-ui-tree-placeholder { background: #f0f9ff; border: 2px dashed #bed2db; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .entity-selector thead, .entity-selector tbody { display: block; } .entity-selector tbody { height: 300px; overflow-y: auto; overflow-x: hidden; } .entity-selector .entity-name { width: 200px; } .centered { float: none; margin: 0 auto; } .no-margin-bottom { margin-bottom: 0; } .no-margin-top { margin-top: 0; } .no-margin-right { margin-right: 0 !important; } .no-vertical-padding { padding-top: 0 !important; padding-bottom: 0 !important; } .form-group.required .control-label:after { content: "*"; color: red; } .input-validation-error, .ng-dirty.ng-invalid { border-color: red; } .order-summary { border-top: 2px dotted #dae2ea } .error { color: red; } /* Dont use validation on md elements */ .hide-validation .md-errors-spacer { display: none; } table.vertical-align-middle tr td { vertical-align: middle; } /* user list */ .actions { min-width: 5em; } .control-description { padding-top: 7px; } /* Orders */ .order-note-btn { font-size: 4rem; } .order-note-btn .empty { color: grey; } #order-note-modal .note { width: 100%; height: 10rem; } .st-selected a.editable-click { color: white; } /* Order import */ .order-import .success { color: green; } /* Others */ .text-right { text-align: right; } .loading { font-size: 2rem; color: green; }
0.469763
0.099077
body { padding-top: 20px; padding-bottom: 20px; background:url(/static/added/images/back4.png) } .panel-table .panel-body{ padding:0; } .panel-table .panel-body .table-bordered{ border-style: none; margin:0; } .panel-table .panel-body .table-bordered > thead > tr > th:first-of-type { text-align:center; width: 100px; } .panel-table .panel-body .table-bordered > thead > tr > th:last-of-type, .panel-table .panel-body .table-bordered > tbody > tr > td:last-of-type { border-right: 0px; } .panel-table .panel-body .table-bordered > thead > tr > th:first-of-type, .panel-table .panel-body .table-bordered > tbody > tr > td:first-of-type { border-left: 0px; } .panel-table .panel-body .table-bordered > tbody > tr:first-of-type > td{ border-bottom: 0px; } .panel-table .panel-body .table-bordered > thead > tr:first-of-type > th{ border-top: 0px; } .panel-table .panel-footer .pagination{ margin:0; } /* used to vertically center elements, may need modification if you're not using default sizes. */ .panel-table .panel-footer .col{ line-height: 34px; height: 34px; } .panel-table .panel-heading .col h3{ line-height: 30px; height: 30px; font-size: 18px; font-style: inherit; font-weight: bold; } .panel-table .panel-body .table-bordered > tbody > tr > td{ line-height: 34px; } .navbar-brand { padding: 00px 15px; } .navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover { background-color: #ddd; } .navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover { background-color: #ddd; } legend { padding-bottom: 3px } .modal-dialog { margin-top: 10% } /* FILTER */ .filterable { margin-top: 15px; } .filterable .panel-heading .pull-right { margin-top: -20px; } .filterable .filters input[disabled] { background-color: transparent; border: none; cursor: auto; box-shadow: none; padding: 0; height: auto; } .filterable .filters input[disabled]::-webkit-input-placeholder { color: #333; } .filterable .filters input[disabled]::-moz-placeholder { color: #333; } .filterable .filters input[disabled]:-ms-input-placeholder { color: #333; } /* END FILTER */ .alert { margin-bottom: 14px; } .alert-default{ color: #; background-color: #f5f5f5; border-color: #ddd; } .container { padding-right: 0px; padding-left: 0px; } .table>thead>tr>th { vertical-align: middle; } .table { margin-bottom: 0px; } /* Sticky Footer */ /* body { margin-bottom: 60px; } .footer { position: absolute; bottom: 0; width: 100%; height: 60px; background-color: #f5f5f5; } .container .text-muted { margin: 20px 0; } .footer > .container { padding-right: 15px; padding-left: 15px; } code { font-size: 80%; } */
website/static/added/css/my.css
body { padding-top: 20px; padding-bottom: 20px; background:url(/static/added/images/back4.png) } .panel-table .panel-body{ padding:0; } .panel-table .panel-body .table-bordered{ border-style: none; margin:0; } .panel-table .panel-body .table-bordered > thead > tr > th:first-of-type { text-align:center; width: 100px; } .panel-table .panel-body .table-bordered > thead > tr > th:last-of-type, .panel-table .panel-body .table-bordered > tbody > tr > td:last-of-type { border-right: 0px; } .panel-table .panel-body .table-bordered > thead > tr > th:first-of-type, .panel-table .panel-body .table-bordered > tbody > tr > td:first-of-type { border-left: 0px; } .panel-table .panel-body .table-bordered > tbody > tr:first-of-type > td{ border-bottom: 0px; } .panel-table .panel-body .table-bordered > thead > tr:first-of-type > th{ border-top: 0px; } .panel-table .panel-footer .pagination{ margin:0; } /* used to vertically center elements, may need modification if you're not using default sizes. */ .panel-table .panel-footer .col{ line-height: 34px; height: 34px; } .panel-table .panel-heading .col h3{ line-height: 30px; height: 30px; font-size: 18px; font-style: inherit; font-weight: bold; } .panel-table .panel-body .table-bordered > tbody > tr > td{ line-height: 34px; } .navbar-brand { padding: 00px 15px; } .navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover { background-color: #ddd; } .navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover { background-color: #ddd; } legend { padding-bottom: 3px } .modal-dialog { margin-top: 10% } /* FILTER */ .filterable { margin-top: 15px; } .filterable .panel-heading .pull-right { margin-top: -20px; } .filterable .filters input[disabled] { background-color: transparent; border: none; cursor: auto; box-shadow: none; padding: 0; height: auto; } .filterable .filters input[disabled]::-webkit-input-placeholder { color: #333; } .filterable .filters input[disabled]::-moz-placeholder { color: #333; } .filterable .filters input[disabled]:-ms-input-placeholder { color: #333; } /* END FILTER */ .alert { margin-bottom: 14px; } .alert-default{ color: #; background-color: #f5f5f5; border-color: #ddd; } .container { padding-right: 0px; padding-left: 0px; } .table>thead>tr>th { vertical-align: middle; } .table { margin-bottom: 0px; } /* Sticky Footer */ /* body { margin-bottom: 60px; } .footer { position: absolute; bottom: 0; width: 100%; height: 60px; background-color: #f5f5f5; } .container .text-muted { margin: 20px 0; } .footer > .container { padding-right: 15px; padding-left: 15px; } code { font-size: 80%; } */
0.412175
0.071526
@tailwind base; @tailwind components; @tailwind utilities; .task-list-item::before { @apply hidden; } .task-list-item { @apply list-none; } .footnotes { @apply mt-12 border-t border-gray-200 pt-8 dark:border-gray-700; } .csl-entry { @apply my-5; } /* https://stackoverflow.com/questions/61083813/how-to-avoid-internal-autofill-selected-style-to-be-applied */ input:-webkit-autofill, input:-webkit-autofill:focus { transition: background-color 600000s 0s, color 600000s 0s; } /* cyrillic-ext */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 300; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYlK-4E4Q.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 300; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYsK-4E4Q.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* vietnamese */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 300; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYnK-4E4Q.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 300; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYmK-4E4Q.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 300; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYoK-4.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 400; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYlK-4E4Q.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 400; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYsK-4E4Q.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* vietnamese */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 400; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYnK-4E4Q.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 400; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYmK-4E4Q.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 400; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYoK-4.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 600; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYlK-4E4Q.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 600; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYsK-4E4Q.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* vietnamese */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 600; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYnK-4E4Q.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 600; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYmK-4E4Q.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 600; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYoK-4.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 700; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYlK-4E4Q.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 700; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYsK-4E4Q.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* vietnamese */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 700; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYnK-4E4Q.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 700; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYmK-4E4Q.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 700; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYoK-4.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } body { font-family: 'Exo 2', Roboto, 'Segoe UI', 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; } .prose .inline-link { margin-top: 0; line-height: 10px; height: 0; display: inline; margin: 0 8px 0 3px; } .prose .inline-link svg { display: inline; } .each-job ul li { line-height: 1.5em; } .tags-page .tag-item { float: left; border-radius: 20px; padding: 10px 15px; margin-right: 15px; margin-bottom: 15px; } .tags-page .tag-item a { font-size: 1em; font-weight: 500; } .tags-page .tag-item .tag-count { color: #bebebe; } @media screen and (max-width: 576px) { .copyright-wrapper { display: block !important; } footer .space-x-2 > a, footer .space-x-2 > div { margin-left: 0 !important; display: block; margin-right: 0 !important; } }
css/tailwind.css
@tailwind base; @tailwind components; @tailwind utilities; .task-list-item::before { @apply hidden; } .task-list-item { @apply list-none; } .footnotes { @apply mt-12 border-t border-gray-200 pt-8 dark:border-gray-700; } .csl-entry { @apply my-5; } /* https://stackoverflow.com/questions/61083813/how-to-avoid-internal-autofill-selected-style-to-be-applied */ input:-webkit-autofill, input:-webkit-autofill:focus { transition: background-color 600000s 0s, color 600000s 0s; } /* cyrillic-ext */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 300; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYlK-4E4Q.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 300; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYsK-4E4Q.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* vietnamese */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 300; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYnK-4E4Q.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 300; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYmK-4E4Q.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 300; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYoK-4.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 400; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYlK-4E4Q.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 400; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYsK-4E4Q.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* vietnamese */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 400; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYnK-4E4Q.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 400; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYmK-4E4Q.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 400; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYoK-4.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 600; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYlK-4E4Q.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 600; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYsK-4E4Q.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* vietnamese */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 600; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYnK-4E4Q.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 600; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYmK-4E4Q.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 600; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYoK-4.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 700; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYlK-4E4Q.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 700; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYsK-4E4Q.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* vietnamese */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 700; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYnK-4E4Q.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 700; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYmK-4E4Q.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Exo 2'; font-style: normal; font-weight: 700; font-display: swap; src: url('/static/fonts/7cHmv4okm5zmbtYoK-4.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } body { font-family: 'Exo 2', Roboto, 'Segoe UI', 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; } .prose .inline-link { margin-top: 0; line-height: 10px; height: 0; display: inline; margin: 0 8px 0 3px; } .prose .inline-link svg { display: inline; } .each-job ul li { line-height: 1.5em; } .tags-page .tag-item { float: left; border-radius: 20px; padding: 10px 15px; margin-right: 15px; margin-bottom: 15px; } .tags-page .tag-item a { font-size: 1em; font-weight: 500; } .tags-page .tag-item .tag-count { color: #bebebe; } @media screen and (max-width: 576px) { .copyright-wrapper { display: block !important; } footer .space-x-2 > a, footer .space-x-2 > div { margin-left: 0 !important; display: block; margin-right: 0 !important; } }
0.36659
0.078148
ol>li[data-type="multipleselect"] .field { border:none !important; } ol>li[data-type="multipleselect"] .field .selected, ol>li[data-type="multipleselect"] .field .available { width:49.5%; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; box-sizing:border-box; padding:10px; -moz-border-radius:2px; -webkit-border-radius:2px; border-radius:2px; position:relative; } /********************************************************************************************/ /* Available & selected /********************************************************************************************/ ol>li[data-type="multipleselect"] .field li { border:1px solid #dedede; background:#fff; margin:1px 0; height:34px; line-height:34px; font-size:0.9em; -moz-border-radius:2px; -webkit-border-radius:2px; border-radius:2px; text-shadow: 0 1px 0 rgba(255,255,255,0.9); -moz-user-select:none; -webkit-user-select:none; position:relative; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; } li.ui-draggable-dragging { } ol>li[data-type="multipleselect"] .field li:hover { border-color: #419BF9; -webkit-box-shadow: 0 0 4px #419BF9; box-shadow: 0 0 4px #419BF9; } ol>li[data-type="multipleselect"] .field li[data-status="asleep"] { opacity:0.6; } /* Fields */ ol>li[data-type="multipleselect"] .field li .icon { width:17px; height:17px; float:left; margin:0 !important; display:none; } ol>li[data-type="multipleselect"] .field li .title { /*cursor:pointer;*/ padding:0 23px 0 10px; } ol>li[data-type="multipleselect"] .field li .title:not(:hover) { color:#333; } ol>li[data-type="multipleselect"] .field li .delete { top:1px; right:0px; display:none; } ol>li[data-type="multipleselect"] .field li:hover .delete { display:block; } /* Add */ ol>li[data-type="multipleselect"] .field .add { text-align:center; margin-top:5px; } ol>li[data-type="multipleselect"] .field .add button { cursor:pointer; border:none !important; height:30px; display:block; line-height:30px; width:100%; padding:0 !important; } ol>li[data-type="multipleselect"] .field .add button:after { content:"+"; font-size:28px; } ol>li[data-type="multipleselect"] .field .add:hover button: { color:#419BF9; } /********************************************************************************************/ /* Selected /********************************************************************************************/ ol>li[data-type="multipleselect"] .field .selected { float:left; border:1px dashed #ddd; -webkit-transition: all .15s ease-out; -moz-transition: all .15s ease-out; -o-transition: all .15s ease-out; transition: all .15s ease-out; } ol>li[data-type="multipleselect"] .field .selected li:not(.ui-draggable-dragging) { width:100% !important; cursor:ns-resize; } ol>li[data-type="multipleselect"] .field .selected li .delete { opacity:0.2; } ol>li[data-type="multipleselect"] .field .selected li:hover .delete { opacity:1; } /* Nodata */ ol>li[data-type="multipleselect"] .field .selected ol { min-height:100px; } ol>li[data-type="multipleselect"] .field .selected ol:empty { line-height:100px; } /********************************************************************************************/ /* Available /********************************************************************************************/ ol>li[data-type="multipleselect"] .field .available { float:right; background:#F3F3F3; } ol>li[data-type="multipleselect"] .field .available.focus { border-color: #FF0000; -webkit-box-shadow: 0 0 4px #FF0000; box-shadow: 0 0 4px #FF0000; } ol>li[data-type="multipleselect"] .field .available ul { overflow:auto; max-height:250px; } ol>li[data-type="multipleselect"] .field .available ul li { cursor:move; } ol>li[data-type="multipleselect"] .field .available ul li .delete { display:none; } /* Refine */ ol>li[data-type="multipleselect"] .refine input { width:100% !important; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; box-sizing:border-box; margin:0 0 5px 0; padding:7px 5px; border:1px solid #ccc; -moz-border-radius:3px; -webkit-border-radius:3px; border-radius:3px; }
grandcentral/field/template/css/multipleselect.css
ol>li[data-type="multipleselect"] .field { border:none !important; } ol>li[data-type="multipleselect"] .field .selected, ol>li[data-type="multipleselect"] .field .available { width:49.5%; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; box-sizing:border-box; padding:10px; -moz-border-radius:2px; -webkit-border-radius:2px; border-radius:2px; position:relative; } /********************************************************************************************/ /* Available & selected /********************************************************************************************/ ol>li[data-type="multipleselect"] .field li { border:1px solid #dedede; background:#fff; margin:1px 0; height:34px; line-height:34px; font-size:0.9em; -moz-border-radius:2px; -webkit-border-radius:2px; border-radius:2px; text-shadow: 0 1px 0 rgba(255,255,255,0.9); -moz-user-select:none; -webkit-user-select:none; position:relative; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; } li.ui-draggable-dragging { } ol>li[data-type="multipleselect"] .field li:hover { border-color: #419BF9; -webkit-box-shadow: 0 0 4px #419BF9; box-shadow: 0 0 4px #419BF9; } ol>li[data-type="multipleselect"] .field li[data-status="asleep"] { opacity:0.6; } /* Fields */ ol>li[data-type="multipleselect"] .field li .icon { width:17px; height:17px; float:left; margin:0 !important; display:none; } ol>li[data-type="multipleselect"] .field li .title { /*cursor:pointer;*/ padding:0 23px 0 10px; } ol>li[data-type="multipleselect"] .field li .title:not(:hover) { color:#333; } ol>li[data-type="multipleselect"] .field li .delete { top:1px; right:0px; display:none; } ol>li[data-type="multipleselect"] .field li:hover .delete { display:block; } /* Add */ ol>li[data-type="multipleselect"] .field .add { text-align:center; margin-top:5px; } ol>li[data-type="multipleselect"] .field .add button { cursor:pointer; border:none !important; height:30px; display:block; line-height:30px; width:100%; padding:0 !important; } ol>li[data-type="multipleselect"] .field .add button:after { content:"+"; font-size:28px; } ol>li[data-type="multipleselect"] .field .add:hover button: { color:#419BF9; } /********************************************************************************************/ /* Selected /********************************************************************************************/ ol>li[data-type="multipleselect"] .field .selected { float:left; border:1px dashed #ddd; -webkit-transition: all .15s ease-out; -moz-transition: all .15s ease-out; -o-transition: all .15s ease-out; transition: all .15s ease-out; } ol>li[data-type="multipleselect"] .field .selected li:not(.ui-draggable-dragging) { width:100% !important; cursor:ns-resize; } ol>li[data-type="multipleselect"] .field .selected li .delete { opacity:0.2; } ol>li[data-type="multipleselect"] .field .selected li:hover .delete { opacity:1; } /* Nodata */ ol>li[data-type="multipleselect"] .field .selected ol { min-height:100px; } ol>li[data-type="multipleselect"] .field .selected ol:empty { line-height:100px; } /********************************************************************************************/ /* Available /********************************************************************************************/ ol>li[data-type="multipleselect"] .field .available { float:right; background:#F3F3F3; } ol>li[data-type="multipleselect"] .field .available.focus { border-color: #FF0000; -webkit-box-shadow: 0 0 4px #FF0000; box-shadow: 0 0 4px #FF0000; } ol>li[data-type="multipleselect"] .field .available ul { overflow:auto; max-height:250px; } ol>li[data-type="multipleselect"] .field .available ul li { cursor:move; } ol>li[data-type="multipleselect"] .field .available ul li .delete { display:none; } /* Refine */ ol>li[data-type="multipleselect"] .refine input { width:100% !important; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; box-sizing:border-box; margin:0 0 5px 0; padding:7px 5px; border:1px solid #ccc; -moz-border-radius:3px; -webkit-border-radius:3px; border-radius:3px; }
0.136954
0.062789
/***********************************************/ /* HTML tag styles */ /***********************************************/ body{ font-family: Arial,sans-serif; color: #333333; line-height: 1.166; margin: 0px; padding: 0px; } a{ color: #006699; text-decoration: none; } a:link{ color: #006699; text-decoration: none; } a:visited{ color: #006699; text-decoration: none; } a:hover{ color: #006699; text-decoration: underline; } h1{ font-family: Verdana,Arial,sans-serif; font-size: 120%; color: #334d55; margin: 0px; padding: 0px; } h2{ font-family: Arial,sans-serif; font-size: 114%; color: #006699; margin: 0px; padding: 0px; } h3{ font-family: Arial,sans-serif; font-size: 100%; color: #334d55; margin: 0px; padding: 0px; } h4{ font-family: Arial,sans-serif; font-size: 100%; font-weight: normal; color: #333333; margin: 0px; padding: 0px; } h5{ font-family: Verdana,Arial,sans-serif; font-size: 100%; color: #334d55; margin: 0px; padding: 0px; } ul{ list-style-type: square; } ul ul{ list-style-type: disc; } ul ul ul{ list-style-type: none; } label{ font-family: Arial,sans-serif; font-size: 100%; font-weight: bold; color: #334d55; } /***********************************************/ /* Layout Divs */ /***********************************************/ #masthead{ padding: 10px 0px 0px 0px; border-bottom: 1px solid #cccccc; width: 100%; } #navBar{ float: left; width: 17%; margin: 10px; padding: 0px; background-color: ; border-right: 1px solid #FAFAFA; border-bottom: 1px solid #FAFAFA; } #headlines{ float:right; width: 20%; margin: 10px; border-left: 1px solid #FAFAFA; border-bottom: 1px solid #FAFAFA; padding-right: 30px; } #content{ float: left; width: 58%; } /***********************************************/ /* Components */ /***********************************************/ #siteName{ margin: 0; padding: 0 0 0 10px; } /************* #globalNav styles **************/ #globalNav{ padding: 0px 0px 5px 10px; border-bottom: 1px solid #CCC; color: #cccccc; } #globalNav img{ display: block; } #globalNav a { font-size: 90%; padding: 0 4px 0 0; } /*************** #pageName styles **************/ #pageName{ margin: 0px; padding: 0px 0px 0px 10px; } /************* #breadCrumb styles *************/ #breadCrumb{ font-size: 80%; padding: 2px 0px 0 10px; } /************** .feature styles ***************/ .feature{ padding: 0px 0px 10px 10px; font-size: 80%; } .feature h3{ padding: 30px 0px 5px 0px; text-align: center; } .feature img{ float: left; padding: 10px 10px 0px 0px; } /************** .story styles *****************/ .story{ clear: both; padding: 10px 0px 0px 10px; font-size: 80%; } .story p{ padding: 0px 0px 10px 0px; } /************* #siteInfo styles ***************/ #siteInfo{ clear: both; border: 1px solid #cccccc; font-size: 75%; color: #cccccc; padding: 10px 10px 10px 10px; } #siteInfo img{ padding: 4px 4px 4px 10px; vertical-align: middle; } /************* #search styles ***************/ #search{ padding: 5px 0px 5px 10px; border-bottom: 1px solid #cccccc; font-size: 90%; } #search form{ margin: 0px; padding: 0px; } #search label{ display: block; margin: 0px; padding: 0px; } /*********** #navBar link styles ***********/ #navBar ul a:link, #navBar ul a:visited {display: block;} #navBar ul {list-style: none; margin: 0; padding: 0;} /* hack to fix IE/Win's broken rendering of block-level anchors in lists */ #navBar li {border-bottom: 1px solid #EEE;} /* fix for browsers that don't need the hack */ html>body #navBar li {border-bottom: none;} /*********** #sectionLinks styles ***********/ #sectionLinks{ position: relative; margin: 0px; padding: 0px; border-bottom: 1px solid #cccccc; font-size: 90%; } #sectionLinks h3{ padding: 10px 0px 2px 10px; } #sectionLinks a { display: block; border-top: 1px solid #cccccc; padding: 2px 0px 2px 10px; } #sectionLinks a:hover{ background-color: #dddddd; } /*********** .relatedLinks styles ***********/ .relatedLinks{ position: relative; margin: 0px; padding: 0px 0px 10px 10px; font-size: 90%; } .relatedLinks h3{ padding: 10px 0px 2px 0px; } .relatedLinks a:link, .relatedLinks a:visited { display: block; } /************** #advert styles **************/ #advert{ padding: 30px 0px 10px; } #advert img{ display: block; } /************** #headlines styles **************/ #headlines{ margin: 0px; padding: 10px 0px 20px 10px; font-size: 80%; } #headlines p{ padding: 5px 0px 5px 0px; }
resources/css/3col_leftNav.css
/***********************************************/ /* HTML tag styles */ /***********************************************/ body{ font-family: Arial,sans-serif; color: #333333; line-height: 1.166; margin: 0px; padding: 0px; } a{ color: #006699; text-decoration: none; } a:link{ color: #006699; text-decoration: none; } a:visited{ color: #006699; text-decoration: none; } a:hover{ color: #006699; text-decoration: underline; } h1{ font-family: Verdana,Arial,sans-serif; font-size: 120%; color: #334d55; margin: 0px; padding: 0px; } h2{ font-family: Arial,sans-serif; font-size: 114%; color: #006699; margin: 0px; padding: 0px; } h3{ font-family: Arial,sans-serif; font-size: 100%; color: #334d55; margin: 0px; padding: 0px; } h4{ font-family: Arial,sans-serif; font-size: 100%; font-weight: normal; color: #333333; margin: 0px; padding: 0px; } h5{ font-family: Verdana,Arial,sans-serif; font-size: 100%; color: #334d55; margin: 0px; padding: 0px; } ul{ list-style-type: square; } ul ul{ list-style-type: disc; } ul ul ul{ list-style-type: none; } label{ font-family: Arial,sans-serif; font-size: 100%; font-weight: bold; color: #334d55; } /***********************************************/ /* Layout Divs */ /***********************************************/ #masthead{ padding: 10px 0px 0px 0px; border-bottom: 1px solid #cccccc; width: 100%; } #navBar{ float: left; width: 17%; margin: 10px; padding: 0px; background-color: ; border-right: 1px solid #FAFAFA; border-bottom: 1px solid #FAFAFA; } #headlines{ float:right; width: 20%; margin: 10px; border-left: 1px solid #FAFAFA; border-bottom: 1px solid #FAFAFA; padding-right: 30px; } #content{ float: left; width: 58%; } /***********************************************/ /* Components */ /***********************************************/ #siteName{ margin: 0; padding: 0 0 0 10px; } /************* #globalNav styles **************/ #globalNav{ padding: 0px 0px 5px 10px; border-bottom: 1px solid #CCC; color: #cccccc; } #globalNav img{ display: block; } #globalNav a { font-size: 90%; padding: 0 4px 0 0; } /*************** #pageName styles **************/ #pageName{ margin: 0px; padding: 0px 0px 0px 10px; } /************* #breadCrumb styles *************/ #breadCrumb{ font-size: 80%; padding: 2px 0px 0 10px; } /************** .feature styles ***************/ .feature{ padding: 0px 0px 10px 10px; font-size: 80%; } .feature h3{ padding: 30px 0px 5px 0px; text-align: center; } .feature img{ float: left; padding: 10px 10px 0px 0px; } /************** .story styles *****************/ .story{ clear: both; padding: 10px 0px 0px 10px; font-size: 80%; } .story p{ padding: 0px 0px 10px 0px; } /************* #siteInfo styles ***************/ #siteInfo{ clear: both; border: 1px solid #cccccc; font-size: 75%; color: #cccccc; padding: 10px 10px 10px 10px; } #siteInfo img{ padding: 4px 4px 4px 10px; vertical-align: middle; } /************* #search styles ***************/ #search{ padding: 5px 0px 5px 10px; border-bottom: 1px solid #cccccc; font-size: 90%; } #search form{ margin: 0px; padding: 0px; } #search label{ display: block; margin: 0px; padding: 0px; } /*********** #navBar link styles ***********/ #navBar ul a:link, #navBar ul a:visited {display: block;} #navBar ul {list-style: none; margin: 0; padding: 0;} /* hack to fix IE/Win's broken rendering of block-level anchors in lists */ #navBar li {border-bottom: 1px solid #EEE;} /* fix for browsers that don't need the hack */ html>body #navBar li {border-bottom: none;} /*********** #sectionLinks styles ***********/ #sectionLinks{ position: relative; margin: 0px; padding: 0px; border-bottom: 1px solid #cccccc; font-size: 90%; } #sectionLinks h3{ padding: 10px 0px 2px 10px; } #sectionLinks a { display: block; border-top: 1px solid #cccccc; padding: 2px 0px 2px 10px; } #sectionLinks a:hover{ background-color: #dddddd; } /*********** .relatedLinks styles ***********/ .relatedLinks{ position: relative; margin: 0px; padding: 0px 0px 10px 10px; font-size: 90%; } .relatedLinks h3{ padding: 10px 0px 2px 0px; } .relatedLinks a:link, .relatedLinks a:visited { display: block; } /************** #advert styles **************/ #advert{ padding: 30px 0px 10px; } #advert img{ display: block; } /************** #headlines styles **************/ #headlines{ margin: 0px; padding: 10px 0px 20px 10px; font-size: 80%; } #headlines p{ padding: 5px 0px 5px 0px; }
0.11822
0.051201
@charset "UTF-8"; body { background-color: #f9f9f9; font-family: Arial, Helvetica, sans-serif; } * { box-sizing: border-box; } .yt { font-family: "Open Sans", "Segoe UI"; overflow: hidden; } .yt .yt__topNav { width: 86%; height: 7rem; position: fixed; top: 0; left: 14.1%; z-index: 1; background-color: white; opacity: 0.99; } .yt .yt__topNav .yt__topNavFirstHalf { margin-top: 0.8%; height: 40%; } .yt .yt__topNav .yt__topNavFirstHalf .yt__sideNavTitle--smallScreen { display: none; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavSearch { display: inline; position: relative; left: 25%; height: 35px; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavSearch button { margin-left: -1%; padding: 7px 25px 6px 25px; background-color: #f7f7f7; border: 1px solid lightgray; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavSearch button:hover { background-color: #ececec; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavSearch button:focus { outline: none; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavSearch input { width: 35%; height: 25px; font-size: 17px; border: 1px solid lightgray; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavSearch input:focus { outline: none; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavSearch input[type=text] { padding: 14px; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps--search { display: none; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps { width: 12%; height: 100%; margin-right: 1%; margin-top: -3px; float: right; display: flex; justify-content: space-around; align-items: center; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps svg { width: 15%; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps img { width: 15%; border-radius: 50%; } .yt .yt__topNav .yt__topNavDivider { height: 1px; background-color: #c7c7c7; width: 100%; } .yt .yt__topNav .yt__topNavOptions { display: flex; justify-content: space-between; width: 95rem; overflow: hidden; margin: auto; } .yt .yt__topNav .yt__topNavOptions .yt__topNavOptions--button { margin: 12px 12px 12px 0px; padding: 5px 12px; background-color: #f1f1f1; border-radius: 16px; box-sizing: border-box; white-space: nowrap; outline: none; overflow: hidden; border: 1px solid lightgray; font-size: 14px; display: flex; justify-content: center; align-items: center; } .yt .yt__topNav .yt__topNavOptions .yt__topNavOptions--button:hover { transition: background-color 0.5s cubic-bezier(0.05, 0, 0, 1); background-color: #dbdbdb; } .yt .yt__topNav .yt__topNavOptions .yt__topNavOptions--buttonFirst { background-color: dimgray; color: white; } .yt .yt__sideNavTitle { height: 7%; display: flex; align-items: center; width: 14%; background-color: white; position: fixed; top: 0; left: 0; z-index: 5; } .yt .yt__sideNavTitle .yt__sideNavOptionBox--logo { width: 70%; margin: 0 7.5% 0 10%; } .yt .yt__sideNavTitle .yt__sideNavOptionBox--logo svg { width: 70%; } .yt .yt__sideNavTitle .yt__sideNavTitle--logoBox img { width: 50%; } .yt .yt__sideNavTitle .yt__sideNavTitle--logoBox span { position: absolute; bottom: 35px; left: 67%; float: right; opacity: 1; font-size: 10.4px; } .yt .yt__sideNav { width: 14%; background-color: white; height: 1000px; overflow-y: overlay; position: fixed; left: 0; top: 7%; } .yt .yt__sideNav::-webkit-scrollbar { margin: 0; padding: 0; width: 8px; height: 5px; background-color: transparent; } .yt .yt__sideNav::-webkit-scrollbar-track { background-color: transparent; margin-top: 253px; margin-bottom: 350px; } .yt .yt__sideNav:hover::-webkit-scrollbar-track { background-color: #e6e4e4; } .yt .yt__sideNav a { text-decoration: none; } .yt .yt__sideNav .yt__sideNavOptionBox { position: relative; top: 0%; height: 4.1%; display: flex; align-items: center; padding: 0 10%; font-family: "Roboto"; font-size: 15px; color: #030303; } .yt .yt__sideNav .yt__sideNavOptionBox:hover { background-color: #f1f0f0; } .yt .yt__sideNav .yt__sideNavOptionBox--logo { width: 25%; margin: 0 1% 0 0; } .yt .yt__sideNav .yt__sideNavOptionBox--logo svg { width: 50%; } .yt .yt__sideNav .yt__sideNavOptionBox--logo img { width: 55%; border-radius: 50%; } .yt .yt__sideNav .yt__sideNavOptionBox--section { border-top: 1px solid #c7c7c7; margin-top: 12px; padding-top: 12px; } .yt .yt__sideNav .yt__sideNavSection--title { padding: 0 10% 5% 10%; font-family: "Roboto"; font-size: 14px; font-weight: 600; letter-spacing: 0.5px; color: #606060; margin-top: 1%; } .yt .yt__sideNav .yt__sideNavInfo--first, .yt .yt__sideNav .yt__sideNavInfo--second { width: 70%; margin-left: 10%; } .yt .yt__sideNav .yt__sideNavInfo--first a, .yt .yt__sideNav .yt__sideNavInfo--second a { display: inline-block; white-space: nowrap; font-size: 0.8rem; font-weight: 500; line-height: 0.8rem; color: #606060; margin-right: 5px; } .yt .yt__sideNav .yt__sideNavInfo--first a:visited, .yt .yt__sideNav .yt__sideNavInfo--second a:visited { color: #606060; } .yt .yt__sideNav .yt__sideNavInfo--second { margin-top: 8%; width: 85%; } .yt .yt__sideNav .yt__copyright { width: 80%; padding: 20px 24px; font-size: 0.9rem; color: #909090; } .yt__sideNav--smallScreen { display: none; } .yt__songs { width: 78%; position: absolute; left: 17%; top: 13.5%; display: grid; grid-template-columns: repeat(4, 1fr); grid-column-gap: 1.5%; grid-row-gap: 0%; } .yt__songs .yt__songsBox { width: 99%; height: 20rem; } .yt__songs .yt__songsBox iframe { width: 100%; height: 60%; } .yt__songs .yt__songsBox img { position: relative; top: 2%; border-radius: 50%; display: block; float: left; width: 10%; } .yt__songs .yt__songsBox .yt__songBox--text { position: relative; top: 2%; margin-left: 13%; margin-right: 10%; } .yt__songs .yt__songsBox .yt__songBox--text h1 { margin: 0; font-size: 16px; line-height: 1.3rem; max-height: 4rem; font-weight: 500; text-overflow: ellipsis; white-space: normal; color: #030303; } .yt__songs .yt__songsBox .yt__songBox--text .yt__songBoxDot::after { content: "โ€ข"; margin: 0 4px; } .yt__songs .yt__songsBox .yt__songBox--text span { font-size: 14px; color: #606060; position: relative; top: 2px; } @media only screen and (max-width: 1400px) { .yt .yt__topNav { width: 94%; height: 7rem; left: 6%; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavSearch { left: 10%; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps { width: 20%; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps svg { width: 15%; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps img { width: 15%; } .yt .yt__topNav .yt__topNavFirstHalf .yt__sideNavTitle--smallScreen { display: inline-block; position: relative; top: 15%; } .yt .yt__topNav .yt__topNavFirstHalf .yt__sideNavTitle--smallScreen img { width: 7rem; } .yt .yt__topNav .yt__topNavFirstHalf .yt__sideNavTitle--smallScreen .yt__sideNavTitle--countryCode { position: relative; font-size: 10.4px; } .yt .yt__sideNavTitle { display: none; } .yt .yt__sideNav--smallScreen { display: block; height: 1000px; background-color: white; z-index: 3; width: 5.9%; position: fixed; left: 0; top: 0; display: flex; flex-direction: column; align-items: center; } .yt .yt__sideNav--smallScreen svg { margin-top: 35px; width: 32%; } .yt .yt__sideNav--smallScreen .first { margin-bottom: 5px; margin-top: 18px; } .yt .yt__sideNav--smallScreen span { margin-top: 3px; font-size: 9px; } .yt__sideNav { display: none; } .yt__songs { width: 93%; position: absolute; left: 7%; top: 15.4%; display: grid; grid-template-columns: repeat(4, 1fr); } .yt__songs .yt__songsBox { width: 99%; height: 20rem; } .yt__songs .yt__songsBox iframe { width: 100%; height: 50%; } .yt__songs .yt__songsBox img { position: relative; top: 2%; border-radius: 50%; display: block; float: left; width: 10%; } } @media only screen and (max-width: 1200px) { .yt__songs { width: 85%; position: absolute; left: 12%; top: 15.4%; display: grid; grid-template-columns: repeat(3, 1fr); } } @media only screen and (max-width: 900px) { .yt .yt__topNav { width: 100%; height: 7rem; left: 0; } .yt .yt__topNav .yt__topNavFirstHalf .yt__sideNavTitle--smallScreen { top: 0; display: inline; } .yt .yt__topNav .yt__topNavFirstHalf .yt__sideNavTitle--smallScreen img { width: 7rem; margin-top: 1%; } .yt .yt__topNav .yt__topNavFirstHalf .yt__sideNavTitle--smallScreen .yt__sideNavTitle--countryCode { position: relative; font-size: 10.4px; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavSearch { display: none; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps--search { display: block; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps { width: 50%; height: 100%; float: right; display: flex; justify-content: space-around; align-items: center; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps svg { width: 9%; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps img { width: 9%; border-radius: 50%; } .yt .yt__sideNav--smallScreen { display: none; } .yt .yt__songs { width: 98%; position: absolute; left: 1%; top: 14%; display: grid; grid-template-columns: repeat(2, 1fr); grid-row-gap: 2%; } .yt .yt__songs .yt__songsBox { width: 99%; height: 17rem; } .yt .yt__songs .yt__songsBox iframe { width: 100%; height: 75%; } } @media only screen and (max-width: 550px) { .yt .yt__songs { width: 100%; position: absolute; left: 0%; top: 15.4%; display: grid; grid-template-columns: repeat(1, 1fr); grid-gap: 45px; } .yt .yt__songs .yt__songsBox { width: 100%; height: 17rem; } .yt .yt__songs .yt__songsBox iframe { width: 100%; height: 75%; } } @media only screen and (max-width: 400px) { .yt .yt__songs { width: 100%; position: absolute; left: 0%; top: 15.4%; display: grid; grid-template-columns: repeat(1, 1fr); grid-gap: 45px; } .yt .yt__songs .yt__songsBox { width: 100%; height: 17rem; } .yt .yt__songs .yt__songsBox iframe { width: 100%; height: 70%; } } @media only screen and (max-width: 280px) { .yt .yt__topNav .yt__topNavFirstHalf .yt__sideNavTitle--smallScreen { top: 0; left: 25%; display: inline; } .yt .yt__topNav .yt__topNavFirstHalf .yt__sideNavTitle--smallScreen img { width: 7rem; margin-top: 3%; } .yt .yt__topNav .yt__topNavFirstHalf .yt__sideNavTitle--smallScreen .yt__sideNavTitle--countryCode { position: relative; font-size: 10.4px; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps { display: none; } } @media only screen and (max-width: 240px) { .yt .yt__songs .yt__songsBox .yt__songBox--text span { display: none; } }
HTML_CSS/projects/project3-youtube/Avichai/dist/style.css
@charset "UTF-8"; body { background-color: #f9f9f9; font-family: Arial, Helvetica, sans-serif; } * { box-sizing: border-box; } .yt { font-family: "Open Sans", "Segoe UI"; overflow: hidden; } .yt .yt__topNav { width: 86%; height: 7rem; position: fixed; top: 0; left: 14.1%; z-index: 1; background-color: white; opacity: 0.99; } .yt .yt__topNav .yt__topNavFirstHalf { margin-top: 0.8%; height: 40%; } .yt .yt__topNav .yt__topNavFirstHalf .yt__sideNavTitle--smallScreen { display: none; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavSearch { display: inline; position: relative; left: 25%; height: 35px; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavSearch button { margin-left: -1%; padding: 7px 25px 6px 25px; background-color: #f7f7f7; border: 1px solid lightgray; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavSearch button:hover { background-color: #ececec; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavSearch button:focus { outline: none; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavSearch input { width: 35%; height: 25px; font-size: 17px; border: 1px solid lightgray; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavSearch input:focus { outline: none; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavSearch input[type=text] { padding: 14px; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps--search { display: none; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps { width: 12%; height: 100%; margin-right: 1%; margin-top: -3px; float: right; display: flex; justify-content: space-around; align-items: center; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps svg { width: 15%; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps img { width: 15%; border-radius: 50%; } .yt .yt__topNav .yt__topNavDivider { height: 1px; background-color: #c7c7c7; width: 100%; } .yt .yt__topNav .yt__topNavOptions { display: flex; justify-content: space-between; width: 95rem; overflow: hidden; margin: auto; } .yt .yt__topNav .yt__topNavOptions .yt__topNavOptions--button { margin: 12px 12px 12px 0px; padding: 5px 12px; background-color: #f1f1f1; border-radius: 16px; box-sizing: border-box; white-space: nowrap; outline: none; overflow: hidden; border: 1px solid lightgray; font-size: 14px; display: flex; justify-content: center; align-items: center; } .yt .yt__topNav .yt__topNavOptions .yt__topNavOptions--button:hover { transition: background-color 0.5s cubic-bezier(0.05, 0, 0, 1); background-color: #dbdbdb; } .yt .yt__topNav .yt__topNavOptions .yt__topNavOptions--buttonFirst { background-color: dimgray; color: white; } .yt .yt__sideNavTitle { height: 7%; display: flex; align-items: center; width: 14%; background-color: white; position: fixed; top: 0; left: 0; z-index: 5; } .yt .yt__sideNavTitle .yt__sideNavOptionBox--logo { width: 70%; margin: 0 7.5% 0 10%; } .yt .yt__sideNavTitle .yt__sideNavOptionBox--logo svg { width: 70%; } .yt .yt__sideNavTitle .yt__sideNavTitle--logoBox img { width: 50%; } .yt .yt__sideNavTitle .yt__sideNavTitle--logoBox span { position: absolute; bottom: 35px; left: 67%; float: right; opacity: 1; font-size: 10.4px; } .yt .yt__sideNav { width: 14%; background-color: white; height: 1000px; overflow-y: overlay; position: fixed; left: 0; top: 7%; } .yt .yt__sideNav::-webkit-scrollbar { margin: 0; padding: 0; width: 8px; height: 5px; background-color: transparent; } .yt .yt__sideNav::-webkit-scrollbar-track { background-color: transparent; margin-top: 253px; margin-bottom: 350px; } .yt .yt__sideNav:hover::-webkit-scrollbar-track { background-color: #e6e4e4; } .yt .yt__sideNav a { text-decoration: none; } .yt .yt__sideNav .yt__sideNavOptionBox { position: relative; top: 0%; height: 4.1%; display: flex; align-items: center; padding: 0 10%; font-family: "Roboto"; font-size: 15px; color: #030303; } .yt .yt__sideNav .yt__sideNavOptionBox:hover { background-color: #f1f0f0; } .yt .yt__sideNav .yt__sideNavOptionBox--logo { width: 25%; margin: 0 1% 0 0; } .yt .yt__sideNav .yt__sideNavOptionBox--logo svg { width: 50%; } .yt .yt__sideNav .yt__sideNavOptionBox--logo img { width: 55%; border-radius: 50%; } .yt .yt__sideNav .yt__sideNavOptionBox--section { border-top: 1px solid #c7c7c7; margin-top: 12px; padding-top: 12px; } .yt .yt__sideNav .yt__sideNavSection--title { padding: 0 10% 5% 10%; font-family: "Roboto"; font-size: 14px; font-weight: 600; letter-spacing: 0.5px; color: #606060; margin-top: 1%; } .yt .yt__sideNav .yt__sideNavInfo--first, .yt .yt__sideNav .yt__sideNavInfo--second { width: 70%; margin-left: 10%; } .yt .yt__sideNav .yt__sideNavInfo--first a, .yt .yt__sideNav .yt__sideNavInfo--second a { display: inline-block; white-space: nowrap; font-size: 0.8rem; font-weight: 500; line-height: 0.8rem; color: #606060; margin-right: 5px; } .yt .yt__sideNav .yt__sideNavInfo--first a:visited, .yt .yt__sideNav .yt__sideNavInfo--second a:visited { color: #606060; } .yt .yt__sideNav .yt__sideNavInfo--second { margin-top: 8%; width: 85%; } .yt .yt__sideNav .yt__copyright { width: 80%; padding: 20px 24px; font-size: 0.9rem; color: #909090; } .yt__sideNav--smallScreen { display: none; } .yt__songs { width: 78%; position: absolute; left: 17%; top: 13.5%; display: grid; grid-template-columns: repeat(4, 1fr); grid-column-gap: 1.5%; grid-row-gap: 0%; } .yt__songs .yt__songsBox { width: 99%; height: 20rem; } .yt__songs .yt__songsBox iframe { width: 100%; height: 60%; } .yt__songs .yt__songsBox img { position: relative; top: 2%; border-radius: 50%; display: block; float: left; width: 10%; } .yt__songs .yt__songsBox .yt__songBox--text { position: relative; top: 2%; margin-left: 13%; margin-right: 10%; } .yt__songs .yt__songsBox .yt__songBox--text h1 { margin: 0; font-size: 16px; line-height: 1.3rem; max-height: 4rem; font-weight: 500; text-overflow: ellipsis; white-space: normal; color: #030303; } .yt__songs .yt__songsBox .yt__songBox--text .yt__songBoxDot::after { content: "โ€ข"; margin: 0 4px; } .yt__songs .yt__songsBox .yt__songBox--text span { font-size: 14px; color: #606060; position: relative; top: 2px; } @media only screen and (max-width: 1400px) { .yt .yt__topNav { width: 94%; height: 7rem; left: 6%; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavSearch { left: 10%; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps { width: 20%; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps svg { width: 15%; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps img { width: 15%; } .yt .yt__topNav .yt__topNavFirstHalf .yt__sideNavTitle--smallScreen { display: inline-block; position: relative; top: 15%; } .yt .yt__topNav .yt__topNavFirstHalf .yt__sideNavTitle--smallScreen img { width: 7rem; } .yt .yt__topNav .yt__topNavFirstHalf .yt__sideNavTitle--smallScreen .yt__sideNavTitle--countryCode { position: relative; font-size: 10.4px; } .yt .yt__sideNavTitle { display: none; } .yt .yt__sideNav--smallScreen { display: block; height: 1000px; background-color: white; z-index: 3; width: 5.9%; position: fixed; left: 0; top: 0; display: flex; flex-direction: column; align-items: center; } .yt .yt__sideNav--smallScreen svg { margin-top: 35px; width: 32%; } .yt .yt__sideNav--smallScreen .first { margin-bottom: 5px; margin-top: 18px; } .yt .yt__sideNav--smallScreen span { margin-top: 3px; font-size: 9px; } .yt__sideNav { display: none; } .yt__songs { width: 93%; position: absolute; left: 7%; top: 15.4%; display: grid; grid-template-columns: repeat(4, 1fr); } .yt__songs .yt__songsBox { width: 99%; height: 20rem; } .yt__songs .yt__songsBox iframe { width: 100%; height: 50%; } .yt__songs .yt__songsBox img { position: relative; top: 2%; border-radius: 50%; display: block; float: left; width: 10%; } } @media only screen and (max-width: 1200px) { .yt__songs { width: 85%; position: absolute; left: 12%; top: 15.4%; display: grid; grid-template-columns: repeat(3, 1fr); } } @media only screen and (max-width: 900px) { .yt .yt__topNav { width: 100%; height: 7rem; left: 0; } .yt .yt__topNav .yt__topNavFirstHalf .yt__sideNavTitle--smallScreen { top: 0; display: inline; } .yt .yt__topNav .yt__topNavFirstHalf .yt__sideNavTitle--smallScreen img { width: 7rem; margin-top: 1%; } .yt .yt__topNav .yt__topNavFirstHalf .yt__sideNavTitle--smallScreen .yt__sideNavTitle--countryCode { position: relative; font-size: 10.4px; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavSearch { display: none; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps--search { display: block; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps { width: 50%; height: 100%; float: right; display: flex; justify-content: space-around; align-items: center; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps svg { width: 9%; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps img { width: 9%; border-radius: 50%; } .yt .yt__sideNav--smallScreen { display: none; } .yt .yt__songs { width: 98%; position: absolute; left: 1%; top: 14%; display: grid; grid-template-columns: repeat(2, 1fr); grid-row-gap: 2%; } .yt .yt__songs .yt__songsBox { width: 99%; height: 17rem; } .yt .yt__songs .yt__songsBox iframe { width: 100%; height: 75%; } } @media only screen and (max-width: 550px) { .yt .yt__songs { width: 100%; position: absolute; left: 0%; top: 15.4%; display: grid; grid-template-columns: repeat(1, 1fr); grid-gap: 45px; } .yt .yt__songs .yt__songsBox { width: 100%; height: 17rem; } .yt .yt__songs .yt__songsBox iframe { width: 100%; height: 75%; } } @media only screen and (max-width: 400px) { .yt .yt__songs { width: 100%; position: absolute; left: 0%; top: 15.4%; display: grid; grid-template-columns: repeat(1, 1fr); grid-gap: 45px; } .yt .yt__songs .yt__songsBox { width: 100%; height: 17rem; } .yt .yt__songs .yt__songsBox iframe { width: 100%; height: 70%; } } @media only screen and (max-width: 280px) { .yt .yt__topNav .yt__topNavFirstHalf .yt__sideNavTitle--smallScreen { top: 0; left: 25%; display: inline; } .yt .yt__topNav .yt__topNavFirstHalf .yt__sideNavTitle--smallScreen img { width: 7rem; margin-top: 3%; } .yt .yt__topNav .yt__topNavFirstHalf .yt__sideNavTitle--smallScreen .yt__sideNavTitle--countryCode { position: relative; font-size: 10.4px; } .yt .yt__topNav .yt__topNavFirstHalf .yt__topNavApps { display: none; } } @media only screen and (max-width: 240px) { .yt .yt__songs .yt__songsBox .yt__songBox--text span { display: none; } }
0.446977
0.226934
html, body { height: 100%; font-family: Helvetica Neue, Helvetica, PingFang SC, "ๅพฎ่ฝฏ้›…้ป‘", Tahoma, Arial, sans-serif; color: #555555; } h4 { font-weight: bold; } a { color: #e67e22; } a:hover { color: #d67118; text-decoration: none; } p { line-height: 1.6em; } p a { word-break: break-all; } time { color: #999999; font-size: 14px; } .wrap { min-height: 100%; height: auto; margin: 0 auto -60px; padding: 0 0 60px; background-color: #f3f3f4; } .wrap > .container { padding: 70px 15px 20px; } .footer { height: 60px; border-top: 1px solid #ddd; padding-top: 20px; background-color: #393D49; color: #c2c2c2; } .footer a { color: #c2c2c2; } .footer a:hover { color: #e67e22; } .jumbotron { text-align: center; background-color: transparent; } .jumbotron .btn { font-size: 21px; padding: 14px 24px; } .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label { color: #E72329; } .has-error .form-control { border-color: #E72329; } .btn-primary { color: #fff; background-color: #e67e22; border-color: #d67118; } .btn-primary:focus, .btn-primary.focus { color: #fff; background-color: #bf6516; border-color: #64350b; } .btn-primary:hover { color: #fff; background-color: #bf6516; border-color: #9f5412; } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { color: #fff; background-color: #bf6516; border-color: #9f5412; } .btn-primary:active:hover, .btn-primary.active:hover, .open > .dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open > .dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .btn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus { color: #fff; background-color: #9f5412; border-color: #64350b; } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { background-image: none; } .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus { background-color: #e67e22; border-color: #d67118; } .btn-primary .badge { color: #e67e22; background-color: #fff; } .btn-success { color: #fff; background-color: #8cc864; border-color: #7ec151; } .btn-success:focus, .btn-success.focus { color: #fff; background-color: #71b841; border-color: #426d26; } .btn-success:hover { color: #fff; background-color: #71b841; border-color: #609d38; } .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { color: #fff; background-color: #71b841; border-color: #609d38; } .btn-success:active:hover, .btn-success.active:hover, .open > .dropdown-toggle.btn-success:hover, .btn-success:active:focus, .btn-success.active:focus, .open > .dropdown-toggle.btn-success:focus, .btn-success:active.focus, .btn-success.active.focus, .open > .dropdown-toggle.btn-success.focus { color: #fff; background-color: #609d38; border-color: #426d26; } .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { background-image: none; } .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus { background-color: #8cc864; border-color: #7ec151; } .btn-success .badge { color: #8cc864; background-color: #fff; } .text-red { color: #E72329; } .nav-pills > li.active > a, .nav-pills > li.active > a:hover { background-color: #e67e22; color: #FFFFFF; } .main-header .navbar-header .navbar-brand { padding: 10px 15px; } .main-header .navbar-header .navbar-brand .logo { height: 30px; } .main-header .navbar { background-color: #FFFFFF; border-bottom: 3px solid #e67e22; } .main-header .navbar .navbar-header a:hover, .main-header .navbar .navbar-nav a:hover { color: #e67e22; } .main-header .navbar .navbar-nav > li.active > a { background-color: #e67e22; color: #FFFFFF; } .main-header .dropdown-menu > .active > a, .main-header .dropdown-menu > .active > a:hover, .main-header .dropdown-menu > .active > a:focus { background-color: #e67e22; color: #FFF; } .main-header .top-user-avatar > a { padding: 10px 15px; } .main-header .top-user-avatar > a img { height: 30px; width: 30px; } .text-orange { color: #e67e22; } .text-green { color: #16A314; } .text-blue { color: #6c8ebe; } .breadcrumb { background: #FFFFFF; } .pagination > li > a, .pagination > li > a:hover, .pagination > li > a:focus { color: #e67e22; } .pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover { background-color: #e67e22; border-color: #e67e22; } .no-border { border: none !important; } .no-padding { padding: 0 !important; } .box { background-color: #FFFFFF; color: inherit; padding: 15px 20px 20px 20px; margin-bottom: 15px; } .box.no-padding { padding: 0; } .box.thin-padding { padding: 8px 10px 10px 10px; } .box .box-header { border-bottom: 1px solid #DDDDDD; padding-bottom: 10px; } .box .box-title { margin: 0; padding: 0; } .box .box-header + .box-body { margin-top: 10px; } .line { height: 1px; margin: 20px 0; padding: 0; background: transparent; border-style: solid; border-color: #DDD; border-width: 0 0 1px 0; } .line.line-dashed { border-style: dashed; } .auth-clients { padding-left: 0; } .auth-icon.weibo { background: url(../images/weibo.png); } .news-item .news-item-title { line-height: 1.5em; margin-top: 0; margin-bottom: 0; font-size: 24px; } .news-item .news-item-title a { color: #000; } .news-item .news-item-title a:hover { color: #d67118; } .news-item .news-item-meta { margin: 5px 0; color: #999999; } .news-item .news-item-meta a { color: #e67e22; } .news-item .news-item-content h4 { font-weight: 700; } .project-item .project-item-title { line-height: 1.5em; margin-top: 0; margin-bottom: 0; } .project-item .project-item-title a { color: #000; } .project-item .project-item-title a:hover { color: #d67118; } .project-item .project-item-meta { margin: 5px 0; color: #999999; } .project-item .project-item-meta a { color: #e67e22; } .project .project-title { font-size: 30px; } .project .project-meta { margin: 15px 0; color: #999999; } .project .project-meta a { color: #e67e22; } .project .project-description { padding: 30px 0; } .project .project-description, .project .project-description p { line-height: 1.8em; } .project .project-description img { max-width: 100% !important; } .project .project-attributes { background: #f3f3f4; padding: 15px; margin-bottom: 15px; } .project .project-attributes dl { margin: 0; } .project .project-attributes dl dt { width: 80px; } .project .project-attributes dl dd { margin-left: 100px; } .site-index .latest-news ul li { padding: 5px 0; border-bottom: 1px dashed #DDD; } .site-index .latest-news ul li:last-child { border-bottom: none; } .site-index .latest-news ul li a { color: #6c8ebe; } .ad { position: relative; } .ad:before { content: 'ๅนฟๅ‘Š'; background: #888; color: #fff; padding: 1px 3px; text-align: left; } .post-type-original { color: #8cc864; } .post-item .post-item-title { line-height: 1.5em; margin-top: 0; margin-bottom: 0; } .post-item .post-item-title a { color: #000; } .post-item .post-item-title a:hover { color: #d67118; } .post-item .post-item-meta { margin: 5px 0; color: #999999; } .post-item .post-item-meta span, .post-item .post-item-meta time, .post-item .post-item-meta a { margin-right: 1em; } .post .post-title { font-size: 30px; } .post .post-meta { margin: 15px 0; color: #999999; } .post .post-meta a { color: #e67e22; } .post .post-content { padding: 30px 0 0 0; } .post .post-content, .post .post-content p { line-height: 1.8em; } .post .post-content img { max-width: 100% !important; } .post .post-copyright { background-color: #eef7e8; border-left: 5px solid #8cc864; padding: 5px 5px 5px 10px; line-height: 1.8em; } .post .post-repost { color: #999999; } .highlight pre { background-color: transparent; padding: 0; border: none; border-radius: 0; }
src/frontend/web/static/css/site.css
html, body { height: 100%; font-family: Helvetica Neue, Helvetica, PingFang SC, "ๅพฎ่ฝฏ้›…้ป‘", Tahoma, Arial, sans-serif; color: #555555; } h4 { font-weight: bold; } a { color: #e67e22; } a:hover { color: #d67118; text-decoration: none; } p { line-height: 1.6em; } p a { word-break: break-all; } time { color: #999999; font-size: 14px; } .wrap { min-height: 100%; height: auto; margin: 0 auto -60px; padding: 0 0 60px; background-color: #f3f3f4; } .wrap > .container { padding: 70px 15px 20px; } .footer { height: 60px; border-top: 1px solid #ddd; padding-top: 20px; background-color: #393D49; color: #c2c2c2; } .footer a { color: #c2c2c2; } .footer a:hover { color: #e67e22; } .jumbotron { text-align: center; background-color: transparent; } .jumbotron .btn { font-size: 21px; padding: 14px 24px; } .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label { color: #E72329; } .has-error .form-control { border-color: #E72329; } .btn-primary { color: #fff; background-color: #e67e22; border-color: #d67118; } .btn-primary:focus, .btn-primary.focus { color: #fff; background-color: #bf6516; border-color: #64350b; } .btn-primary:hover { color: #fff; background-color: #bf6516; border-color: #9f5412; } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { color: #fff; background-color: #bf6516; border-color: #9f5412; } .btn-primary:active:hover, .btn-primary.active:hover, .open > .dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open > .dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .btn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus { color: #fff; background-color: #9f5412; border-color: #64350b; } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { background-image: none; } .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus { background-color: #e67e22; border-color: #d67118; } .btn-primary .badge { color: #e67e22; background-color: #fff; } .btn-success { color: #fff; background-color: #8cc864; border-color: #7ec151; } .btn-success:focus, .btn-success.focus { color: #fff; background-color: #71b841; border-color: #426d26; } .btn-success:hover { color: #fff; background-color: #71b841; border-color: #609d38; } .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { color: #fff; background-color: #71b841; border-color: #609d38; } .btn-success:active:hover, .btn-success.active:hover, .open > .dropdown-toggle.btn-success:hover, .btn-success:active:focus, .btn-success.active:focus, .open > .dropdown-toggle.btn-success:focus, .btn-success:active.focus, .btn-success.active.focus, .open > .dropdown-toggle.btn-success.focus { color: #fff; background-color: #609d38; border-color: #426d26; } .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { background-image: none; } .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus { background-color: #8cc864; border-color: #7ec151; } .btn-success .badge { color: #8cc864; background-color: #fff; } .text-red { color: #E72329; } .nav-pills > li.active > a, .nav-pills > li.active > a:hover { background-color: #e67e22; color: #FFFFFF; } .main-header .navbar-header .navbar-brand { padding: 10px 15px; } .main-header .navbar-header .navbar-brand .logo { height: 30px; } .main-header .navbar { background-color: #FFFFFF; border-bottom: 3px solid #e67e22; } .main-header .navbar .navbar-header a:hover, .main-header .navbar .navbar-nav a:hover { color: #e67e22; } .main-header .navbar .navbar-nav > li.active > a { background-color: #e67e22; color: #FFFFFF; } .main-header .dropdown-menu > .active > a, .main-header .dropdown-menu > .active > a:hover, .main-header .dropdown-menu > .active > a:focus { background-color: #e67e22; color: #FFF; } .main-header .top-user-avatar > a { padding: 10px 15px; } .main-header .top-user-avatar > a img { height: 30px; width: 30px; } .text-orange { color: #e67e22; } .text-green { color: #16A314; } .text-blue { color: #6c8ebe; } .breadcrumb { background: #FFFFFF; } .pagination > li > a, .pagination > li > a:hover, .pagination > li > a:focus { color: #e67e22; } .pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover { background-color: #e67e22; border-color: #e67e22; } .no-border { border: none !important; } .no-padding { padding: 0 !important; } .box { background-color: #FFFFFF; color: inherit; padding: 15px 20px 20px 20px; margin-bottom: 15px; } .box.no-padding { padding: 0; } .box.thin-padding { padding: 8px 10px 10px 10px; } .box .box-header { border-bottom: 1px solid #DDDDDD; padding-bottom: 10px; } .box .box-title { margin: 0; padding: 0; } .box .box-header + .box-body { margin-top: 10px; } .line { height: 1px; margin: 20px 0; padding: 0; background: transparent; border-style: solid; border-color: #DDD; border-width: 0 0 1px 0; } .line.line-dashed { border-style: dashed; } .auth-clients { padding-left: 0; } .auth-icon.weibo { background: url(../images/weibo.png); } .news-item .news-item-title { line-height: 1.5em; margin-top: 0; margin-bottom: 0; font-size: 24px; } .news-item .news-item-title a { color: #000; } .news-item .news-item-title a:hover { color: #d67118; } .news-item .news-item-meta { margin: 5px 0; color: #999999; } .news-item .news-item-meta a { color: #e67e22; } .news-item .news-item-content h4 { font-weight: 700; } .project-item .project-item-title { line-height: 1.5em; margin-top: 0; margin-bottom: 0; } .project-item .project-item-title a { color: #000; } .project-item .project-item-title a:hover { color: #d67118; } .project-item .project-item-meta { margin: 5px 0; color: #999999; } .project-item .project-item-meta a { color: #e67e22; } .project .project-title { font-size: 30px; } .project .project-meta { margin: 15px 0; color: #999999; } .project .project-meta a { color: #e67e22; } .project .project-description { padding: 30px 0; } .project .project-description, .project .project-description p { line-height: 1.8em; } .project .project-description img { max-width: 100% !important; } .project .project-attributes { background: #f3f3f4; padding: 15px; margin-bottom: 15px; } .project .project-attributes dl { margin: 0; } .project .project-attributes dl dt { width: 80px; } .project .project-attributes dl dd { margin-left: 100px; } .site-index .latest-news ul li { padding: 5px 0; border-bottom: 1px dashed #DDD; } .site-index .latest-news ul li:last-child { border-bottom: none; } .site-index .latest-news ul li a { color: #6c8ebe; } .ad { position: relative; } .ad:before { content: 'ๅนฟๅ‘Š'; background: #888; color: #fff; padding: 1px 3px; text-align: left; } .post-type-original { color: #8cc864; } .post-item .post-item-title { line-height: 1.5em; margin-top: 0; margin-bottom: 0; } .post-item .post-item-title a { color: #000; } .post-item .post-item-title a:hover { color: #d67118; } .post-item .post-item-meta { margin: 5px 0; color: #999999; } .post-item .post-item-meta span, .post-item .post-item-meta time, .post-item .post-item-meta a { margin-right: 1em; } .post .post-title { font-size: 30px; } .post .post-meta { margin: 15px 0; color: #999999; } .post .post-meta a { color: #e67e22; } .post .post-content { padding: 30px 0 0 0; } .post .post-content, .post .post-content p { line-height: 1.8em; } .post .post-content img { max-width: 100% !important; } .post .post-copyright { background-color: #eef7e8; border-left: 5px solid #8cc864; padding: 5px 5px 5px 10px; line-height: 1.8em; } .post .post-repost { color: #999999; } .highlight pre { background-color: transparent; padding: 0; border: none; border-radius: 0; }
0.347648
0.053379
.day-events { border: 1px solid #58666e2e; padding: 15px; margin-bottom: 15px; } .day-events h3{ margin-top: 0px; } .calendar-agenda-no-hours{ display: none; } .day-view th{ display: none; } .calendar-calendar .day-view .full td.multi-day div.dayview{ background: #fff !important; height: auto !important; color: #58666e !important; } .dayview{ border: 1px solid #58666e2e !important;} .date-nav .pager .date-prev{ right: auto !important; left: 0px !important; float: left !important; background : none !important;} .date-nav .pager .date-next{ background : none !important;} .afl-news-item { border: 1px solid #ccc; margin-bottom: 5px; width: 100%; height: auto;} .afl-news-tab .panel-default{ border: none; } .afl-notes-item {padding: 0px 15px; margin: 10px 5px; border-left: 3px solid #dee5e7;} .afl-notes-content { display: inline-block;} .views-row-odd .afl-notes-item { border-left-color: #1b1aad;} .views-row-even .afl-notes-item { border-left-color: #ad9812;} .view .view-content .afl-notes-item{padding-right: 20px;position: relative;} .view .view-content .afl-notes-item .dropdown.afl-note-operations{position: absolute;top: 0;right: 0;} .view .view-content .quick-notes-list:nth-child(even) .afl-notes-item:{border-color: #5a67d9;} .view .view-content .quick-notes-list:nth-child(odd) .afl-notes-item{border-color: #30b6e3;} .view .view-content .quick-notes-list:nth-child(1) .afl-notes-item{border-color: #fbb739;} .view .view-content .quick-notes-list:nth-child(2) .afl-notes-item{border-color: #726ac7;} .view .view-content .quick-notes-list:nth-child(3) .afl-notes-item{border-color: #36bea3;} .view .view-content .quick-notes-list:nth-child(4) .afl-notes-item{border-color: #f3506e;} .view .view-content .quick-notes-list:nth-child(5) .afl-notes-item{border-color: #3aa3f4;} .view .view-content .quick-notes-list:nth-child(6) .afl-notes-item{border-color: #f3506e;} .view .view-content .quick-notes-list .dropdown-menu.afl-note-operations-popup li.title{padding: 5px 15px;color:#7266ba;} .view .view-content .quick-notes-list .dropdown-menu.afl-note-operations-popup li a{color: #bdbdbd;} .view .view-content .quick-notes-list .dropdown-menu.afl-note-operations-popup li a i{margin-right: 10px;} .view .view-content .quick-notes-list .dropdown-menu.afl-note-operations-popup li a:hover,.view .view-content .quick-notes-list .dropdown-menu.afl-note-operations-popup li a:focus,.view .view-content .quick-notes-list .dropdown-menu.afl-note-operations-popup li a:active{color: #000;} #add-note-modal .modal .modal-header{border-color: #f7f7f7;} .upcoming-event-block .media-list .media .pull-left,.upcoming-event-block .media-list .media .media-left{margin-right: 5px;} .upcoming-event-block .media-list .media .pull-left .date-box,.upcoming-event-block .media-list .media .media-left .date-box{background: #eee;border-radius: 2px;text-align: center;} .upcoming-event-block .media-list .media .pull-left .month,.upcoming-event-block .media-list .media .media-left .month{color: #30b6e3;font-size: 30px;font-weight: bold;padding: 4px 24px;border-bottom: dotted 1px #d4d4d4;} .upcoming-event-block .media-list .media .pull-left .year,.upcoming-event-block .media-list .media .media-left .year{color: #949494;font-size: 14px;font-weight: 600;padding: 4px 24px;} .upcoming-event-block .media-list li.media {padding: 20px 15px;border-bottom: solid 1px #eaf1f3;margin-top: 0;} .upcoming-event-block .media-list li.media:last-child {border-bottom: 0;padding-bottom: 15px;} .upcoming-event-block .media-list li.media .media-heading{font-size: 16px; color: #424242;} .upcoming-event-block .media-list li.media .event-body{color: #babbbc;} .upcoming-event-block .media-list li.media .event-date{color: #777777;font-size: 13px;}
public/assets/css/calendar-style.css
.day-events { border: 1px solid #58666e2e; padding: 15px; margin-bottom: 15px; } .day-events h3{ margin-top: 0px; } .calendar-agenda-no-hours{ display: none; } .day-view th{ display: none; } .calendar-calendar .day-view .full td.multi-day div.dayview{ background: #fff !important; height: auto !important; color: #58666e !important; } .dayview{ border: 1px solid #58666e2e !important;} .date-nav .pager .date-prev{ right: auto !important; left: 0px !important; float: left !important; background : none !important;} .date-nav .pager .date-next{ background : none !important;} .afl-news-item { border: 1px solid #ccc; margin-bottom: 5px; width: 100%; height: auto;} .afl-news-tab .panel-default{ border: none; } .afl-notes-item {padding: 0px 15px; margin: 10px 5px; border-left: 3px solid #dee5e7;} .afl-notes-content { display: inline-block;} .views-row-odd .afl-notes-item { border-left-color: #1b1aad;} .views-row-even .afl-notes-item { border-left-color: #ad9812;} .view .view-content .afl-notes-item{padding-right: 20px;position: relative;} .view .view-content .afl-notes-item .dropdown.afl-note-operations{position: absolute;top: 0;right: 0;} .view .view-content .quick-notes-list:nth-child(even) .afl-notes-item:{border-color: #5a67d9;} .view .view-content .quick-notes-list:nth-child(odd) .afl-notes-item{border-color: #30b6e3;} .view .view-content .quick-notes-list:nth-child(1) .afl-notes-item{border-color: #fbb739;} .view .view-content .quick-notes-list:nth-child(2) .afl-notes-item{border-color: #726ac7;} .view .view-content .quick-notes-list:nth-child(3) .afl-notes-item{border-color: #36bea3;} .view .view-content .quick-notes-list:nth-child(4) .afl-notes-item{border-color: #f3506e;} .view .view-content .quick-notes-list:nth-child(5) .afl-notes-item{border-color: #3aa3f4;} .view .view-content .quick-notes-list:nth-child(6) .afl-notes-item{border-color: #f3506e;} .view .view-content .quick-notes-list .dropdown-menu.afl-note-operations-popup li.title{padding: 5px 15px;color:#7266ba;} .view .view-content .quick-notes-list .dropdown-menu.afl-note-operations-popup li a{color: #bdbdbd;} .view .view-content .quick-notes-list .dropdown-menu.afl-note-operations-popup li a i{margin-right: 10px;} .view .view-content .quick-notes-list .dropdown-menu.afl-note-operations-popup li a:hover,.view .view-content .quick-notes-list .dropdown-menu.afl-note-operations-popup li a:focus,.view .view-content .quick-notes-list .dropdown-menu.afl-note-operations-popup li a:active{color: #000;} #add-note-modal .modal .modal-header{border-color: #f7f7f7;} .upcoming-event-block .media-list .media .pull-left,.upcoming-event-block .media-list .media .media-left{margin-right: 5px;} .upcoming-event-block .media-list .media .pull-left .date-box,.upcoming-event-block .media-list .media .media-left .date-box{background: #eee;border-radius: 2px;text-align: center;} .upcoming-event-block .media-list .media .pull-left .month,.upcoming-event-block .media-list .media .media-left .month{color: #30b6e3;font-size: 30px;font-weight: bold;padding: 4px 24px;border-bottom: dotted 1px #d4d4d4;} .upcoming-event-block .media-list .media .pull-left .year,.upcoming-event-block .media-list .media .media-left .year{color: #949494;font-size: 14px;font-weight: 600;padding: 4px 24px;} .upcoming-event-block .media-list li.media {padding: 20px 15px;border-bottom: solid 1px #eaf1f3;margin-top: 0;} .upcoming-event-block .media-list li.media:last-child {border-bottom: 0;padding-bottom: 15px;} .upcoming-event-block .media-list li.media .media-heading{font-size: 16px; color: #424242;} .upcoming-event-block .media-list li.media .event-body{color: #babbbc;} .upcoming-event-block .media-list li.media .event-date{color: #777777;font-size: 13px;}
0.284278
0.14624
@media (min-width:768px) and (max-width:980px){.prd-row .action{right:25px;} .hr-menu .brand{width:100%;} .hr-menu .horizontal-menu{margin:10px 0;} .hr-menu .hr-top-nav{margin-top:10px;float:right;} .media-gal .item{width:100%;} .media-filter{margin:25px 0;} } @media (min-width:480px) and (max-width:767px){.header{position:relative! important;margin-top:80px ! important;} .merge-header{margin-right:0px !important;} .brand{width:100%;float:none;position:fixed;top:0px;z-index:1005;} .sidebar-toggle-box{right:10px;} .top-nav{margin-bottom:20px;} .top-menu{margin-right:10px;} .wrapper{margin-top:0px;} ul.sidebar-menu{margin-top:0px;} #sidebar{position:fixed !important;z-index:1002;top:80px;} #main-content{margin-left:0px;} .fc-button-inner{padding:0;} .prd-row .action{right:25px;} .weather-full-info ul li{width:15.8%;} .today-status{margin-bottom:10px;} .hr-toggle{background:#32D2C9;color:rgba(0, 0, 0, 0.3);border-radius:50%;-webkit-border-radius:50%;height:30px;line-height:0;margin-top:-58px;position:fixed;right:10px;width:30px;z-index:10000;} .hr-top-nav{display:inline-block;float:right;margin:10px 0;} .horizontal-menu{width:100%;} .horizontal-menu .navbar-nav > li{margin-bottom:10px;} .lock-wrapper{padding:0 20px;} .lock-wrapper img{width:140px;height:140px;margin-top:10px;} .lock-pwd input{width:70%;} #time{font-size:100px;} .media-gal .item{width:100%;} .media-filter{margin:25px 0;} .media-filter + .pull-right, .media-filter + .pull-right + .btn{float:left !important;} } @media (max-width:767px){.fixed-width #container, .fixed-width #container .header{width:100%;} #sidebar{margin-left:-240px;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out;} .hide-left-bar{margin-left:0px!important;} ul.sidebar-menu{padding-top:0px;} .prd-row .action{right:25px;} .lock-wrapper{padding:0 20px;} .lock-wrapper img{width:140px;height:140px;margin-top:10px;} .lock-pwd input{width:70%;} #time{font-size:100px;} .media-gal .item{width:100%;} .media-filter{margin:25px 0;} .media-filter + .pull-right, .media-filter + .pull-right + .btn{float:left !important;} } @media (max-width:479px){body{margin-top:80px !important;} .header{position:relative !important;} .merge-header{margin-right:0px !important;} .brand{width:100%;float:none;position:fixed;top:0px;z-index:1005;} .sidebar-toggle-box{right:10px;} .top-nav{margin-bottom:20px;} .top-menu{margin-right:10px;} .wrapper{margin-top:0px;} ul.sidebar-menu{margin-top:0px;} #sidebar{position:fixed !important;z-index:1002;top:80px;} #main-content{margin-left:0px;} .notify-row{float:none;} .fc-button-inner, .fc-button-content{padding:0;} .fc-header-title h2{font-size:12px!important;} .fc .fc-header-space{padding-left:0;} .fc-state-active, .fc-state-active .fc-button-inner, .fc-state-active, .fc-button-today .fc-button-inner, .fc-state-hover, .fc-state-hover .fc-button-inner{background:none repeat scroll 0 0 #FFFFFF !important;color:#32323A !important;} .fc-state-default, .fc-state-default .fc-button-inner{background:none repeat scroll 0 0 #FFFFFF !important;} .prd-row .action{right:25px;} .weather-full-info ul li{width:30%;margin-bottom:10px;} .today-status{margin-bottom:10px;} .hr-toggle{background:#32D2C9;color:rgba(0, 0, 0, 0.3);border-radius:50%;-webkit-border-radius:50%;height:30px;line-height:0;margin-top:-58px;position:fixed;right:10px;width:30px;z-index:10000;} .hr-top-nav{display:inline-block;float:right;margin:10px 0;} .horizontal-menu{width:100%;} .horizontal-menu .navbar-nav > li{margin-bottom:10px;} .lock-wrapper{padding:0 20px;} .lock-wrapper img{width:100px;height:100px;margin-top:-25px;} .lock-pwd input{width:70%;} #time{font-size:50px;} .lock-pwd{padding:0;} .media-gal .item{width:100%;} .media-filter{margin:5px 0;} .media-filter + .pull-right, .media-filter + .pull-right + .btn{float:left !important;} .media-filter li a{margin-bottom:10px;display:inline-block;} }
public/app/css/style-responsive.css
@media (min-width:768px) and (max-width:980px){.prd-row .action{right:25px;} .hr-menu .brand{width:100%;} .hr-menu .horizontal-menu{margin:10px 0;} .hr-menu .hr-top-nav{margin-top:10px;float:right;} .media-gal .item{width:100%;} .media-filter{margin:25px 0;} } @media (min-width:480px) and (max-width:767px){.header{position:relative! important;margin-top:80px ! important;} .merge-header{margin-right:0px !important;} .brand{width:100%;float:none;position:fixed;top:0px;z-index:1005;} .sidebar-toggle-box{right:10px;} .top-nav{margin-bottom:20px;} .top-menu{margin-right:10px;} .wrapper{margin-top:0px;} ul.sidebar-menu{margin-top:0px;} #sidebar{position:fixed !important;z-index:1002;top:80px;} #main-content{margin-left:0px;} .fc-button-inner{padding:0;} .prd-row .action{right:25px;} .weather-full-info ul li{width:15.8%;} .today-status{margin-bottom:10px;} .hr-toggle{background:#32D2C9;color:rgba(0, 0, 0, 0.3);border-radius:50%;-webkit-border-radius:50%;height:30px;line-height:0;margin-top:-58px;position:fixed;right:10px;width:30px;z-index:10000;} .hr-top-nav{display:inline-block;float:right;margin:10px 0;} .horizontal-menu{width:100%;} .horizontal-menu .navbar-nav > li{margin-bottom:10px;} .lock-wrapper{padding:0 20px;} .lock-wrapper img{width:140px;height:140px;margin-top:10px;} .lock-pwd input{width:70%;} #time{font-size:100px;} .media-gal .item{width:100%;} .media-filter{margin:25px 0;} .media-filter + .pull-right, .media-filter + .pull-right + .btn{float:left !important;} } @media (max-width:767px){.fixed-width #container, .fixed-width #container .header{width:100%;} #sidebar{margin-left:-240px;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out;} .hide-left-bar{margin-left:0px!important;} ul.sidebar-menu{padding-top:0px;} .prd-row .action{right:25px;} .lock-wrapper{padding:0 20px;} .lock-wrapper img{width:140px;height:140px;margin-top:10px;} .lock-pwd input{width:70%;} #time{font-size:100px;} .media-gal .item{width:100%;} .media-filter{margin:25px 0;} .media-filter + .pull-right, .media-filter + .pull-right + .btn{float:left !important;} } @media (max-width:479px){body{margin-top:80px !important;} .header{position:relative !important;} .merge-header{margin-right:0px !important;} .brand{width:100%;float:none;position:fixed;top:0px;z-index:1005;} .sidebar-toggle-box{right:10px;} .top-nav{margin-bottom:20px;} .top-menu{margin-right:10px;} .wrapper{margin-top:0px;} ul.sidebar-menu{margin-top:0px;} #sidebar{position:fixed !important;z-index:1002;top:80px;} #main-content{margin-left:0px;} .notify-row{float:none;} .fc-button-inner, .fc-button-content{padding:0;} .fc-header-title h2{font-size:12px!important;} .fc .fc-header-space{padding-left:0;} .fc-state-active, .fc-state-active .fc-button-inner, .fc-state-active, .fc-button-today .fc-button-inner, .fc-state-hover, .fc-state-hover .fc-button-inner{background:none repeat scroll 0 0 #FFFFFF !important;color:#32323A !important;} .fc-state-default, .fc-state-default .fc-button-inner{background:none repeat scroll 0 0 #FFFFFF !important;} .prd-row .action{right:25px;} .weather-full-info ul li{width:30%;margin-bottom:10px;} .today-status{margin-bottom:10px;} .hr-toggle{background:#32D2C9;color:rgba(0, 0, 0, 0.3);border-radius:50%;-webkit-border-radius:50%;height:30px;line-height:0;margin-top:-58px;position:fixed;right:10px;width:30px;z-index:10000;} .hr-top-nav{display:inline-block;float:right;margin:10px 0;} .horizontal-menu{width:100%;} .horizontal-menu .navbar-nav > li{margin-bottom:10px;} .lock-wrapper{padding:0 20px;} .lock-wrapper img{width:100px;height:100px;margin-top:-25px;} .lock-pwd input{width:70%;} #time{font-size:50px;} .lock-pwd{padding:0;} .media-gal .item{width:100%;} .media-filter{margin:5px 0;} .media-filter + .pull-right, .media-filter + .pull-right + .btn{float:left !important;} .media-filter li a{margin-bottom:10px;display:inline-block;} }
0.099175
0.044974
body { padding-top: 54px; } @media (min-width: 992px) { body { padding-top: 56px; } } .carousel-item { height: 65vh; min-height: 300px; background: no-repeat center center scroll; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } .portfolio-item { margin-bottom: 30px; } .card-footer { padding: .75rem 1.25rem; background-color: #757575; border-top: 1px solid #e3690c; } /*logo-slider*/ /* Slider */ .slick-slide { margin: 0px 20px; } .slick-slide img { width: 100%; } .slick-slider { position: relative; display: block; box-sizing: border-box; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-touch-callout: none; -khtml-user-select: none; -ms-touch-action: pan-y; touch-action: pan-y; -webkit-tap-highlight-color: transparent; } .slick-list { position: relative; display: block; overflow: hidden; margin: 0; padding: 0; } .slick-list:focus { outline: none; } .slick-list.dragging { cursor: pointer; cursor: hand; } .slick-slider .slick-track, .slick-slider .slick-list { -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } .slick-track { position: relative; top: 0; left: 0; display: block; } .slick-track:before, .slick-track:after { display: table; content: ''; } .slick-track:after { clear: both; } .slick-loading .slick-track { visibility: hidden; } .slick-slide { display: none; float: left; height: 100%; min-height: 1px; } [dir='rtl'] .slick-slide { float: right; } .slick-slide img { display: block; } .slick-slide.slick-loading img { display: none; } .slick-slide.dragging img { pointer-events: none; } .slick-initialized .slick-slide { display: block; } .slick-loading .slick-slide { visibility: hidden; } .slick-vertical .slick-slide { display: block; height: auto; border: 1px solid transparent; } .slick-arrow.slick-hidden { display: none; } /*btn*/ .btn-primary { color: #fff; background-color: #e3690c; border-color: #7b7b7b; } .btn-primary:hover { text-decoration: none; background-color: #e3690c; border-color: #7b7b7b; } /*footer*/ /* Footer */ @import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css'); section { padding: 60px 0; } section .section-title { text-align: center; color: #757575; margin-bottom: 50px; text-transform: uppercase; } #footer { background: #757575 !important; } #footer h5{ padding-left: 10px; border-left: 3px solid #eeeeee; padding-bottom: 6px; margin-bottom: 20px; color:#ffffff; } #footer a { color: #ffffff; text-decoration: none !important; background-color: transparent; -webkit-text-decoration-skip: objects; } #footer ul.social li{ padding: 3px 0; } #footer ul.social li a i { margin-right: 5px; font-size:25px; -webkit-transition: .5s all ease; -moz-transition: .5s all ease; transition: .5s all ease; } #footer ul.social li:hover a i { font-size:30px; margin-top:-10px; } #footer ul.social li a, #footer ul.quick-links li a{ color:#ffffff; } #footer ul.social li a:hover{ color:#eeeeee; } #footer ul.quick-links li{ padding: 3px 0; -webkit-transition: .5s all ease; -moz-transition: .5s all ease; transition: .5s all ease; } #footer ul.quick-links li:hover{ padding: 3px 0; margin-left:5px; font-weight:700; } #footer ul.quick-links li a i{ margin-right: 5px; } #footer ul.quick-links li:hover a i { font-weight: 700; } @media (max-width:767px){ #footer h5 { padding-left: 0; border-left: transparent; padding-bottom: 0px; margin-bottom: 10px; } }
css/modern-business.css
body { padding-top: 54px; } @media (min-width: 992px) { body { padding-top: 56px; } } .carousel-item { height: 65vh; min-height: 300px; background: no-repeat center center scroll; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } .portfolio-item { margin-bottom: 30px; } .card-footer { padding: .75rem 1.25rem; background-color: #757575; border-top: 1px solid #e3690c; } /*logo-slider*/ /* Slider */ .slick-slide { margin: 0px 20px; } .slick-slide img { width: 100%; } .slick-slider { position: relative; display: block; box-sizing: border-box; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-touch-callout: none; -khtml-user-select: none; -ms-touch-action: pan-y; touch-action: pan-y; -webkit-tap-highlight-color: transparent; } .slick-list { position: relative; display: block; overflow: hidden; margin: 0; padding: 0; } .slick-list:focus { outline: none; } .slick-list.dragging { cursor: pointer; cursor: hand; } .slick-slider .slick-track, .slick-slider .slick-list { -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } .slick-track { position: relative; top: 0; left: 0; display: block; } .slick-track:before, .slick-track:after { display: table; content: ''; } .slick-track:after { clear: both; } .slick-loading .slick-track { visibility: hidden; } .slick-slide { display: none; float: left; height: 100%; min-height: 1px; } [dir='rtl'] .slick-slide { float: right; } .slick-slide img { display: block; } .slick-slide.slick-loading img { display: none; } .slick-slide.dragging img { pointer-events: none; } .slick-initialized .slick-slide { display: block; } .slick-loading .slick-slide { visibility: hidden; } .slick-vertical .slick-slide { display: block; height: auto; border: 1px solid transparent; } .slick-arrow.slick-hidden { display: none; } /*btn*/ .btn-primary { color: #fff; background-color: #e3690c; border-color: #7b7b7b; } .btn-primary:hover { text-decoration: none; background-color: #e3690c; border-color: #7b7b7b; } /*footer*/ /* Footer */ @import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css'); section { padding: 60px 0; } section .section-title { text-align: center; color: #757575; margin-bottom: 50px; text-transform: uppercase; } #footer { background: #757575 !important; } #footer h5{ padding-left: 10px; border-left: 3px solid #eeeeee; padding-bottom: 6px; margin-bottom: 20px; color:#ffffff; } #footer a { color: #ffffff; text-decoration: none !important; background-color: transparent; -webkit-text-decoration-skip: objects; } #footer ul.social li{ padding: 3px 0; } #footer ul.social li a i { margin-right: 5px; font-size:25px; -webkit-transition: .5s all ease; -moz-transition: .5s all ease; transition: .5s all ease; } #footer ul.social li:hover a i { font-size:30px; margin-top:-10px; } #footer ul.social li a, #footer ul.quick-links li a{ color:#ffffff; } #footer ul.social li a:hover{ color:#eeeeee; } #footer ul.quick-links li{ padding: 3px 0; -webkit-transition: .5s all ease; -moz-transition: .5s all ease; transition: .5s all ease; } #footer ul.quick-links li:hover{ padding: 3px 0; margin-left:5px; font-weight:700; } #footer ul.quick-links li a i{ margin-right: 5px; } #footer ul.quick-links li:hover a i { font-weight: 700; } @media (max-width:767px){ #footer h5 { padding-left: 0; border-left: transparent; padding-bottom: 0px; margin-bottom: 10px; } }
0.2587
0.05526
ul, #myUL { list-style-type: none; } /* Remove margins and padding from the parent ul */ #myUL { margin: 0; padding: 0; } /* Style the caret/arrow */ .caret { cursor: pointer; user-select: none; /* Prevent text selection */ } /* Create the caret/arrow with a unicode, and style it */ .caret::before { content: "\25B6"; color: black; display: inline-block; margin-right: 6px; } /* Rotate the caret/arrow icon when clicked on (using JavaScript) */ .caret-down::before { transform: rotate(90deg); } /* */ .collapsable-header { display: flex; } .collapsable-separator{ margin-left: .45em ; margin-right: .45em; border-bottom: 0.1em solid #2e2e2e; } .collapsable-holder { margin-left: 3rem; } .collapsable-header p { margin-bottom: 0px; margin-left: .5em; } .collapsable-title { font-weight: bold; text-transform: capitalize; font-size: 1em; } .collapsable-div { overflow:hidden; border: 0.1em solid #2e2e2e; border-radius: .5em; padding: 0.2em; padding-top: 0.25em; } label { margin: 0px; } tr.odd.rHighlight, tr.even.rHighlight, .rHighlight { background-color: #e7e700 !important; } input.form-control{ font-size: small; } .align-items{ align-items: center; } a.first.paginate_button, a.next.paginate_button, a.previous.paginate_button, a.last.paginate_button, a.paginate_active, a.paginate_button { padding: 0 1em; } div.fielddiv{ width: 25em; } div.kwConstraint{ width: auto; } div.fieldlist{ width:auto; } div.dataTables_paginate{ position: initial; } .dataTables_filter label{ width:100%; } /* Hide the nested list */ .nested { display: none; } /* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */ .active { display: block; } .inherit { background-color: inherit; } .blue-color { color:blue; } .green-color { color:green; } .teal-color { color:teal; } .yellow-color { color:yellow; } .red-color { color:red; } table.dataTable thead .sorting:after, table.dataTable thead .sorting:before, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_desc:before, table.dataTable thead .sorting_desc_disabled:after, table.dataTable thead .sorting_desc_disabled:before { bottom: .5em; } #loader { position: absolute; left: 50%; top: 50%; z-index: 1; width: 150px; height: 150px; margin: -75px 0 0 -75px; border: 16px solid #f3f3f3; border-radius: 50%; border-top: 16px solid #3498db; width: 120px; height: 120px; -webkit-animation: spin 2s linear infinite; animation: spin 2s linear infinite; } @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); } } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } /* Add animation to "page content" */ .animate-bottom { position: relative; -webkit-animation-name: animatebottom; -webkit-animation-duration: 1s; animation-name: animatebottom; animation-duration: 1s } @-webkit-keyframes animatebottom { from { bottom:-100px; opacity:0 } to { bottom:0px; opacity:1 } } @keyframes animatebottom { from{ bottom:-100px; opacity:0 } to{ bottom:0; opacity:1 } } #myDiv { display: none; text-align: center; } #button{ display:block; margin:20px auto; padding:10px 30px; background-color:#eee; border:solid #ccc 1px; cursor: pointer; } #overlay{ display: none; position: fixed; z-index: 1000; top: 0; left: 0; height: 100%; width: 100%; background: rgba( 0, 0, 0, .8 ) url('http://i.stack.imgur.com/FhHRx.gif') 50% 50% no-repeat; } .cv-spinner { height: 100%; display: flex; justify-content: center; align-items: center; } .spinner { width: 40px; height: 40px; border: 4px #ddd solid; border-top: 4px #2e93e6 solid; border-radius: 50%; animation: sp-anime 0.8s infinite linear; } @keyframes sp-anime { 100% { transform: rotate(360deg); } } .is-hide{ display:none; } .modals { display: none; position: fixed; z-index: 1000; top: 0; left: 0; height: 100%; width: 100%; background: rgba( 0, 0, 0, 0 ) url('http://i.stack.imgur.com/FhHRx.gif') 50% 50% no-repeat; } /* When the body has the loading class, we turn the scrollbar off with overflow:hidden */ body.loading .modals { overflow: hidden; } /* Anytime the body has the loading class, our modal element will be visible */ body.loading .modals { display: block; }
demo/css/style.css
ul, #myUL { list-style-type: none; } /* Remove margins and padding from the parent ul */ #myUL { margin: 0; padding: 0; } /* Style the caret/arrow */ .caret { cursor: pointer; user-select: none; /* Prevent text selection */ } /* Create the caret/arrow with a unicode, and style it */ .caret::before { content: "\25B6"; color: black; display: inline-block; margin-right: 6px; } /* Rotate the caret/arrow icon when clicked on (using JavaScript) */ .caret-down::before { transform: rotate(90deg); } /* */ .collapsable-header { display: flex; } .collapsable-separator{ margin-left: .45em ; margin-right: .45em; border-bottom: 0.1em solid #2e2e2e; } .collapsable-holder { margin-left: 3rem; } .collapsable-header p { margin-bottom: 0px; margin-left: .5em; } .collapsable-title { font-weight: bold; text-transform: capitalize; font-size: 1em; } .collapsable-div { overflow:hidden; border: 0.1em solid #2e2e2e; border-radius: .5em; padding: 0.2em; padding-top: 0.25em; } label { margin: 0px; } tr.odd.rHighlight, tr.even.rHighlight, .rHighlight { background-color: #e7e700 !important; } input.form-control{ font-size: small; } .align-items{ align-items: center; } a.first.paginate_button, a.next.paginate_button, a.previous.paginate_button, a.last.paginate_button, a.paginate_active, a.paginate_button { padding: 0 1em; } div.fielddiv{ width: 25em; } div.kwConstraint{ width: auto; } div.fieldlist{ width:auto; } div.dataTables_paginate{ position: initial; } .dataTables_filter label{ width:100%; } /* Hide the nested list */ .nested { display: none; } /* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */ .active { display: block; } .inherit { background-color: inherit; } .blue-color { color:blue; } .green-color { color:green; } .teal-color { color:teal; } .yellow-color { color:yellow; } .red-color { color:red; } table.dataTable thead .sorting:after, table.dataTable thead .sorting:before, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_desc:before, table.dataTable thead .sorting_desc_disabled:after, table.dataTable thead .sorting_desc_disabled:before { bottom: .5em; } #loader { position: absolute; left: 50%; top: 50%; z-index: 1; width: 150px; height: 150px; margin: -75px 0 0 -75px; border: 16px solid #f3f3f3; border-radius: 50%; border-top: 16px solid #3498db; width: 120px; height: 120px; -webkit-animation: spin 2s linear infinite; animation: spin 2s linear infinite; } @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); } } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } /* Add animation to "page content" */ .animate-bottom { position: relative; -webkit-animation-name: animatebottom; -webkit-animation-duration: 1s; animation-name: animatebottom; animation-duration: 1s } @-webkit-keyframes animatebottom { from { bottom:-100px; opacity:0 } to { bottom:0px; opacity:1 } } @keyframes animatebottom { from{ bottom:-100px; opacity:0 } to{ bottom:0; opacity:1 } } #myDiv { display: none; text-align: center; } #button{ display:block; margin:20px auto; padding:10px 30px; background-color:#eee; border:solid #ccc 1px; cursor: pointer; } #overlay{ display: none; position: fixed; z-index: 1000; top: 0; left: 0; height: 100%; width: 100%; background: rgba( 0, 0, 0, .8 ) url('http://i.stack.imgur.com/FhHRx.gif') 50% 50% no-repeat; } .cv-spinner { height: 100%; display: flex; justify-content: center; align-items: center; } .spinner { width: 40px; height: 40px; border: 4px #ddd solid; border-top: 4px #2e93e6 solid; border-radius: 50%; animation: sp-anime 0.8s infinite linear; } @keyframes sp-anime { 100% { transform: rotate(360deg); } } .is-hide{ display:none; } .modals { display: none; position: fixed; z-index: 1000; top: 0; left: 0; height: 100%; width: 100%; background: rgba( 0, 0, 0, 0 ) url('http://i.stack.imgur.com/FhHRx.gif') 50% 50% no-repeat; } /* When the body has the loading class, we turn the scrollbar off with overflow:hidden */ body.loading .modals { overflow: hidden; } /* Anytime the body has the loading class, our modal element will be visible */ body.loading .modals { display: block; }
0.328099
0.11129
height: 100vh; } #channel .content, #channel .sidebar { transition: right .25s ease-in; height: 100%; } #channel .content { overflow-y: hidden; } #channel .sidebar { overflow-y: scroll; } #channel .sidebar { width: 160px; border-left: 1px solid #cacaca; } #channel .content { display: flex; flex-direction: column; } #channel .header { padding: 0 10px; padding-bottom: 5px; border-bottom: 1px solid #cacaca; } #channel .header .hamburger-icon { position: absolute; right: -12px; top: -8px; transform: scale(.6); } #channel .header .hamburger-icon:hover { opacity: 1; } #channel .header .search-icon { position: absolute; right: 45px; top: 10px; width: 20px; cursor: pointer; } #channel .header .name { display: inline-block; line-height: 0; margin-top: 20px; margin-bottom: 15px; cursor: pointer; } #channel .header .user-count { position: relative; bottom: 2px; padding-left: 5px; font-weight: bold; font-size: 11px; } #channel .header .topic { margin: 0; margin-bottom: 5px; line-height: 1.2; font-size: 14px; cursor: pointer; } #channel .header .topic.is-topic-clipped { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } #channel .messages-wrapper { display: flex; flex: 1 1 auto; overflow-y: scroll; -webkit-overflow-scrolling: touch; } #channel .messages { margin: auto 0; width: 100%; padding-top: 10px; padding-bottom: 10px; } #channel .messages .notice { text-align: center; font-size: 20px; color: #cacaca; } #channel .messages .day-header { padding: 15px 0; text-align: center; } #channel .messages .day-header .text { z-index: 3; position: relative; display: inline-block; padding: 0 10px; background: white; color: #444; } #channel .messages .day-header .divider { z-index: 2; position: relative; bottom: 8px; height: 1px; background: #ddd; } #channel .header .hamburger-icon { display: none; } @media screen and (max-width: 666px) { #channel .header .hamburger-icon { display: block; } #channel .content { z-index: 1; position: relative; top: 0; right: 0; background: white; min-height: 100vh; } #channel .content.is-open { right: 160px; } #channel .sidebar { position: fixed; top: 0; right: -160px; min-height: 100vh; overflow-y: scroll; -webkit-overflow-scrolling: touch; z-index: 0; } #channel .sidebar.is-open { right: 0; } } @media screen and (min-width: 667px) { #channel { display: flex; flex: 0 0 auto; justify-content: space-between; } #channel .content { flex: 1; } #channel .sidebar { flex: 0 0 160px; } #channel .header .search-icon { right: 172px; } }
client/src/styles/Channel.css
height: 100vh; } #channel .content, #channel .sidebar { transition: right .25s ease-in; height: 100%; } #channel .content { overflow-y: hidden; } #channel .sidebar { overflow-y: scroll; } #channel .sidebar { width: 160px; border-left: 1px solid #cacaca; } #channel .content { display: flex; flex-direction: column; } #channel .header { padding: 0 10px; padding-bottom: 5px; border-bottom: 1px solid #cacaca; } #channel .header .hamburger-icon { position: absolute; right: -12px; top: -8px; transform: scale(.6); } #channel .header .hamburger-icon:hover { opacity: 1; } #channel .header .search-icon { position: absolute; right: 45px; top: 10px; width: 20px; cursor: pointer; } #channel .header .name { display: inline-block; line-height: 0; margin-top: 20px; margin-bottom: 15px; cursor: pointer; } #channel .header .user-count { position: relative; bottom: 2px; padding-left: 5px; font-weight: bold; font-size: 11px; } #channel .header .topic { margin: 0; margin-bottom: 5px; line-height: 1.2; font-size: 14px; cursor: pointer; } #channel .header .topic.is-topic-clipped { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } #channel .messages-wrapper { display: flex; flex: 1 1 auto; overflow-y: scroll; -webkit-overflow-scrolling: touch; } #channel .messages { margin: auto 0; width: 100%; padding-top: 10px; padding-bottom: 10px; } #channel .messages .notice { text-align: center; font-size: 20px; color: #cacaca; } #channel .messages .day-header { padding: 15px 0; text-align: center; } #channel .messages .day-header .text { z-index: 3; position: relative; display: inline-block; padding: 0 10px; background: white; color: #444; } #channel .messages .day-header .divider { z-index: 2; position: relative; bottom: 8px; height: 1px; background: #ddd; } #channel .header .hamburger-icon { display: none; } @media screen and (max-width: 666px) { #channel .header .hamburger-icon { display: block; } #channel .content { z-index: 1; position: relative; top: 0; right: 0; background: white; min-height: 100vh; } #channel .content.is-open { right: 160px; } #channel .sidebar { position: fixed; top: 0; right: -160px; min-height: 100vh; overflow-y: scroll; -webkit-overflow-scrolling: touch; z-index: 0; } #channel .sidebar.is-open { right: 0; } } @media screen and (min-width: 667px) { #channel { display: flex; flex: 0 0 auto; justify-content: space-between; } #channel .content { flex: 1; } #channel .sidebar { flex: 0 0 160px; } #channel .header .search-icon { right: 172px; } }
0.478041
0.050917
html { box-sizing: border-box; /* Hack to make the internet behave */ } body { font-family: "Open Sans Condensed", sans-serif; font-size: 14px; line-height: 1.4; } .wrapper { max-width: 1024px; width: 1024px; margin:0px auto; display: flex; min-height: 100vh; flex-direction: column; } main { flex: 1; } footer { background: #76367b; color: white; text-align: center; font-size: 11px; padding: 5px 0; } figure { margin: 0; padding: 0; } figcaption { font-style: italic; } /* Link Styles */ a { color: #76367b; text-decoration: none; } a:hover { color: gold; } a:visted { color: red; } /* Resets */ img { width: 100%; height: auto; } ul, ol { margin: 0; padding: 0; } p { margin: 0; } /* Typography */ h1, h2, h3, h4, h5, h6 { font-family: "Ubuntu Condensed", sans-serif; margin: 0; padding: 0; } .headline-light { color: white; } .headline-dark { color: #76367b; } .lead-text { font-size: 18px; line-height: 1.6; } /* Components ========== These are reuseable classes. They are used on many different sections to make components look the same and reduce the amount of CSS. */ /* Makes images circles */ .circle-image { width: 150px; height: 150px; border-radius: 50%; overflow: hidden; margin-left: auto; margin-right: auto; } /* HSAVAT Student Block */ .hsavat-student-block { justify-content: center; text-align: center; } /* Navigation */ .nav { border-bottom: 1px solid lightgrey; padding: 10px 15px; text-align: right; } .nav .link { margin-right: 10px; } .nav a:hover { border-bottom: 1px solid gold; } .home-link { align-self: flex-start; float: left; } /* Header Introduction */ .profile-intro { text-align: center; padding: 15px 0; } .profile-image .intro-image { border: 3px solid #76367b; width: 100px; height: 100px; } .misscs-image { width: 150px; margin-left: -20px; } .misscs-image-large{ width: 250px; margin-left: -50px; } /* Home Page */ .home-about { font-size: 20px; line-height: 1.5; padding: 0 3em; margin: 2em 0; } .home .intro { background-image: url('../../assets/img/hsavad-team-photo-abridged.jpg'); background-size: cover; background-repeat: no-repeat; background-position: 0 -170px; display: flex; flex-direction: column; height: 400px; color: #fff; } .home .intro-content { width: 352px; font-size: 14px; background: #76367b; padding: 3em 1em 3em; opacity: .8; } .student-section h1 { text-align: cente; font-size: 40px; color: #76367b; } .student-list { display: flex; flex-wrap: wrap; margin: 2em 0; } .hsavat-student-block-inner { display: flex; flex-direction: column; padding: 48px; } .student-image { margin-bottom: 20px; } .student-name { font-size: 26px; margin-bottom: 16px; } .student-byline { font-size: 20px; margin-bottom: 30px; } .student-details { text-align: left; list-style: none; /* Hide bullets */ font-size: 16px; } .student-details li { margin-bottom: 10px; } .student-list .hsavat-student-block { display: flex; width: 50%; min-height: 500px; } .student-list .hsavat-student-block a { color: white; display: block; width: 100%; } .student-list .hsavat-student-block a:hover { border-bottom: none; } .hsavat-student-zahra { background-color: salmon; } .hsavat-student-zahra .student-image { border: 3px solid lightpink; } .hsavat-student-zahra a:hover { background-color: lightpink; } .hsavat-student-zahra a:hover .student-image { border: 3px solid salmon; } .hsavat-student-jayqhad { background-color: lightblue; } .hsavat-student-jayqhad .student-image { border: 3px solid lightgreen; } .hsavat-student-jayqhad a:hover { background-color: lightgreen; } .hsavat-student-jayqhad a:hover .student-image{ border: 3px solid lightblue; } .hsavat-student-mael { background-color: darkred; } .hsavat-student-mael .student-image{ border: 3px solid darkorange; } .hsavat-student-mael a:hover { background-color: darkorange; } .hsavat-student-mael a:hover .student-image{ border: 3px solid darkred; } .hsavat-student-cs { background-color: purple; } .hsavat-student-cs .student-image { border: 3px solid gold; } .hsavat-student-cs a:hover { background-color: gold; } .hsavat-student-cs a:hover .student-image { border: 3px solid purple; } /* Documentation Section Homepage */ .class-documentation { display: flex; flex-wrap: wrap; margin: 0; padding: 0; list-style: none; } .class-documentation li { width: 25%; } /* Student Work Homepage */ .student-work { margin: 3em 0 2em; } .student-section-header { text-align: center; } .student-work-header, .student-section-header { font-size: 1.5em; margin-bottom: 1em; } .student-work-header { padding-right: 20em; } .student-presentations { margin-left: 2em; font-size: 18px; } .student-presentations li { margin: 0.5em 0; } /* HSAVAT Section */ .hsavat-students { margin-bottom: 30px; } .hsavat-students-headline { text-align: center; margin: 30px 0; } .hsavat-students-content { display: flex; } .hsavat-students .hsavat-student-block { width:25%; margin:10px 5px 10px 5px; } .hsavat-students .hsavat-student-block .student-image { border: 3px solid purple; } .hsavat-students .hsavat-student-block .student-image:hover { border-color: gold; } .left-side-picture { margin-left: 10px; } .right-side-picture { margin-right: 10px; } /* Speaking Section */ .speaking-section { background: url('../img/cs-speaking.jpg'); height: 500px; } .speaking-section-content { color: white; width: 50%; text-align: center; } /* Side by Side Image with Content */ .diptych-with-image { display: flex; height: 600px; overflow: hidden; } .diptych-with-image-flipped .image { order: 1; } .diptych-with-image-flipped .content { order: 0; } .diptych-with-image .block { width: 50%; } .diptych-with-image .content { padding: 10px 15px; } .icon-list li { /* display: flex; align-items: center; */ margin-bottom: 25px; } .icon-list .icon { width: 50px; height: 50px; margin-right: 15px; background: #76367b; border-radius: 50%; padding: 5px; }
assets/css/demo.css
html { box-sizing: border-box; /* Hack to make the internet behave */ } body { font-family: "Open Sans Condensed", sans-serif; font-size: 14px; line-height: 1.4; } .wrapper { max-width: 1024px; width: 1024px; margin:0px auto; display: flex; min-height: 100vh; flex-direction: column; } main { flex: 1; } footer { background: #76367b; color: white; text-align: center; font-size: 11px; padding: 5px 0; } figure { margin: 0; padding: 0; } figcaption { font-style: italic; } /* Link Styles */ a { color: #76367b; text-decoration: none; } a:hover { color: gold; } a:visted { color: red; } /* Resets */ img { width: 100%; height: auto; } ul, ol { margin: 0; padding: 0; } p { margin: 0; } /* Typography */ h1, h2, h3, h4, h5, h6 { font-family: "Ubuntu Condensed", sans-serif; margin: 0; padding: 0; } .headline-light { color: white; } .headline-dark { color: #76367b; } .lead-text { font-size: 18px; line-height: 1.6; } /* Components ========== These are reuseable classes. They are used on many different sections to make components look the same and reduce the amount of CSS. */ /* Makes images circles */ .circle-image { width: 150px; height: 150px; border-radius: 50%; overflow: hidden; margin-left: auto; margin-right: auto; } /* HSAVAT Student Block */ .hsavat-student-block { justify-content: center; text-align: center; } /* Navigation */ .nav { border-bottom: 1px solid lightgrey; padding: 10px 15px; text-align: right; } .nav .link { margin-right: 10px; } .nav a:hover { border-bottom: 1px solid gold; } .home-link { align-self: flex-start; float: left; } /* Header Introduction */ .profile-intro { text-align: center; padding: 15px 0; } .profile-image .intro-image { border: 3px solid #76367b; width: 100px; height: 100px; } .misscs-image { width: 150px; margin-left: -20px; } .misscs-image-large{ width: 250px; margin-left: -50px; } /* Home Page */ .home-about { font-size: 20px; line-height: 1.5; padding: 0 3em; margin: 2em 0; } .home .intro { background-image: url('../../assets/img/hsavad-team-photo-abridged.jpg'); background-size: cover; background-repeat: no-repeat; background-position: 0 -170px; display: flex; flex-direction: column; height: 400px; color: #fff; } .home .intro-content { width: 352px; font-size: 14px; background: #76367b; padding: 3em 1em 3em; opacity: .8; } .student-section h1 { text-align: cente; font-size: 40px; color: #76367b; } .student-list { display: flex; flex-wrap: wrap; margin: 2em 0; } .hsavat-student-block-inner { display: flex; flex-direction: column; padding: 48px; } .student-image { margin-bottom: 20px; } .student-name { font-size: 26px; margin-bottom: 16px; } .student-byline { font-size: 20px; margin-bottom: 30px; } .student-details { text-align: left; list-style: none; /* Hide bullets */ font-size: 16px; } .student-details li { margin-bottom: 10px; } .student-list .hsavat-student-block { display: flex; width: 50%; min-height: 500px; } .student-list .hsavat-student-block a { color: white; display: block; width: 100%; } .student-list .hsavat-student-block a:hover { border-bottom: none; } .hsavat-student-zahra { background-color: salmon; } .hsavat-student-zahra .student-image { border: 3px solid lightpink; } .hsavat-student-zahra a:hover { background-color: lightpink; } .hsavat-student-zahra a:hover .student-image { border: 3px solid salmon; } .hsavat-student-jayqhad { background-color: lightblue; } .hsavat-student-jayqhad .student-image { border: 3px solid lightgreen; } .hsavat-student-jayqhad a:hover { background-color: lightgreen; } .hsavat-student-jayqhad a:hover .student-image{ border: 3px solid lightblue; } .hsavat-student-mael { background-color: darkred; } .hsavat-student-mael .student-image{ border: 3px solid darkorange; } .hsavat-student-mael a:hover { background-color: darkorange; } .hsavat-student-mael a:hover .student-image{ border: 3px solid darkred; } .hsavat-student-cs { background-color: purple; } .hsavat-student-cs .student-image { border: 3px solid gold; } .hsavat-student-cs a:hover { background-color: gold; } .hsavat-student-cs a:hover .student-image { border: 3px solid purple; } /* Documentation Section Homepage */ .class-documentation { display: flex; flex-wrap: wrap; margin: 0; padding: 0; list-style: none; } .class-documentation li { width: 25%; } /* Student Work Homepage */ .student-work { margin: 3em 0 2em; } .student-section-header { text-align: center; } .student-work-header, .student-section-header { font-size: 1.5em; margin-bottom: 1em; } .student-work-header { padding-right: 20em; } .student-presentations { margin-left: 2em; font-size: 18px; } .student-presentations li { margin: 0.5em 0; } /* HSAVAT Section */ .hsavat-students { margin-bottom: 30px; } .hsavat-students-headline { text-align: center; margin: 30px 0; } .hsavat-students-content { display: flex; } .hsavat-students .hsavat-student-block { width:25%; margin:10px 5px 10px 5px; } .hsavat-students .hsavat-student-block .student-image { border: 3px solid purple; } .hsavat-students .hsavat-student-block .student-image:hover { border-color: gold; } .left-side-picture { margin-left: 10px; } .right-side-picture { margin-right: 10px; } /* Speaking Section */ .speaking-section { background: url('../img/cs-speaking.jpg'); height: 500px; } .speaking-section-content { color: white; width: 50%; text-align: center; } /* Side by Side Image with Content */ .diptych-with-image { display: flex; height: 600px; overflow: hidden; } .diptych-with-image-flipped .image { order: 1; } .diptych-with-image-flipped .content { order: 0; } .diptych-with-image .block { width: 50%; } .diptych-with-image .content { padding: 10px 15px; } .icon-list li { /* display: flex; align-items: center; */ margin-bottom: 25px; } .icon-list .icon { width: 50px; height: 50px; margin-right: 15px; background: #76367b; border-radius: 50%; padding: 5px; }
0.379378
0.073663
*{ margin: 0; padding: 0; box-sizing: border-box; } body{ font-family: 'Bitter', 'Helvetica Neue', Helvetica, Arial, sans-serif; overflow-x: hidden; color: #555555; } h2{ font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif; text-transform: uppercase; font-weight: 700; } section{ padding: 100px 0; } section h2{ margin: 0; font-size: 3em; } section img{ width:400px; } /*-- Css header --*/ header{ text-align: center; background: rgba(117, 190, 233, 1) url("http://www.couchcreative.com.au/img/bkg-header.jpg") no-repeat scroll center center; background-size: cover; color: white; padding: 1px; } header .container{ padding-top: 0; padding-bottom: 0; height: 100%; } header img{ display: block; margin: 50px auto; max-width: 280px !important; } .contact-link{ background: rgba(0, 0, 0, 0) url("http://www.couchcreative.com.au/img/contact-link.png") no-repeat scroll center center; width: 150px; height: 90px; display: block; background-size: cover; text-indent: cover; text-indent: -999px; overflow: hidden; margin: 20px auto; opacity: 0.5; } .contact-link:hover{ opacity: 1; cursor: pointer; } li a.contact-TT{ list-style-type: none; } /*-- End css header --*/ /*-- Css nแป™i dung --*/ .PP{ text-align: center; font-size: 42px; } .gach{ padding:0; border: none; border-top: solid 5px; text-align: center; max-width: 250px; margin: 25px auto 50px; border-color: #75bee9; } .gach::after{ font-family: sans-serif; display: inline-block; position: relative; top: -0.8em; font-size: 2em; padding: 0 0.25em; background-color: white; color: #75bee9; } .noidung-chinh{ margin: 0 0 30px ; right: 0; display: inline-block; padding-left: 110px; } .noidung-chinh a{ margin-right: -85px; } .noidung-link{ display: flex; position: relative; max-width: 360px; margin: 0 auto; } .anhanh{ width: 360px; } .caption{ background: rgba(117, 190, 233, 0.9); position: absolute; width: 100%; height: 100%; opacity: 0; transition: all ease 0.5s; -webkit-transition: all ease 0.5s; -moz-transition: all ease 0.5s; } .caption:hover{ opacity: 1; } .caption-content{ position: absolute; width: 100%; height: 20px; font-size: 20px; text-align: center; top: 50%; margin-top: -12px; color: white; } i{ margin-top: -12px; } /*-- end css nแป™i dung --*/ /*-- Css About --*/ .about { background: rgba(117, 190, 233, 1) url("http://www.couchcreative.com.au/img/bkg_texture_blue.jpg") repeat scroll center center; color: white; } .gach2::after{ font-family: sans-serif; display: inline-block; position: relative; top: -0.8em; font-size: 2em; padding: 0 0.25em; background-color: #75bee9; color: white; } .gach2{ border-color: white; padding: 0; border: none; border-top: solid 5px; text-align: center; max-width: 250px; margin: 25px auto 50px; } .pq1{ margin-bottom: 10px; } .text{ text-align:center; font-size: 22px; margin: 0px auto; display: block; font-family:serif ; } /*-- css nแป™i dung --*/ /*-- Css Contact --*/ hr{ margin-left: 41%; } .contact{ background-color: #333333; color: white; height: 400px; } .contact1{ font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;; text-align: center; font-size: 22px; line-height: 33px; } .contact2{ font-family: Bitter, "Helvetica Neue", Helvetica, Arial, sans-serif;; text-align: center; font-size: 20px; line-height: 29px; margin-top: 50px; } footer{ font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: white; text-align: center; } .text-footer{ background-color: #333333; height: 120px; width: 100%; } .email{ color: #75bee9; } @media screen and (min-width: 767px) { .noidung-chinh{ margin: 0 0 30px; } } /*-- For mobie --*/ @media screen and (max-width: 767px) { section{ padding: 75px 0; } .noidung-chinh img{ width: 300px; } .caption{ width: 300px; } a.noidung-link{ margin: 0px 0px 0px; padding: 0px 35px; } .noidung-chinh{ width: 330px; display: inline; } } /*-- ipad pro --*/ @media screen and (min-width:768px) { header img{ max-width: 400px !important; margin: 100px auto; } }
CSS-INDEX.css
*{ margin: 0; padding: 0; box-sizing: border-box; } body{ font-family: 'Bitter', 'Helvetica Neue', Helvetica, Arial, sans-serif; overflow-x: hidden; color: #555555; } h2{ font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif; text-transform: uppercase; font-weight: 700; } section{ padding: 100px 0; } section h2{ margin: 0; font-size: 3em; } section img{ width:400px; } /*-- Css header --*/ header{ text-align: center; background: rgba(117, 190, 233, 1) url("http://www.couchcreative.com.au/img/bkg-header.jpg") no-repeat scroll center center; background-size: cover; color: white; padding: 1px; } header .container{ padding-top: 0; padding-bottom: 0; height: 100%; } header img{ display: block; margin: 50px auto; max-width: 280px !important; } .contact-link{ background: rgba(0, 0, 0, 0) url("http://www.couchcreative.com.au/img/contact-link.png") no-repeat scroll center center; width: 150px; height: 90px; display: block; background-size: cover; text-indent: cover; text-indent: -999px; overflow: hidden; margin: 20px auto; opacity: 0.5; } .contact-link:hover{ opacity: 1; cursor: pointer; } li a.contact-TT{ list-style-type: none; } /*-- End css header --*/ /*-- Css nแป™i dung --*/ .PP{ text-align: center; font-size: 42px; } .gach{ padding:0; border: none; border-top: solid 5px; text-align: center; max-width: 250px; margin: 25px auto 50px; border-color: #75bee9; } .gach::after{ font-family: sans-serif; display: inline-block; position: relative; top: -0.8em; font-size: 2em; padding: 0 0.25em; background-color: white; color: #75bee9; } .noidung-chinh{ margin: 0 0 30px ; right: 0; display: inline-block; padding-left: 110px; } .noidung-chinh a{ margin-right: -85px; } .noidung-link{ display: flex; position: relative; max-width: 360px; margin: 0 auto; } .anhanh{ width: 360px; } .caption{ background: rgba(117, 190, 233, 0.9); position: absolute; width: 100%; height: 100%; opacity: 0; transition: all ease 0.5s; -webkit-transition: all ease 0.5s; -moz-transition: all ease 0.5s; } .caption:hover{ opacity: 1; } .caption-content{ position: absolute; width: 100%; height: 20px; font-size: 20px; text-align: center; top: 50%; margin-top: -12px; color: white; } i{ margin-top: -12px; } /*-- end css nแป™i dung --*/ /*-- Css About --*/ .about { background: rgba(117, 190, 233, 1) url("http://www.couchcreative.com.au/img/bkg_texture_blue.jpg") repeat scroll center center; color: white; } .gach2::after{ font-family: sans-serif; display: inline-block; position: relative; top: -0.8em; font-size: 2em; padding: 0 0.25em; background-color: #75bee9; color: white; } .gach2{ border-color: white; padding: 0; border: none; border-top: solid 5px; text-align: center; max-width: 250px; margin: 25px auto 50px; } .pq1{ margin-bottom: 10px; } .text{ text-align:center; font-size: 22px; margin: 0px auto; display: block; font-family:serif ; } /*-- css nแป™i dung --*/ /*-- Css Contact --*/ hr{ margin-left: 41%; } .contact{ background-color: #333333; color: white; height: 400px; } .contact1{ font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;; text-align: center; font-size: 22px; line-height: 33px; } .contact2{ font-family: Bitter, "Helvetica Neue", Helvetica, Arial, sans-serif;; text-align: center; font-size: 20px; line-height: 29px; margin-top: 50px; } footer{ font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: white; text-align: center; } .text-footer{ background-color: #333333; height: 120px; width: 100%; } .email{ color: #75bee9; } @media screen and (min-width: 767px) { .noidung-chinh{ margin: 0 0 30px; } } /*-- For mobie --*/ @media screen and (max-width: 767px) { section{ padding: 75px 0; } .noidung-chinh img{ width: 300px; } .caption{ width: 300px; } a.noidung-link{ margin: 0px 0px 0px; padding: 0px 35px; } .noidung-chinh{ width: 330px; display: inline; } } /*-- ipad pro --*/ @media screen and (min-width:768px) { header img{ max-width: 400px !important; margin: 100px auto; } }
0.288268
0.072966
.smiley-list { max-width: 400px; padding: 0; margin-bottom:10px; margin-left: auto; margin-right: auto; display: flex; justify-content: space-between; border: none; border-radius: 0; overflow: hidden; } .smiley-list .smiley-item { display: inline-block; clear: none; width: 70px; } .radio-item.smiley-item{ padding: 0; } .smiley-list .smiley-item label { display: block; height: 0; margin: 0; padding: 100% 0 0 0; background: transparent 0 0 no-repeat; font-size: 0; } .smiley-list .smiley-item label::before { position: absolute; left: 50%; width: 100%; height: 0; margin-left: -50%; padding-top: 100%; content: ""; border: 0 none; border-radius: 0; background: transparent 0 0 no-repeat; background-size: cover; filter: saturate(0.2); } .smiley-list .smiley-item-1 label::before { background-image: url(../images/default/smile1.svg); } .smiley-list .smiley-item-2 label::before { background-image: url(../images/default/smile2.svg); } .smiley-list .smiley-item-3 label::before { background-image: url(../images/default/smile3.svg); } .smiley-list .smiley-item-4 label::before { background-image: url(../images/default/smile4.svg); } .smiley-list .smiley-item-5 label::before { background-image: url(../images/default/smile5.svg); } .smiley-list .smiley-item input[type="radio"]:hover + label::before { filter: saturate(0.7); background-color: #ccc; } .smiley-list .smiley-item-1 input[type="radio"]:checked + label::before { filter: saturate(1); background-color: #349a04; } .smiley-list .smiley-item-2 input[type="radio"]:checked + label::before { filter: saturate(1); background-color: #66ca0e; } .smiley-list .smiley-item-3 input[type="radio"]:checked + label::before { filter: saturate(1); background-color: #e95a0b; } .smiley-list .smiley-item-4 input[type="radio"]:checked + label::before { filter: saturate(1); background-color: #fc3104; } .smiley-list .smiley-item-5 input[type="radio"]:checked + label::before { filter: saturate(1); background-color: #cc0204; } .smiley-list .smiley-item input[type="radio"]:focus + label::before { outline: none; } .smiley-list .smiley-item label::after { display: none; } body .answer-item.smiley-item label::after{ display: none; background-color: transparent; } /**/ /* Extras via extra classes */ /**/ /* Alternative smileys */ .alt1 .smiley-list .smiley-item-1 label::before { background-image: url(../images/alt1/smile1.png); } .alt1 .smiley-list .smiley-item-2 label::before { background-image: url(../images/alt1/smile2.png); } .alt1 .smiley-list .smiley-item-3 label::before { background-image: url(../images/alt1/smile3.png); } .alt1 .smiley-list .smiley-item-4 label::before { background-image: url(../images/alt1/smile4.png); } .alt1 .smiley-list .smiley-item-5 label::before { background-image: url(../images/alt1/smile5.png); } /* Class: border for border around 5 smileys */ .box .smiley-list{ border: 1px solid #ccc; border-radius: 4px; }
survey/questions/answer/5pointchoice/assets/css/5PointSmiley.css
.smiley-list { max-width: 400px; padding: 0; margin-bottom:10px; margin-left: auto; margin-right: auto; display: flex; justify-content: space-between; border: none; border-radius: 0; overflow: hidden; } .smiley-list .smiley-item { display: inline-block; clear: none; width: 70px; } .radio-item.smiley-item{ padding: 0; } .smiley-list .smiley-item label { display: block; height: 0; margin: 0; padding: 100% 0 0 0; background: transparent 0 0 no-repeat; font-size: 0; } .smiley-list .smiley-item label::before { position: absolute; left: 50%; width: 100%; height: 0; margin-left: -50%; padding-top: 100%; content: ""; border: 0 none; border-radius: 0; background: transparent 0 0 no-repeat; background-size: cover; filter: saturate(0.2); } .smiley-list .smiley-item-1 label::before { background-image: url(../images/default/smile1.svg); } .smiley-list .smiley-item-2 label::before { background-image: url(../images/default/smile2.svg); } .smiley-list .smiley-item-3 label::before { background-image: url(../images/default/smile3.svg); } .smiley-list .smiley-item-4 label::before { background-image: url(../images/default/smile4.svg); } .smiley-list .smiley-item-5 label::before { background-image: url(../images/default/smile5.svg); } .smiley-list .smiley-item input[type="radio"]:hover + label::before { filter: saturate(0.7); background-color: #ccc; } .smiley-list .smiley-item-1 input[type="radio"]:checked + label::before { filter: saturate(1); background-color: #349a04; } .smiley-list .smiley-item-2 input[type="radio"]:checked + label::before { filter: saturate(1); background-color: #66ca0e; } .smiley-list .smiley-item-3 input[type="radio"]:checked + label::before { filter: saturate(1); background-color: #e95a0b; } .smiley-list .smiley-item-4 input[type="radio"]:checked + label::before { filter: saturate(1); background-color: #fc3104; } .smiley-list .smiley-item-5 input[type="radio"]:checked + label::before { filter: saturate(1); background-color: #cc0204; } .smiley-list .smiley-item input[type="radio"]:focus + label::before { outline: none; } .smiley-list .smiley-item label::after { display: none; } body .answer-item.smiley-item label::after{ display: none; background-color: transparent; } /**/ /* Extras via extra classes */ /**/ /* Alternative smileys */ .alt1 .smiley-list .smiley-item-1 label::before { background-image: url(../images/alt1/smile1.png); } .alt1 .smiley-list .smiley-item-2 label::before { background-image: url(../images/alt1/smile2.png); } .alt1 .smiley-list .smiley-item-3 label::before { background-image: url(../images/alt1/smile3.png); } .alt1 .smiley-list .smiley-item-4 label::before { background-image: url(../images/alt1/smile4.png); } .alt1 .smiley-list .smiley-item-5 label::before { background-image: url(../images/alt1/smile5.png); } /* Class: border for border around 5 smileys */ .box .smiley-list{ border: 1px solid #ccc; border-radius: 4px; }
0.333069
0.084493
form.chat * { transition: all .5s; box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; } form.chat { margin: 0; cursor: default; position: absolute; left: 0; right: 0; bottom: 0; top: 0; } form.chat span.spinner { -moz-animation: loading-bar 1s 1; -webkit-animation: loading-bar 1s 1; animation: loading-bar 1s 1; display: block; height: 2px; background-color: #00e34d; transition: width 0.2s; position: absolute; top: 0; left: 0; right: 0; z-index: 4 } form.chat .messagesx { display: block; overflow-x: hidden; overflow-y: scroll; position: relative; height: 100%; width: 100%; padding: 2% 3%; border-bottom: 1px solid #ecf0f1; } form.chat ::-webkit-scrollbar { width: 10px; height: 1px; transition: all .5s; z-index: 10; } form.chat ::-webkit-scrollbar-track { background-color: white; } form.chat ::-webkit-scrollbar-thumb { background-color: #bec4c8; border-radius: 3px; } form.chat .messagex { display: block; width: 98%; padding: 0.5%; } form.chat .messagex p { margin: 0; } form.chat .myMessage, form.chat .fromThem { max-width: 50%; word-wrap: break-word; margin-bottom: 20px; } form.chat .myMessage, .fromThem { position: relative; padding: 10px 20px; color: white; border-radius: 2px; clear: both; font: 400 15px 'Open Sans', sans-serif; } form.chat .myMessage { background: #00e34d; color: white; float: right; clear: both; border-bottom-right-radius: 20px 0px\9; } form.chat .fromThem { background: #E5E5EA; color: black; float: left; clear: both; border-bottom-left-radius: 30px 0px\9; } form.chat date { position: absolute; top: 10px; font-size: 14px; white-space: nowrap; vertical-align: middle; color: #8b8b90; opacity: 0; z-index: 4; } form.chat .myMessage date { left: 105%; } form.chat .fromThem date { right: 105%; } form.chat input { font: 400 13px 'Open Sans', sans-serif; border: 0; padding: 0 15px; height: 10%; outline: 0; } form.chat input[type='text'] { width: 73%; float: left; } form.chat .myMessage, form.chat .fromThem { font-size: 16px; } form.chat .myMessage date, form.chat .fromThem date { top: -20px; left: auto; right: 0; font-size: 12px; } form.chat .myMessage, form.chat .fromThem { max-width: 100%; } @-moz-keyframes loading-bar { 0% { width: 0%; } 90% { width: 90%; } 100% { width: 100%; } } @-webkit-keyframes loading-bar { 0% { width: 0%; } 90% { width: 90%; } 100% { width: 100%; } } @keyframes loading-bar { 0% { width: 0%; } 90% { width: 90%; } 100% { width: 100%; } } .border { position: absolute; top: 12.3%; right: 7%; left: 7%; bottom: 12%; overflow: hidden; }
smsgate/public/css/app/phone.css
form.chat * { transition: all .5s; box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; } form.chat { margin: 0; cursor: default; position: absolute; left: 0; right: 0; bottom: 0; top: 0; } form.chat span.spinner { -moz-animation: loading-bar 1s 1; -webkit-animation: loading-bar 1s 1; animation: loading-bar 1s 1; display: block; height: 2px; background-color: #00e34d; transition: width 0.2s; position: absolute; top: 0; left: 0; right: 0; z-index: 4 } form.chat .messagesx { display: block; overflow-x: hidden; overflow-y: scroll; position: relative; height: 100%; width: 100%; padding: 2% 3%; border-bottom: 1px solid #ecf0f1; } form.chat ::-webkit-scrollbar { width: 10px; height: 1px; transition: all .5s; z-index: 10; } form.chat ::-webkit-scrollbar-track { background-color: white; } form.chat ::-webkit-scrollbar-thumb { background-color: #bec4c8; border-radius: 3px; } form.chat .messagex { display: block; width: 98%; padding: 0.5%; } form.chat .messagex p { margin: 0; } form.chat .myMessage, form.chat .fromThem { max-width: 50%; word-wrap: break-word; margin-bottom: 20px; } form.chat .myMessage, .fromThem { position: relative; padding: 10px 20px; color: white; border-radius: 2px; clear: both; font: 400 15px 'Open Sans', sans-serif; } form.chat .myMessage { background: #00e34d; color: white; float: right; clear: both; border-bottom-right-radius: 20px 0px\9; } form.chat .fromThem { background: #E5E5EA; color: black; float: left; clear: both; border-bottom-left-radius: 30px 0px\9; } form.chat date { position: absolute; top: 10px; font-size: 14px; white-space: nowrap; vertical-align: middle; color: #8b8b90; opacity: 0; z-index: 4; } form.chat .myMessage date { left: 105%; } form.chat .fromThem date { right: 105%; } form.chat input { font: 400 13px 'Open Sans', sans-serif; border: 0; padding: 0 15px; height: 10%; outline: 0; } form.chat input[type='text'] { width: 73%; float: left; } form.chat .myMessage, form.chat .fromThem { font-size: 16px; } form.chat .myMessage date, form.chat .fromThem date { top: -20px; left: auto; right: 0; font-size: 12px; } form.chat .myMessage, form.chat .fromThem { max-width: 100%; } @-moz-keyframes loading-bar { 0% { width: 0%; } 90% { width: 90%; } 100% { width: 100%; } } @-webkit-keyframes loading-bar { 0% { width: 0%; } 90% { width: 90%; } 100% { width: 100%; } } @keyframes loading-bar { 0% { width: 0%; } 90% { width: 90%; } 100% { width: 100%; } } .border { position: absolute; top: 12.3%; right: 7%; left: 7%; bottom: 12%; overflow: hidden; }
0.485844
0.080502
@font-face { font-family: "Noto Sans"; font-style: italic; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/notosans/v21/o-0TIpQlx3QUlC5A4PNr4Az5ZtyE.ttf) format("truetype"); } @font-face { font-family: "Quicksand"; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/quicksand/v24/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkM0o18E.ttf) format("truetype"); } @font-face { font-family: "Quicksand"; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/quicksand/v24/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkBgv18E.ttf) format("truetype"); } * { margin: 0; padding: 0; box-sizing: border-box; font-family: "Noto Sans", sans-serif; font-family: "Quicksand", sans-serif; } body { background: #1f1f1f; min-height: 100vh; } .root-settings { min-height: 100vh; width: 100%; display: flex; } @media screen and (max-width: 1050px) { .root-settings { flex-direction: column; } } .root-settings .catalog { display: flex; align-items: center; gap: 10px 0; padding: 10px 15px; flex-direction: column; width: 400px; min-width: 400px; position: relative; height: calc(100vh - 60px); transform: translateY(60px); background: #333333; } @media screen and (max-width: 1250px) { .root-settings .catalog { min-width: 300px; } } @media screen and (max-width: 1050px) { .root-settings .catalog { width: 100%; height: 300px; } } .root-settings .catalog .logout-btn.catalog-btn { background: #ff4141; position: absolute; bottom: 0; width: calc(100% - 20px); transform: translateY(-20px); } .root-settings .catalog .logout-btn.catalog-btn:hover { background: #ff5252; } .root-settings .catalog .catalog-btn { display: flex; cursor: pointer; justify-content: center; align-items: center; width: 100%; height: 50px; font-size: 1.2rem; background: #414141; border: none; color: #fff; border-radius: 5px; } .root-settings .catalog .catalog-btn:hover { background: #555555; } .root-settings .catalog .catalog-btn .fa-user-cog, .root-settings .catalog .catalog-btn .fa-lock { transform: translateX(-20px); }
src/less/settings-style/settings.css
@font-face { font-family: "Noto Sans"; font-style: italic; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/notosans/v21/o-0TIpQlx3QUlC5A4PNr4Az5ZtyE.ttf) format("truetype"); } @font-face { font-family: "Quicksand"; font-style: normal; font-weight: 500; font-display: swap; src: url(https://fonts.gstatic.com/s/quicksand/v24/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkM0o18E.ttf) format("truetype"); } @font-face { font-family: "Quicksand"; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/quicksand/v24/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkBgv18E.ttf) format("truetype"); } * { margin: 0; padding: 0; box-sizing: border-box; font-family: "Noto Sans", sans-serif; font-family: "Quicksand", sans-serif; } body { background: #1f1f1f; min-height: 100vh; } .root-settings { min-height: 100vh; width: 100%; display: flex; } @media screen and (max-width: 1050px) { .root-settings { flex-direction: column; } } .root-settings .catalog { display: flex; align-items: center; gap: 10px 0; padding: 10px 15px; flex-direction: column; width: 400px; min-width: 400px; position: relative; height: calc(100vh - 60px); transform: translateY(60px); background: #333333; } @media screen and (max-width: 1250px) { .root-settings .catalog { min-width: 300px; } } @media screen and (max-width: 1050px) { .root-settings .catalog { width: 100%; height: 300px; } } .root-settings .catalog .logout-btn.catalog-btn { background: #ff4141; position: absolute; bottom: 0; width: calc(100% - 20px); transform: translateY(-20px); } .root-settings .catalog .logout-btn.catalog-btn:hover { background: #ff5252; } .root-settings .catalog .catalog-btn { display: flex; cursor: pointer; justify-content: center; align-items: center; width: 100%; height: 50px; font-size: 1.2rem; background: #414141; border: none; color: #fff; border-radius: 5px; } .root-settings .catalog .catalog-btn:hover { background: #555555; } .root-settings .catalog .catalog-btn .fa-user-cog, .root-settings .catalog .catalog-btn .fa-lock { transform: translateX(-20px); }
0.444083
0.117269
input:-moz-placeholder,textarea:-moz-placeholder{ color: white;/* Mozilla Firefox 4 to 18 */ opacity: 0.6; font-size: 29px; } input๏ผš๏ผš-moz-placeholder{ color: white;/* Mozilla Firefox 19+ */ opacity: 0.6; font-size: 20px; } input:-ms-input-placeholder,textarea:-ms-input-placeholder{ color: white; opacity: 0.6; font-size: 20px; } input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{ color: white; opacity: 0.6; font-size: 20px; /* ๆ”นๅŠจ */ } body{ margin: 0; padding: 0; background: url(img/ไธŠๆตท.jpg); } /*ๅฐ†containerๅฎนๅ™จๅˆ†ไธบไธค้ƒจๅˆ†๏ผŒๅณไธคๅคง่กŒ๏ผŒไธ€ๅคงๅˆ—ใ€‚*/ .container{ margin:140px auto; width:450px ; height: 400px; border-radius: 25px; box-shadow: 0 0 8px black; /*ๆณจ้‡Š็š„ไธบๅฏไพ›้€‰ๆ‹ฉ็š„็™ปๅฝ•็•Œ้ขๆธๅ˜่‰ฒ*/ /*background-image: linear-gradient(-225deg, #A445B2 0%, #D41872 52%, #FF0066 100%); */ /*background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%); */ /*background-image: linear-gradient(to top, #f43b47 0%, #453a94 100%);*/ /*background-image: linear-gradient(to top, #4fb576 0%, #44c489 30%, #28a9ae 46%, #28a2b7 59%, #4c7788 71%, #6c4f63 86%, #432c39 100%);*/ /*background-image: linear-gradient(to top, #9be15d 0%, #00e3ae 100%);*/ background: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0.15) 100%), radial-gradient(at top center, rgba(255,255,255,0.40) 0%, rgba(0,0,0,0.40) 120%) #989898; background-blend-mode: multiply,multiply; background-image: linear-gradient(to right, #e4afcb 0%, #b8cbb8 0%, #b8cbb8 0%, #e2c58b 30%, #c2ce9c 64%, #7edbdc 100%); display: grid; grid-template-rows:110px 300px ; grid-template-columns: 450px; } /*็ฌฌไบŒ่กŒไธญๅ†ๅตŒๅฅ—ๅˆ›ๅปบไธ€ไธช็ฝ‘ๆ ผ*/ .container-form{ display: grid; grid-template-rows: repeat(4,72px); grid-template-columns: repeat(3,150px); } .container-logo{ color: white; width: 120px; height: 50px; font-size: 45px; align-self: end; margin-left: 77px; } .container-form-userIcon{ color: white; font-size:33px; /*vertical-align: -15%; */ /*่ฏฅๅฑžๆ€ง่งฃๅ†ณๅ›พๆ ‡ไธŽ่พ“ๅ…ฅๆก†ๅฏน้ฝ้—ฎ้ข˜๏ผ*/ margin-top:35px; /* ๆ”นๅŠจ */ margin-left: 85px; /* ๆ”นๅŠจ */ } .container-form-passwordIcon{ color: white; font-size: 33px; grid-area: 2/1/3/2; /*2 1 3 2*/ margin-top: 26px; /* ๆ”นๅŠจ */ margin-left: 85px; /* ๆ”นๅŠจ */ vertical-align:middle; } /*ๅŽปๆމ็‚นๅ‡ป่พ“ๅ…ฅๆก†ๅŽๅ‡บ็Žฐ็š„่“่‰ฒ็Ÿฉๅฝข่พนๆก†*/ input{ outline:none; } .container-form-userInput{ width: 190px; height: 32px; border-radius: 25px; /*15px*/ font-size: 20px; text-indent:20px; /*ๆŽงๅˆถ่พ“ๅ…ฅๆก†ๆ–‡ๅญ—ๅˆฐๆก†็š„ๅทฆ็ซฏ่ท็ฆป*/ letter-spacing: 2px; border: 2px solid white; BACKGROUND-COLOR: transparent;/*่ƒŒๆ™ฏ้€ๆ˜Ž*/ color: white; grid-area: 1/2/2/3; /*1 2 2 3*/ margin-top: 35px; /*45*/ margin-left: -22.5px; padding-top: 4px; /* ๆ”นๅŠจ */ } .container-form-passwordInput{ width: 190px; height: 32px; border-radius: 25px; font-size: 18px; text-indent:20px; /*ๆŽงๅˆถ่พ“ๅ…ฅๆก†ๆ–‡ๅญ—ๅˆฐๆก†็š„่ท็ฆป*/ letter-spacing: 2px; border: 2px solid white; BACKGROUND-COLOR: transparent;/*่ƒŒๆ™ฏ้€ๆ˜Ž*/ color: white; grid-area: 2/2/3/3; /*2 2 3 3*/ margin-top: 25px; /*30*/ margin-left: -22.5px; padding-top: 4px; /* ๆ”นๅŠจ */ } a{ text-decoration: none; color: white; } a:hover{ color: red; } ul{ list-style: none; color: white; font-size: 12px; grid-area: 3/1/4/4; /*3 1 4 4*/ margin-top: 10px; margin-left: 83px; } ul li{ display: inline; } .container-form-logInButton{ background-image: linear-gradient(to right, #92fe9d 0%, #00c9ff 100%); color: white; width: 250px; /*250*/ height: 40px; border-radius: 20px; border: none; font-size: 22px; font-weight: bold; grid-area: 4/2/5/3; /*4 2 5 3*/ margin-top: -20px; margin-left: -50px; /*-50*/ } .container-form-logInButton:hover{ background-image: linear-gradient(to top, #92fe9d 0%, #68e0cf 100%); }
client/style/logIn2.css
input:-moz-placeholder,textarea:-moz-placeholder{ color: white;/* Mozilla Firefox 4 to 18 */ opacity: 0.6; font-size: 29px; } input๏ผš๏ผš-moz-placeholder{ color: white;/* Mozilla Firefox 19+ */ opacity: 0.6; font-size: 20px; } input:-ms-input-placeholder,textarea:-ms-input-placeholder{ color: white; opacity: 0.6; font-size: 20px; } input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{ color: white; opacity: 0.6; font-size: 20px; /* ๆ”นๅŠจ */ } body{ margin: 0; padding: 0; background: url(img/ไธŠๆตท.jpg); } /*ๅฐ†containerๅฎนๅ™จๅˆ†ไธบไธค้ƒจๅˆ†๏ผŒๅณไธคๅคง่กŒ๏ผŒไธ€ๅคงๅˆ—ใ€‚*/ .container{ margin:140px auto; width:450px ; height: 400px; border-radius: 25px; box-shadow: 0 0 8px black; /*ๆณจ้‡Š็š„ไธบๅฏไพ›้€‰ๆ‹ฉ็š„็™ปๅฝ•็•Œ้ขๆธๅ˜่‰ฒ*/ /*background-image: linear-gradient(-225deg, #A445B2 0%, #D41872 52%, #FF0066 100%); */ /*background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%); */ /*background-image: linear-gradient(to top, #f43b47 0%, #453a94 100%);*/ /*background-image: linear-gradient(to top, #4fb576 0%, #44c489 30%, #28a9ae 46%, #28a2b7 59%, #4c7788 71%, #6c4f63 86%, #432c39 100%);*/ /*background-image: linear-gradient(to top, #9be15d 0%, #00e3ae 100%);*/ background: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0.15) 100%), radial-gradient(at top center, rgba(255,255,255,0.40) 0%, rgba(0,0,0,0.40) 120%) #989898; background-blend-mode: multiply,multiply; background-image: linear-gradient(to right, #e4afcb 0%, #b8cbb8 0%, #b8cbb8 0%, #e2c58b 30%, #c2ce9c 64%, #7edbdc 100%); display: grid; grid-template-rows:110px 300px ; grid-template-columns: 450px; } /*็ฌฌไบŒ่กŒไธญๅ†ๅตŒๅฅ—ๅˆ›ๅปบไธ€ไธช็ฝ‘ๆ ผ*/ .container-form{ display: grid; grid-template-rows: repeat(4,72px); grid-template-columns: repeat(3,150px); } .container-logo{ color: white; width: 120px; height: 50px; font-size: 45px; align-self: end; margin-left: 77px; } .container-form-userIcon{ color: white; font-size:33px; /*vertical-align: -15%; */ /*่ฏฅๅฑžๆ€ง่งฃๅ†ณๅ›พๆ ‡ไธŽ่พ“ๅ…ฅๆก†ๅฏน้ฝ้—ฎ้ข˜๏ผ*/ margin-top:35px; /* ๆ”นๅŠจ */ margin-left: 85px; /* ๆ”นๅŠจ */ } .container-form-passwordIcon{ color: white; font-size: 33px; grid-area: 2/1/3/2; /*2 1 3 2*/ margin-top: 26px; /* ๆ”นๅŠจ */ margin-left: 85px; /* ๆ”นๅŠจ */ vertical-align:middle; } /*ๅŽปๆމ็‚นๅ‡ป่พ“ๅ…ฅๆก†ๅŽๅ‡บ็Žฐ็š„่“่‰ฒ็Ÿฉๅฝข่พนๆก†*/ input{ outline:none; } .container-form-userInput{ width: 190px; height: 32px; border-radius: 25px; /*15px*/ font-size: 20px; text-indent:20px; /*ๆŽงๅˆถ่พ“ๅ…ฅๆก†ๆ–‡ๅญ—ๅˆฐๆก†็š„ๅทฆ็ซฏ่ท็ฆป*/ letter-spacing: 2px; border: 2px solid white; BACKGROUND-COLOR: transparent;/*่ƒŒๆ™ฏ้€ๆ˜Ž*/ color: white; grid-area: 1/2/2/3; /*1 2 2 3*/ margin-top: 35px; /*45*/ margin-left: -22.5px; padding-top: 4px; /* ๆ”นๅŠจ */ } .container-form-passwordInput{ width: 190px; height: 32px; border-radius: 25px; font-size: 18px; text-indent:20px; /*ๆŽงๅˆถ่พ“ๅ…ฅๆก†ๆ–‡ๅญ—ๅˆฐๆก†็š„่ท็ฆป*/ letter-spacing: 2px; border: 2px solid white; BACKGROUND-COLOR: transparent;/*่ƒŒๆ™ฏ้€ๆ˜Ž*/ color: white; grid-area: 2/2/3/3; /*2 2 3 3*/ margin-top: 25px; /*30*/ margin-left: -22.5px; padding-top: 4px; /* ๆ”นๅŠจ */ } a{ text-decoration: none; color: white; } a:hover{ color: red; } ul{ list-style: none; color: white; font-size: 12px; grid-area: 3/1/4/4; /*3 1 4 4*/ margin-top: 10px; margin-left: 83px; } ul li{ display: inline; } .container-form-logInButton{ background-image: linear-gradient(to right, #92fe9d 0%, #00c9ff 100%); color: white; width: 250px; /*250*/ height: 40px; border-radius: 20px; border: none; font-size: 22px; font-weight: bold; grid-area: 4/2/5/3; /*4 2 5 3*/ margin-top: -20px; margin-left: -50px; /*-50*/ } .container-form-logInButton:hover{ background-image: linear-gradient(to top, #92fe9d 0%, #68e0cf 100%); }
0.227641
0.079032
body { padding: 20px 10px; color: #666; font: 14px "Lucida Grande", Helvetica, Arial, sans-serif; } *{box-sizing: border-box;} a { color: #00B7FF; } .container { padding-right: 20px; display: flex; } .sidebar { position: fixed; top: 0; left: 0; bottom: 0; flex: auto auto 400px; margin-right: 30px; box-shadow: 1px 1px 10px rgb(233, 233, 233); background-color: #f7faff; } .main-content { flex: 1 1 400px; margin-left: 300px; } .sidebar ul { margin: 0; padding: 0; list-style: none; } .sidebar ul:not(:last-child) { border-bottom: 1px solid rgb(182, 182, 182); padding-bottom: 10px; margin-bottom: 10px; } .sidebar li { margin: 0; font-size: 1.02rem; padding: .4em 1em; cursor: default; } .sidebar a:hover { text-decoration: underline; } .sidebar a { text-decoration: none; color: inherit; } .text-danger { color: orangered; } .text-success { color: skyblue; } .text-warning { color: rgb(252, 203, 112); } .copy-container:not(:first-child) { padding-top: 10px 0; } .copy_container { padding-bottom: 10px; } .copy-container:not(:last-child) { border-bottom: 1px solid #aaa; } .form-control { width: 100%; font-size: 1.1rem; padding: .4em .7em; margin: 15px 0; border: 1px solid rgb(184, 184, 184); border-radius: 10px; outline: 0; color: inherit; } .btn { display: inline-block; background-color: white; font-size: 1.1rem; padding: .5em 1em; border: 1px solid rgb(160, 160, 160); border-radius: 10px; color: inherit; outline: none; text-decoration: none; margin: 10px 10px 5px 0; } .btn-primary { background-color: rgb(118, 166, 255); color: white; border: none; } .btn-primary:hover { background-color: rgb(62, 128, 252); } .btn-danger { background-color: rgb(250, 66, 66); color: white; border: none } .btn-danger:hover { background-color: rgb(226, 39, 39); } .control-container { position: relative; border-top: 1px solid #aaa; margin-top: 15px; } .errors { color: rgb(187, 80, 42); }
public/stylesheets/style.css
body { padding: 20px 10px; color: #666; font: 14px "Lucida Grande", Helvetica, Arial, sans-serif; } *{box-sizing: border-box;} a { color: #00B7FF; } .container { padding-right: 20px; display: flex; } .sidebar { position: fixed; top: 0; left: 0; bottom: 0; flex: auto auto 400px; margin-right: 30px; box-shadow: 1px 1px 10px rgb(233, 233, 233); background-color: #f7faff; } .main-content { flex: 1 1 400px; margin-left: 300px; } .sidebar ul { margin: 0; padding: 0; list-style: none; } .sidebar ul:not(:last-child) { border-bottom: 1px solid rgb(182, 182, 182); padding-bottom: 10px; margin-bottom: 10px; } .sidebar li { margin: 0; font-size: 1.02rem; padding: .4em 1em; cursor: default; } .sidebar a:hover { text-decoration: underline; } .sidebar a { text-decoration: none; color: inherit; } .text-danger { color: orangered; } .text-success { color: skyblue; } .text-warning { color: rgb(252, 203, 112); } .copy-container:not(:first-child) { padding-top: 10px 0; } .copy_container { padding-bottom: 10px; } .copy-container:not(:last-child) { border-bottom: 1px solid #aaa; } .form-control { width: 100%; font-size: 1.1rem; padding: .4em .7em; margin: 15px 0; border: 1px solid rgb(184, 184, 184); border-radius: 10px; outline: 0; color: inherit; } .btn { display: inline-block; background-color: white; font-size: 1.1rem; padding: .5em 1em; border: 1px solid rgb(160, 160, 160); border-radius: 10px; color: inherit; outline: none; text-decoration: none; margin: 10px 10px 5px 0; } .btn-primary { background-color: rgb(118, 166, 255); color: white; border: none; } .btn-primary:hover { background-color: rgb(62, 128, 252); } .btn-danger { background-color: rgb(250, 66, 66); color: white; border: none } .btn-danger:hover { background-color: rgb(226, 39, 39); } .control-container { position: relative; border-top: 1px solid #aaa; margin-top: 15px; } .errors { color: rgb(187, 80, 42); }
0.507324
0.105948
๏ปฟ@charset "utf-8"; @import url(http://fonts.googleapis.com/css?family=Poiret+One); /* reset */ * { margin:0; padding:0;} ol,ul { list-style: none; } a { outline:0; text-decoration:none; color:#555; } img { border:0;} body { font:12px/1.6 'Poiret One'; color:#555; } /*๋ ˆ์ด์•„์›ƒ*/ header { position:fixed; width:15%; height:100%; background:#fff; top:0px; left:0px; transition:all 0.5s;} nav { position:relative; width:85%; height:35px; background:#212121; margin-left:15%; transition:all 0.5s;} section { width:85%; position:relative; margin-left:15%;} article { float:left; height:260px; transition:all 0.5s; animation:scale 1s 1;} article:nth-child(1) { width:60%; height:520px; background:#ddd;} article:nth-child(2) { width:40%; background:#ccc;} article:nth-child(3) { width:20%; background:#bbb;} article:nth-child(4) { width:20%; background:#aaa;} article:nth-child(5) { width:20%; background:#999;} article:nth-child(6) { width:40%; background:#888;} article:nth-child(7) { width:20%; background:#777;} article:nth-child(8) { width:20%; background:#666;} article:nth-child(9) { width:40%; background:#555;} article:nth-child(10) { width:20%; background:#444;} article:nth-child(11) { width:20%; background:#333;} article:nth-child(12) { width:20%; background:#222;} @keyframes scale { 0% { transform:scale(0); } 100% { transform:scale(1); } } article>div { position:relative; width:100%; height:100%; overflow:hidden; cursor:pointer; } /* header ์ปจํ…์ธ  */ header h1 { width:180px; height:136px; background:url(../img/logo1.png) no-repeat 0px 0px; background-size:contain; position:absolute; top:70px; left:50%; margin-left:-90px; text-indent:-99999px;} #gnb { position:absolute; top:300px; right:57px;} #gnb a { display:block; padding:8px 30px; font-size:17px; font-weight:bold; color:#555; text-align:left; line-height:1.8; transition:all .5s;} #gnb a:hover { color:lightpink;} #gnb a i { margin-right:13px;} .snsSet { width:90px; height:47px; position:absolute; bottom:50px; right:50%; margin-right:-45px;} .snsSet a { float:left;} /*nav*/ nav a:nth-child(1) { position:absolute; top:5px; left:10px;} nav a:nth-child(2) { position:absolute; top:5px; left:150px;} nav a:nth-child(3) { position:absolute; top:5px; right:90px;} nav a:nth-child(4) { position:absolute; top:5px; right:10px;} article>div { position:relative; width:100%; height:100%; overflow:hidden; cursor:pointer; } /* ๋ฐฐ๊ฒฝ์ด๋ฏธ์ง€ ์‚ฝ์ž…*/ article .bg1 { background-image:url(../img/pic1.jpg);} article .bg2 { background-image:url(../img/pic2.jpg);} article .bg3 { background-image:url(../img/pic3.jpg);} article .bg4 { background-image:url(../img/pic4.jpg);} article .bg5 { background-image:url(../img/pic5.jpg);} article .bg6 { background-image:url(../img/pic6.jpg);} article .bg7 { background-image:url(../img/pic7.jpg);} /* ์ด๋ฏธ์ง€๋ฐ•์Šค */ article .bg { background-size:cover; background-position:center center; } article .bg span { font-size:60px; color:#fff; position:absolute; bottom:0px; right:20px; transform:scale(10); opacity:0; transition:all 0.6s;} article .bg1 span { font-size:170px; bottom:-76px; right:-6px; opacity:1; transform:scale(1); transition:all 0.5s; color: #ddd;} /*์ด๋ฏธ์ง€๋ฐ•์Šค ํ˜ธ๋ฒ„ํšจ๊ณผ*/ article:hover .bg span { opacity:1; transform:scale(1);} article .bg1:hover span { transform:rotateY(360deg); color:#222; } article:hover .bg2 span{color:#ffb6c1;background:rgba(0,0,0,.6);border: 1px solid #ffb6c1;} article:hover .bg3 span{color:#ffb6c1;background:rgba(0,0,0,.6);border: 1px solid #ffb6c1;} /* ํ…์ŠคํŠธ๋ฐ•์Šค */ article .txt { color:#666; background:#fff; box-sizing:border-box; padding:40px 30px; transition:all 1s;} article:nth-child(3) .txt { background:#ffb6c1;} article:nth-child(11) .txt { background:#ccc;} article .txt i { font-size:300px; color:#ffb6c1; opacity:0; position:absolute; bottom:-70px; right:-200px; transition:all 0.7s;} article:nth-child(3) .txt i { position:absolute; bottom:-20px; right:-15px; font-size:200px; color:#fff; opacity:0.7;} article .txt strong { font-size:30px; font-weight:normal; line-height:1.6; color:#444; margin-bottom:20px; transition:all 1s;} /*ํ…์ŠคํŠธ๋ฐ•์Šค ํ˜ธ๋ฒ„ํšจ๊ณผ*/ article:hover .txt { background:#000; color:#fff;} article:hover .txt i { right:0px; opacity:0.5;} article:hover .txt strong { color:#fff;} @media screen and (min-width:1280px) and (max-width:1599px) { /*๋ ˆ์ด์•„์›ƒ*/ header { position:relative; width:100%; height:80px;} nav { width:100%; margin-left:0%;} section { width:100%; margin-left:0px;} /* header ์ปจํ…์ธ  */ header h1 { width:200px; height:40px; background-image:url(../img/logo2.png); top:20px; left:20px; margin-left:0px;} #gnb { top:20px; right:200px;} #gnb li { float:left;} .snsSet { bottom:20px; right:80px;} } @media screen and (min-width:1024px) and (max-width:1279px) { /*๋ ˆ์ด์•„์›ƒ*/ header { position:relative; width:100%; height:80px;} nav { width:100%; margin-left:0%;} section { width:100%; margin-left:0px;} article:nth-child(1) { width:75%;} article:nth-child(2) { width:25%;} article:nth-child(3) { width:25%;} article:nth-child(4) { width:25%;} article:nth-child(5) { width:25%;} article:nth-child(6) { width:50%;} article:nth-child(7) { width:50%;} article:nth-child(8) { width:25%;} article:nth-child(9) { width:25%;} article:nth-child(10) { width:50%;} article:nth-child(11) { width:25%;} article:nth-child(12) { width:25%;} /* header ์ปจํ…์ธ  */ header h1 { width:200px; height:40px; background-image:url(../img/logo2.png); top:20px; left:20px; margin-left:0px;} #gnb { top:20px; right:30px;} #gnb li { float:left;} .snsSet { display:none;} } @media screen and (min-width:780px) and (max-width:1023px) { /*๋ ˆ์ด์•„์›ƒ*/ header { position:relative; width:100%; height:80px;} nav { width:100%; margin-left:0%;} section { width:100%; margin-left:0px;} article:nth-child(1) { width:100%; height:400px;} article:nth-child(2) { width:66.6666%;} article:nth-child(3) { width:33.3333%;} article:nth-child(4) { width:33.3333%; display:none;} article:nth-child(5) { width:33.3333%;} article:nth-child(6) { width:66.6666%;} article:nth-child(7) { width:66.6666%; display:none;} article:nth-child(8) { width:33.3333%;} article:nth-child(9) { width:33.3333%;} article:nth-child(10) { width:66.6666%; display:none;} article:nth-child(11) { width:33.3333%;} article:nth-child(12) { width:33.3333%; display:none;} /* header ์ปจํ…์ธ  */ header h1 { width:200px; height:40px; background-image:url(../img/logo2.png); top:20px; left:20px; margin-left:0px;} #gnb { top:20px; right:10px;} #gnb li { float:left;} #gnb a { padding:10px 10px;} .snsSet { display:none;} } @media screen and (min-width:640px) and (max-width:779px) { /*๋ ˆ์ด์•„์›ƒ*/ header { position:relative; width:100%; height:80px;} nav { width:100%; margin-left:0%;} section { width:100%; margin-left:0px;} article:nth-child(1) { width:100%; height:400px;} article:nth-child(2) { width:100%;} article:nth-child(3) { width:33.3333%; display:none;} article:nth-child(4) { width:100%; display:none;} article:nth-child(5) { width:50%;} article:nth-child(6) { width:50%;} article:nth-child(7) { width:66.6666%; display:none;} article:nth-child(8) { width:50%;} article:nth-child(9) { width:50%;} article:nth-child(10) { width:66.6666%; display:none;} article:nth-child(11) { width:50%;} article:nth-child(12) { width:50%;} /* header ์ปจํ…์ธ  */ header h1 { width:200px; height:40px; background-image:url(../img/logo2.png); top:20px; left:20px; margin-left:0px;} #gnb { top:20px; right:10px;} #gnb li { float:left;} #gnb a { padding:10px 10px;} .snsSet { display:none;} } @media screen and (min-width:480px) and (max-width:639px) { /*๋ ˆ์ด์•„์›ƒ*/ header { position:relative; width:100%; height:130px;} nav { display:none;} section { width:100%; margin-left:0px;} article { height:150px;} article:nth-child(1) { width:100%; height:300px;} article:nth-child(2) { width:100%;} article:nth-child(3) { width:33.3333%; display:none;} article:nth-child(4) { width:100%; display:none;} article:nth-child(5) { width:50%;} article:nth-child(6) { width:50%;} article:nth-child(7) { width:66.6666%; display:none;} article:nth-child(8) { width:50%;} article:nth-child(9) { width:50%;} article:nth-child(10) { width:66.6666%; display:none;} article:nth-child(11) { width:50%;} article:nth-child(12) { width:50%;} /* header ์ปจํ…์ธ  */ header h1 { position:relative; top:20px; left:0px; width:200px; height:45px; background-image:url(../img/logo2.png); margin:0px auto;} #gnb { width:100%; height:40px; top:80px; right:0px;} #gnb li { float:left; width:25%;} #gnb a { padding:4px; text-align:center;} .snsSet { display:none;} article .bg1 span { font-size:120px; bottom:-50px;} article .txt strong { font-size:25px;} article .txt em { display:none;} } @media screen and (max-width:479px){ /*๋ ˆ์ด์•„์›ƒ*/ header { position:fixed; width:100%; height:40px; background-color:transparent; z-index:5;} nav { display:none;} section { width:100%; margin-left:0px; z-index:4;} article { display:none;} article:nth-child(1) { display:block; position:fixed; width:100%; height:100%;} /* header ์ปจํ…์ธ  */ header h1 { top:20px; width:140px; margin-left:-70px;} #gnb { width:250px; top:140px; right:50%; margin-right:-125px;} #gnb a { width:100%; background:#000; box-sizing:border-box; margin:8px 0px; border-radius:10px; opacity:0.5; color:#fff;} #gnb a:hover { opacity:1; transform:scale(1.1);} article:nth-child(1) span { display:none;} }
pofol/nicole/css/style.css
๏ปฟ@charset "utf-8"; @import url(http://fonts.googleapis.com/css?family=Poiret+One); /* reset */ * { margin:0; padding:0;} ol,ul { list-style: none; } a { outline:0; text-decoration:none; color:#555; } img { border:0;} body { font:12px/1.6 'Poiret One'; color:#555; } /*๋ ˆ์ด์•„์›ƒ*/ header { position:fixed; width:15%; height:100%; background:#fff; top:0px; left:0px; transition:all 0.5s;} nav { position:relative; width:85%; height:35px; background:#212121; margin-left:15%; transition:all 0.5s;} section { width:85%; position:relative; margin-left:15%;} article { float:left; height:260px; transition:all 0.5s; animation:scale 1s 1;} article:nth-child(1) { width:60%; height:520px; background:#ddd;} article:nth-child(2) { width:40%; background:#ccc;} article:nth-child(3) { width:20%; background:#bbb;} article:nth-child(4) { width:20%; background:#aaa;} article:nth-child(5) { width:20%; background:#999;} article:nth-child(6) { width:40%; background:#888;} article:nth-child(7) { width:20%; background:#777;} article:nth-child(8) { width:20%; background:#666;} article:nth-child(9) { width:40%; background:#555;} article:nth-child(10) { width:20%; background:#444;} article:nth-child(11) { width:20%; background:#333;} article:nth-child(12) { width:20%; background:#222;} @keyframes scale { 0% { transform:scale(0); } 100% { transform:scale(1); } } article>div { position:relative; width:100%; height:100%; overflow:hidden; cursor:pointer; } /* header ์ปจํ…์ธ  */ header h1 { width:180px; height:136px; background:url(../img/logo1.png) no-repeat 0px 0px; background-size:contain; position:absolute; top:70px; left:50%; margin-left:-90px; text-indent:-99999px;} #gnb { position:absolute; top:300px; right:57px;} #gnb a { display:block; padding:8px 30px; font-size:17px; font-weight:bold; color:#555; text-align:left; line-height:1.8; transition:all .5s;} #gnb a:hover { color:lightpink;} #gnb a i { margin-right:13px;} .snsSet { width:90px; height:47px; position:absolute; bottom:50px; right:50%; margin-right:-45px;} .snsSet a { float:left;} /*nav*/ nav a:nth-child(1) { position:absolute; top:5px; left:10px;} nav a:nth-child(2) { position:absolute; top:5px; left:150px;} nav a:nth-child(3) { position:absolute; top:5px; right:90px;} nav a:nth-child(4) { position:absolute; top:5px; right:10px;} article>div { position:relative; width:100%; height:100%; overflow:hidden; cursor:pointer; } /* ๋ฐฐ๊ฒฝ์ด๋ฏธ์ง€ ์‚ฝ์ž…*/ article .bg1 { background-image:url(../img/pic1.jpg);} article .bg2 { background-image:url(../img/pic2.jpg);} article .bg3 { background-image:url(../img/pic3.jpg);} article .bg4 { background-image:url(../img/pic4.jpg);} article .bg5 { background-image:url(../img/pic5.jpg);} article .bg6 { background-image:url(../img/pic6.jpg);} article .bg7 { background-image:url(../img/pic7.jpg);} /* ์ด๋ฏธ์ง€๋ฐ•์Šค */ article .bg { background-size:cover; background-position:center center; } article .bg span { font-size:60px; color:#fff; position:absolute; bottom:0px; right:20px; transform:scale(10); opacity:0; transition:all 0.6s;} article .bg1 span { font-size:170px; bottom:-76px; right:-6px; opacity:1; transform:scale(1); transition:all 0.5s; color: #ddd;} /*์ด๋ฏธ์ง€๋ฐ•์Šค ํ˜ธ๋ฒ„ํšจ๊ณผ*/ article:hover .bg span { opacity:1; transform:scale(1);} article .bg1:hover span { transform:rotateY(360deg); color:#222; } article:hover .bg2 span{color:#ffb6c1;background:rgba(0,0,0,.6);border: 1px solid #ffb6c1;} article:hover .bg3 span{color:#ffb6c1;background:rgba(0,0,0,.6);border: 1px solid #ffb6c1;} /* ํ…์ŠคํŠธ๋ฐ•์Šค */ article .txt { color:#666; background:#fff; box-sizing:border-box; padding:40px 30px; transition:all 1s;} article:nth-child(3) .txt { background:#ffb6c1;} article:nth-child(11) .txt { background:#ccc;} article .txt i { font-size:300px; color:#ffb6c1; opacity:0; position:absolute; bottom:-70px; right:-200px; transition:all 0.7s;} article:nth-child(3) .txt i { position:absolute; bottom:-20px; right:-15px; font-size:200px; color:#fff; opacity:0.7;} article .txt strong { font-size:30px; font-weight:normal; line-height:1.6; color:#444; margin-bottom:20px; transition:all 1s;} /*ํ…์ŠคํŠธ๋ฐ•์Šค ํ˜ธ๋ฒ„ํšจ๊ณผ*/ article:hover .txt { background:#000; color:#fff;} article:hover .txt i { right:0px; opacity:0.5;} article:hover .txt strong { color:#fff;} @media screen and (min-width:1280px) and (max-width:1599px) { /*๋ ˆ์ด์•„์›ƒ*/ header { position:relative; width:100%; height:80px;} nav { width:100%; margin-left:0%;} section { width:100%; margin-left:0px;} /* header ์ปจํ…์ธ  */ header h1 { width:200px; height:40px; background-image:url(../img/logo2.png); top:20px; left:20px; margin-left:0px;} #gnb { top:20px; right:200px;} #gnb li { float:left;} .snsSet { bottom:20px; right:80px;} } @media screen and (min-width:1024px) and (max-width:1279px) { /*๋ ˆ์ด์•„์›ƒ*/ header { position:relative; width:100%; height:80px;} nav { width:100%; margin-left:0%;} section { width:100%; margin-left:0px;} article:nth-child(1) { width:75%;} article:nth-child(2) { width:25%;} article:nth-child(3) { width:25%;} article:nth-child(4) { width:25%;} article:nth-child(5) { width:25%;} article:nth-child(6) { width:50%;} article:nth-child(7) { width:50%;} article:nth-child(8) { width:25%;} article:nth-child(9) { width:25%;} article:nth-child(10) { width:50%;} article:nth-child(11) { width:25%;} article:nth-child(12) { width:25%;} /* header ์ปจํ…์ธ  */ header h1 { width:200px; height:40px; background-image:url(../img/logo2.png); top:20px; left:20px; margin-left:0px;} #gnb { top:20px; right:30px;} #gnb li { float:left;} .snsSet { display:none;} } @media screen and (min-width:780px) and (max-width:1023px) { /*๋ ˆ์ด์•„์›ƒ*/ header { position:relative; width:100%; height:80px;} nav { width:100%; margin-left:0%;} section { width:100%; margin-left:0px;} article:nth-child(1) { width:100%; height:400px;} article:nth-child(2) { width:66.6666%;} article:nth-child(3) { width:33.3333%;} article:nth-child(4) { width:33.3333%; display:none;} article:nth-child(5) { width:33.3333%;} article:nth-child(6) { width:66.6666%;} article:nth-child(7) { width:66.6666%; display:none;} article:nth-child(8) { width:33.3333%;} article:nth-child(9) { width:33.3333%;} article:nth-child(10) { width:66.6666%; display:none;} article:nth-child(11) { width:33.3333%;} article:nth-child(12) { width:33.3333%; display:none;} /* header ์ปจํ…์ธ  */ header h1 { width:200px; height:40px; background-image:url(../img/logo2.png); top:20px; left:20px; margin-left:0px;} #gnb { top:20px; right:10px;} #gnb li { float:left;} #gnb a { padding:10px 10px;} .snsSet { display:none;} } @media screen and (min-width:640px) and (max-width:779px) { /*๋ ˆ์ด์•„์›ƒ*/ header { position:relative; width:100%; height:80px;} nav { width:100%; margin-left:0%;} section { width:100%; margin-left:0px;} article:nth-child(1) { width:100%; height:400px;} article:nth-child(2) { width:100%;} article:nth-child(3) { width:33.3333%; display:none;} article:nth-child(4) { width:100%; display:none;} article:nth-child(5) { width:50%;} article:nth-child(6) { width:50%;} article:nth-child(7) { width:66.6666%; display:none;} article:nth-child(8) { width:50%;} article:nth-child(9) { width:50%;} article:nth-child(10) { width:66.6666%; display:none;} article:nth-child(11) { width:50%;} article:nth-child(12) { width:50%;} /* header ์ปจํ…์ธ  */ header h1 { width:200px; height:40px; background-image:url(../img/logo2.png); top:20px; left:20px; margin-left:0px;} #gnb { top:20px; right:10px;} #gnb li { float:left;} #gnb a { padding:10px 10px;} .snsSet { display:none;} } @media screen and (min-width:480px) and (max-width:639px) { /*๋ ˆ์ด์•„์›ƒ*/ header { position:relative; width:100%; height:130px;} nav { display:none;} section { width:100%; margin-left:0px;} article { height:150px;} article:nth-child(1) { width:100%; height:300px;} article:nth-child(2) { width:100%;} article:nth-child(3) { width:33.3333%; display:none;} article:nth-child(4) { width:100%; display:none;} article:nth-child(5) { width:50%;} article:nth-child(6) { width:50%;} article:nth-child(7) { width:66.6666%; display:none;} article:nth-child(8) { width:50%;} article:nth-child(9) { width:50%;} article:nth-child(10) { width:66.6666%; display:none;} article:nth-child(11) { width:50%;} article:nth-child(12) { width:50%;} /* header ์ปจํ…์ธ  */ header h1 { position:relative; top:20px; left:0px; width:200px; height:45px; background-image:url(../img/logo2.png); margin:0px auto;} #gnb { width:100%; height:40px; top:80px; right:0px;} #gnb li { float:left; width:25%;} #gnb a { padding:4px; text-align:center;} .snsSet { display:none;} article .bg1 span { font-size:120px; bottom:-50px;} article .txt strong { font-size:25px;} article .txt em { display:none;} } @media screen and (max-width:479px){ /*๋ ˆ์ด์•„์›ƒ*/ header { position:fixed; width:100%; height:40px; background-color:transparent; z-index:5;} nav { display:none;} section { width:100%; margin-left:0px; z-index:4;} article { display:none;} article:nth-child(1) { display:block; position:fixed; width:100%; height:100%;} /* header ์ปจํ…์ธ  */ header h1 { top:20px; width:140px; margin-left:-70px;} #gnb { width:250px; top:140px; right:50%; margin-right:-125px;} #gnb a { width:100%; background:#000; box-sizing:border-box; margin:8px 0px; border-radius:10px; opacity:0.5; color:#fff;} #gnb a:hover { opacity:1; transform:scale(1.1);} article:nth-child(1) span { display:none;} }
0.334481
0.130535
html { font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; } body { margin: 0; } article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } audio:not([controls]) { display: none; height: 0; } [hidden], template { display: none; } a { background-color: transparent; } a:active, a:hover { outline: 0; } abbr[title] { border-bottom: 1px dotted; } b, strong { font-weight: bold; } dfn { font-style: italic; } h1 { font-size: 2em; margin: 0.67em 0; } mark { background: #ff0; color: #000; } small { font-size: 80%; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } img { border: 0; } svg:not(:root) { overflow: hidden; } figure { margin: 1em 40px; } hr { box-sizing: content-box; height: 0; } pre { overflow: auto; } code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } button, input, optgroup, select, textarea { color: inherit; font: inherit; margin: 0; } button { overflow: visible; } button, select { text-transform: none; } button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } button[disabled], html input[disabled] { cursor: default; } button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } input { line-height: normal; } input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; } input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } input[type="search"] { -webkit-appearance: textfield; box-sizing: content-box; } input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } legend { border: 0; padding: 0; } textarea { overflow: auto; } optgroup { font-weight: bold; } table { border-collapse: collapse; border-spacing: 0; } td, th { padding: 0; } /* * SCSS base styling * Prefixes are handled by gulp-autoprefixer */ * { box-sizing: border-box; } html, body { background-color: #e7e7e7; width: 300vw; height: 100%; overflow: hidden; } body { font-size: 0; } header { position: fixed; width: 100vw; height: 10%; background-color: #07020D; padding: 25px; top: 0; left: 0; z-index: 1; font-size: 1rem; color: white; } header h1 { display: inline; } nav { float: right; } button { display: inline-block; background-color: transparent; border: none; border-bottom: 2px solid #CFCCD6; padding: 10px; text-transform: uppercase; -webkit-transition: all 0.3s ease; transition: all 0.3s ease; } button:disabled { color: #333; border-bottom: 2px solid #333; cursor: default; } button:disabled:hover { color: #333; border-bottom: 2px solid #333; } button:hover { color: #DA627D; border-bottom: 2px solid #DA627D; } .shadowed { box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1); display: block; margin: 0 auto 10px; font-weight: 700; } .shadowed:hover { box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25); } .container { width: 100vw; height: 90%; position: relative; margin-top: 10vh; display: inline-block; } .wrapper { width: 100%; height: 100%; position: absolute; left: 0; right: 0; font-size: 1rem; } .text-wrap { max-width: 960px; width: 100%; position: absolute; background-color: white; padding: 10px; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); } .how-to { color: #222; } .how-to h1 { margin-left: 1rem; } .tray { background-color: rgba(0, 0, 0, 0.1); width: 50%; height: 100%; overflow: visible; position: absolute; padding: 5px; font-size: 0; } .puzzle-board { max-width: 500px; width: 500px; height: 500px; border-left: 1px solid rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.2); background-color: rgba(0, 0, 0, 0.1); z-index: 0; position: absolute; left: 75%; top: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); font-size: 0; -webkit-backface-visibility: hidden; backface-visibility: hidden; } .puzzle-slot { border-right: 1px solid rgba(0, 0, 0, 0.2); border-top: 1px solid rgba(0, 0, 0, 0.2); display: inline-block; margin: 0; } .puzzle-piece { background-color: rgba(0, 0, 0, 0.1); background-repeat: no-repeat; border: 1px rgba(0, 0, 0, 0.1); display: inline-block; z-index: 1; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transition: box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-filter 0.3s ease; transition: box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-filter 0.3s ease; transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease; transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-filter 0.3s ease; } .puzzle-piece.animate-zoom:hover { -webkit-transform: scale(1.1); transform: scale(1.1); box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25); -webkit-filter: brightness(1.2); filter: brightness(1.2); z-index: 2; cursor: pointer; } .winner .text-wrap { padding: 20px; text-align: center; }
dist/css/style.css
html { font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; } body { margin: 0; } article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } audio:not([controls]) { display: none; height: 0; } [hidden], template { display: none; } a { background-color: transparent; } a:active, a:hover { outline: 0; } abbr[title] { border-bottom: 1px dotted; } b, strong { font-weight: bold; } dfn { font-style: italic; } h1 { font-size: 2em; margin: 0.67em 0; } mark { background: #ff0; color: #000; } small { font-size: 80%; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } img { border: 0; } svg:not(:root) { overflow: hidden; } figure { margin: 1em 40px; } hr { box-sizing: content-box; height: 0; } pre { overflow: auto; } code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } button, input, optgroup, select, textarea { color: inherit; font: inherit; margin: 0; } button { overflow: visible; } button, select { text-transform: none; } button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } button[disabled], html input[disabled] { cursor: default; } button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } input { line-height: normal; } input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; } input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } input[type="search"] { -webkit-appearance: textfield; box-sizing: content-box; } input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } legend { border: 0; padding: 0; } textarea { overflow: auto; } optgroup { font-weight: bold; } table { border-collapse: collapse; border-spacing: 0; } td, th { padding: 0; } /* * SCSS base styling * Prefixes are handled by gulp-autoprefixer */ * { box-sizing: border-box; } html, body { background-color: #e7e7e7; width: 300vw; height: 100%; overflow: hidden; } body { font-size: 0; } header { position: fixed; width: 100vw; height: 10%; background-color: #07020D; padding: 25px; top: 0; left: 0; z-index: 1; font-size: 1rem; color: white; } header h1 { display: inline; } nav { float: right; } button { display: inline-block; background-color: transparent; border: none; border-bottom: 2px solid #CFCCD6; padding: 10px; text-transform: uppercase; -webkit-transition: all 0.3s ease; transition: all 0.3s ease; } button:disabled { color: #333; border-bottom: 2px solid #333; cursor: default; } button:disabled:hover { color: #333; border-bottom: 2px solid #333; } button:hover { color: #DA627D; border-bottom: 2px solid #DA627D; } .shadowed { box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1); display: block; margin: 0 auto 10px; font-weight: 700; } .shadowed:hover { box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25); } .container { width: 100vw; height: 90%; position: relative; margin-top: 10vh; display: inline-block; } .wrapper { width: 100%; height: 100%; position: absolute; left: 0; right: 0; font-size: 1rem; } .text-wrap { max-width: 960px; width: 100%; position: absolute; background-color: white; padding: 10px; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); } .how-to { color: #222; } .how-to h1 { margin-left: 1rem; } .tray { background-color: rgba(0, 0, 0, 0.1); width: 50%; height: 100%; overflow: visible; position: absolute; padding: 5px; font-size: 0; } .puzzle-board { max-width: 500px; width: 500px; height: 500px; border-left: 1px solid rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.2); background-color: rgba(0, 0, 0, 0.1); z-index: 0; position: absolute; left: 75%; top: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); font-size: 0; -webkit-backface-visibility: hidden; backface-visibility: hidden; } .puzzle-slot { border-right: 1px solid rgba(0, 0, 0, 0.2); border-top: 1px solid rgba(0, 0, 0, 0.2); display: inline-block; margin: 0; } .puzzle-piece { background-color: rgba(0, 0, 0, 0.1); background-repeat: no-repeat; border: 1px rgba(0, 0, 0, 0.1); display: inline-block; z-index: 1; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transition: box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-filter 0.3s ease; transition: box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-filter 0.3s ease; transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease; transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-filter 0.3s ease; } .puzzle-piece.animate-zoom:hover { -webkit-transform: scale(1.1); transform: scale(1.1); box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25); -webkit-filter: brightness(1.2); filter: brightness(1.2); z-index: 2; cursor: pointer; } .winner .text-wrap { padding: 20px; text-align: center; }
0.431824
0.099514
.title { font-family: 'Roboto'; font-size: 46px; width: 100%; text-align: center; margin-bottom: 10px; } .subtitle { font-family: 'Roboto'; font-size: 40px; width: 100%; text-align: center; margin-bottom: 20px; margin-top: 40px; } .editors { width: 100%; margin: 0 auto; text-align: center; margin-top: 10px; margin-bottom: 20px; } .editors a { font-family: 'Noto Sans'; font-size: 20px; color: rgb(0, 89, 255); text-decoration: none; } .editors a img { width: 18px; margin-bottom: -2px; } .program-container { background-color: hsl(0, 100%, 78%); width: 80%; margin: 0 auto; padding: 10px; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; box-shadow: 1px 1px 2px hsl(0, 90%, 62%); text-align: center; position: relative; } .program-container::before { content: ''; width: 100%; background-image: linear-gradient(hsl(0, 95%, 73%), hsl(0, 100%, 78%)); top: 0; left: 0; position: absolute; height: 5px; } .program-container-mb { width: 98%; margin: 0 auto; text-align: center; position: relative; } .category-name { font-size: 24px; font-family: 'Roboto'; margin-top: 10px; } input[type="radio"] { display: none; } .program-type { width: min(300px, 96%); height: 30px; margin: 0 auto; background-color: rgb(226, 226, 226); border-radius: 4px; /*border: 1px solid rgb(173, 173, 173);*/ text-align: center; padding: 0; font-size: 0; user-select: none; } .radio-cont { display: inline-block; height: 100%; width: calc(100% / 2); margin: 0 auto; border: none; overflow: hidden; box-sizing: border-box; font-size: 16px; position: relative; } .radio-child { top: 0; left: 0; right: 0; bottom: 0; position: absolute; border-radius: 4px; font-size: 18px; font-family: 'Noto Sans'; line-height: 30px; } .radio-child:hover { cursor: pointer; } input[type="radio"]:checked ~ .radio-child { background-color: hsl(0, 90%, 62%) !important; } input[type="text"] { width: 70%; height: 30px; font-size: 18px; display: inline-block; margin: 0 auto; margin-right: 0; border: 1px solid rgb(63, 64, 65); border-radius: 2px; padding: 1px; } textarea { min-width: 70%; max-width: 70%; min-height: 80px; height: 150px; border: 1px solid rgb(63, 64, 65); border-radius: 2px; padding: 1px; } .submit-button { width: 100px; height: 30px; border-radius: 4px; font-size: 18px; font-family: 'Noto Sans'; background-color: rgb(226, 226, 226); border: 1px solid rgb(173, 173, 173); display: inline-block; vertical-align: top; margin-top: 30px; line-height: 30px; } .submit-button:hover { cursor: pointer; background-color: rgb(200, 200, 200); transform: scale(0.98); } .cancel-button { width: 100px; height: 30px; border-radius: 4px; font-size: 18px; font-family: 'Noto Sans'; background-color: rgb(226, 226, 226); border: 1px solid rgb(173, 173, 173); display: inline-block; color: rgb(211, 16, 16); text-decoration: none; vertical-align: top; margin-top: 30px; line-height: 30px; } .cancel-button:hover { cursor: pointer; background-color: rgb(200, 200, 200); transform: scale(0.98); }
styles/admin/program/index.css
.title { font-family: 'Roboto'; font-size: 46px; width: 100%; text-align: center; margin-bottom: 10px; } .subtitle { font-family: 'Roboto'; font-size: 40px; width: 100%; text-align: center; margin-bottom: 20px; margin-top: 40px; } .editors { width: 100%; margin: 0 auto; text-align: center; margin-top: 10px; margin-bottom: 20px; } .editors a { font-family: 'Noto Sans'; font-size: 20px; color: rgb(0, 89, 255); text-decoration: none; } .editors a img { width: 18px; margin-bottom: -2px; } .program-container { background-color: hsl(0, 100%, 78%); width: 80%; margin: 0 auto; padding: 10px; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; box-shadow: 1px 1px 2px hsl(0, 90%, 62%); text-align: center; position: relative; } .program-container::before { content: ''; width: 100%; background-image: linear-gradient(hsl(0, 95%, 73%), hsl(0, 100%, 78%)); top: 0; left: 0; position: absolute; height: 5px; } .program-container-mb { width: 98%; margin: 0 auto; text-align: center; position: relative; } .category-name { font-size: 24px; font-family: 'Roboto'; margin-top: 10px; } input[type="radio"] { display: none; } .program-type { width: min(300px, 96%); height: 30px; margin: 0 auto; background-color: rgb(226, 226, 226); border-radius: 4px; /*border: 1px solid rgb(173, 173, 173);*/ text-align: center; padding: 0; font-size: 0; user-select: none; } .radio-cont { display: inline-block; height: 100%; width: calc(100% / 2); margin: 0 auto; border: none; overflow: hidden; box-sizing: border-box; font-size: 16px; position: relative; } .radio-child { top: 0; left: 0; right: 0; bottom: 0; position: absolute; border-radius: 4px; font-size: 18px; font-family: 'Noto Sans'; line-height: 30px; } .radio-child:hover { cursor: pointer; } input[type="radio"]:checked ~ .radio-child { background-color: hsl(0, 90%, 62%) !important; } input[type="text"] { width: 70%; height: 30px; font-size: 18px; display: inline-block; margin: 0 auto; margin-right: 0; border: 1px solid rgb(63, 64, 65); border-radius: 2px; padding: 1px; } textarea { min-width: 70%; max-width: 70%; min-height: 80px; height: 150px; border: 1px solid rgb(63, 64, 65); border-radius: 2px; padding: 1px; } .submit-button { width: 100px; height: 30px; border-radius: 4px; font-size: 18px; font-family: 'Noto Sans'; background-color: rgb(226, 226, 226); border: 1px solid rgb(173, 173, 173); display: inline-block; vertical-align: top; margin-top: 30px; line-height: 30px; } .submit-button:hover { cursor: pointer; background-color: rgb(200, 200, 200); transform: scale(0.98); } .cancel-button { width: 100px; height: 30px; border-radius: 4px; font-size: 18px; font-family: 'Noto Sans'; background-color: rgb(226, 226, 226); border: 1px solid rgb(173, 173, 173); display: inline-block; color: rgb(211, 16, 16); text-decoration: none; vertical-align: top; margin-top: 30px; line-height: 30px; } .cancel-button:hover { cursor: pointer; background-color: rgb(200, 200, 200); transform: scale(0.98); }
0.535341
0.10786
section{ font-family: 'Kalam', cursive; width: 100%; } section h1{ font-size: 1.7em; text-align: center; margin-bottom: 3%; } .botonAniadir{ position: absolute; top:12.5%; right: 10%; } .botonAniadir #aniadirProducto{ width: 30%; font-size: 1em; border:none; border-radius: 12px; text-decoration: none; margin-left:2px; padding: 10px; box-shadow: 3px 3px 5px #CCC; background: #00b7ea; /* Old browsers */ background: -moz-linear-gradient(top, #00b7ea 0%, #009ec3 100%); /* FF3.6-15 */ background: -webkit-linear-gradient(top, #00b7ea 0%,#009ec3 100%); /* Chrome10-25,Safari5.1-6 */ background: linear-gradient(to bottom, #00b7ea 0%,#009ec3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b7ea', endColorstr='#009ec3',GradientType=0 ); /* IE6-9 */ font-weight: bold; color: #FFF; transition: all 200ms } .botonAniadir #aniadirProducto:hover{ background: #cb60b3; /* Old browsers */ background: -moz-linear-gradient(top, #cb60b3 0%, #ad1283 50%, #de47ac 100%); /* FF3.6-15 */ background: -webkit-linear-gradient(top, #cb60b3 0%,#ad1283 50%,#de47ac 100%); /* Chrome10-25,Safari5.1-6 */ background: linear-gradient(to bottom, #cb60b3 0%,#ad1283 50%,#de47ac 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cb60b3', endColorstr='#de47ac',GradientType=0 ); /* IE6-9 */ } .overlay { position: fixed; top: 0; bottom: 0; left: 0; right: 0; background: rgba(0, 0, 0, 0.7); transition: opacity 200ms; visibility: hidden; opacity: 0; } .overlay:target{ visibility: visible; opacity: 1; } #popupBody{ width: 46%; height: 55%; padding: 2%; border-radius: 12px; box-shadow: 0 0 5px #CCC; font-family: 'Kalam', cursive; background: #FFF; position: relative; margin: 10% auto; transition: all 5s ease-in-out; overflow: scroll; } .popupContent form{ width:80%; padding:3%; margin:0 auto; } .popupContent form p{ margin:3% auto; } .popupContent form input, textarea{ width:100%; margin:0 auto; padding: 1%; } #aniadirContainer{ width: 40%; margin: 0 auto } #aniadir{ width: 100%; font-size: 1em; border:none; border-radius: 12px; padding: 10px; box-shadow: 3px 3px 5px #CCC; background: #00b7ea; /* Old browsers */ background: -moz-linear-gradient(top, #00b7ea 0%, #009ec3 100%); /* FF3.6-15 */ background: -webkit-linear-gradient(top, #00b7ea 0%,#009ec3 100%); /* Chrome10-25,Safari5.1-6 */ background: linear-gradient(to bottom, #00b7ea 0%,#009ec3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b7ea', endColorstr='#009ec3',GradientType=0 ); /* IE6-9 */ font-weight: bold; color: #FFF; transition: all 200ms } #cerrar{ position: absolute; top: 20px; right: 30px; font-size: 30px; font-weight: bold; text-decoration: none; color: #F00; transition: all 200ms; } #listaProductos{ margin:0 auto; width: 75%; } #listaProductos table{ width:100%; text-align: center; font-size: 1.1em; } #listaProductos table td,th{ border-top:thin solid #AFAFAF; padding: 2% 0; } #listaProductos table td img{ width:150px; height: 50px; } #listaProductos .precio{ width:50%; padding:3px 0px; font-family: 'Kalam', cursive; font-size: 1.0em; text-align: center; } #listaProductos table .eliminar img{ width:130px; height: 30px } #listaProductos table .eliminar:hover{ cursor:pointer; }
css/admin.css
section{ font-family: 'Kalam', cursive; width: 100%; } section h1{ font-size: 1.7em; text-align: center; margin-bottom: 3%; } .botonAniadir{ position: absolute; top:12.5%; right: 10%; } .botonAniadir #aniadirProducto{ width: 30%; font-size: 1em; border:none; border-radius: 12px; text-decoration: none; margin-left:2px; padding: 10px; box-shadow: 3px 3px 5px #CCC; background: #00b7ea; /* Old browsers */ background: -moz-linear-gradient(top, #00b7ea 0%, #009ec3 100%); /* FF3.6-15 */ background: -webkit-linear-gradient(top, #00b7ea 0%,#009ec3 100%); /* Chrome10-25,Safari5.1-6 */ background: linear-gradient(to bottom, #00b7ea 0%,#009ec3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b7ea', endColorstr='#009ec3',GradientType=0 ); /* IE6-9 */ font-weight: bold; color: #FFF; transition: all 200ms } .botonAniadir #aniadirProducto:hover{ background: #cb60b3; /* Old browsers */ background: -moz-linear-gradient(top, #cb60b3 0%, #ad1283 50%, #de47ac 100%); /* FF3.6-15 */ background: -webkit-linear-gradient(top, #cb60b3 0%,#ad1283 50%,#de47ac 100%); /* Chrome10-25,Safari5.1-6 */ background: linear-gradient(to bottom, #cb60b3 0%,#ad1283 50%,#de47ac 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cb60b3', endColorstr='#de47ac',GradientType=0 ); /* IE6-9 */ } .overlay { position: fixed; top: 0; bottom: 0; left: 0; right: 0; background: rgba(0, 0, 0, 0.7); transition: opacity 200ms; visibility: hidden; opacity: 0; } .overlay:target{ visibility: visible; opacity: 1; } #popupBody{ width: 46%; height: 55%; padding: 2%; border-radius: 12px; box-shadow: 0 0 5px #CCC; font-family: 'Kalam', cursive; background: #FFF; position: relative; margin: 10% auto; transition: all 5s ease-in-out; overflow: scroll; } .popupContent form{ width:80%; padding:3%; margin:0 auto; } .popupContent form p{ margin:3% auto; } .popupContent form input, textarea{ width:100%; margin:0 auto; padding: 1%; } #aniadirContainer{ width: 40%; margin: 0 auto } #aniadir{ width: 100%; font-size: 1em; border:none; border-radius: 12px; padding: 10px; box-shadow: 3px 3px 5px #CCC; background: #00b7ea; /* Old browsers */ background: -moz-linear-gradient(top, #00b7ea 0%, #009ec3 100%); /* FF3.6-15 */ background: -webkit-linear-gradient(top, #00b7ea 0%,#009ec3 100%); /* Chrome10-25,Safari5.1-6 */ background: linear-gradient(to bottom, #00b7ea 0%,#009ec3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b7ea', endColorstr='#009ec3',GradientType=0 ); /* IE6-9 */ font-weight: bold; color: #FFF; transition: all 200ms } #cerrar{ position: absolute; top: 20px; right: 30px; font-size: 30px; font-weight: bold; text-decoration: none; color: #F00; transition: all 200ms; } #listaProductos{ margin:0 auto; width: 75%; } #listaProductos table{ width:100%; text-align: center; font-size: 1.1em; } #listaProductos table td,th{ border-top:thin solid #AFAFAF; padding: 2% 0; } #listaProductos table td img{ width:150px; height: 50px; } #listaProductos .precio{ width:50%; padding:3px 0px; font-family: 'Kalam', cursive; font-size: 1.0em; text-align: center; } #listaProductos table .eliminar img{ width:130px; height: 30px } #listaProductos table .eliminar:hover{ cursor:pointer; }
0.273283
0.073997
@font-face { font-family: 'icomoon'; src: url('fonts/icomoon.eot?d8syes'); src: url('fonts/icomoon.eot?d8syes#iefix') format('embedded-opentype'), url('fonts/icomoon.ttf?d8syes') format('truetype'), url('fonts/icomoon.woff?d8syes') format('woff'), url('fonts/icomoon.svg?d8syes#icomoon') format('svg'); font-weight: normal; font-style: normal; } [class^="icon-"], [class*=" icon-"] { /* use !important to prevent issues with browser extensions that change fonts */ font-family: 'icomoon' !important; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .icon-keyboard_arrow_left:before { content: "\e314"; } .icon-keyboard_arrow_right:before { content: "\e315"; } .simpledateselector{ position:relative; width:180px; font-size:12px; font-family: 'arial','ๅพฎ่ฝฏ้›…้ป‘'; } .simpledateselector input{ display:block; width:140px; height:20px; line-height:20px; padding:5px; } .dateselector{ position:absolute; right:-230px; top:0; background:#fff; width:210px; min-height:220px; z-index:10; border-radius:5px; -webkit-border-radius:5px; -moz-border-radius:5px; box-shadow:1px 2px 5px rgba(0,0,0,.1); -webkit-box-shadow:1px 2px 5px rgba(0,0,0,.1); -moz-box-shadow:1px 2px 5px rgba(0,0,0,.1); } .dateselector_display{ background:rgb(242, 245, 246); height:20px; padding:10px 10px; } .display_year, .display_month{ display:inline-block; vertical-align:top; } .display_year{ width:100px; height:20px; margin-right:10px; } .display_month{ width:80px; height:20px; } .dateselector_display i{ width:20px; height:20px; background:#f9fafb; display:inline-block; vertical-align:middle; cursor:pointer; color:#c4d0d8; text-align:center; line-height:20px; font-size:16px; border-radius:5px; -webkit-border-radius:5px; -moz-border-radius:5px; } .dateselector_display i:hover{ background:#26caff; color:#fff; } .dateselector_display span{ color:#2b2f3a; height:20px; line-height:20px; vertical-align:middle; display:inline-block; text-align:center; } .display_year span{ width:60px; margin:0; } .display_month span{ width:40px; margin:0; } .dateselector_weeks li{ display:inline-block; width:30px; height:30px; background:#fff; text-align:center; line-height:30px; } .simpledateselector .weekend{ color:#fd302f;} .dateselector_date li{ cursor:pointer; width:30px; height:30px; text-align:center; line-height:30px; position:relative; display:inline-block; } .dateselector_date li b{ position:absolute; background:#edf1f3; } .dateselector_date li .dateselector_date_r{ top:0; right:0; height:30px; width:1px; } .dateselector_date li .dateselector_date_t{ left:0; top:0; width:30px; height:1px; } .dateselector_date li.gray, .dateselector_date li.gray:hover{ color:#d5d5d8; cursor:default; background:#fff; } .dateselector_date li:hover, body .dateselector_date li.cur{ background:#42d5c2; color:#fff; }
public/admin/default(zh)/img/simple-dateselector.css
@font-face { font-family: 'icomoon'; src: url('fonts/icomoon.eot?d8syes'); src: url('fonts/icomoon.eot?d8syes#iefix') format('embedded-opentype'), url('fonts/icomoon.ttf?d8syes') format('truetype'), url('fonts/icomoon.woff?d8syes') format('woff'), url('fonts/icomoon.svg?d8syes#icomoon') format('svg'); font-weight: normal; font-style: normal; } [class^="icon-"], [class*=" icon-"] { /* use !important to prevent issues with browser extensions that change fonts */ font-family: 'icomoon' !important; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .icon-keyboard_arrow_left:before { content: "\e314"; } .icon-keyboard_arrow_right:before { content: "\e315"; } .simpledateselector{ position:relative; width:180px; font-size:12px; font-family: 'arial','ๅพฎ่ฝฏ้›…้ป‘'; } .simpledateselector input{ display:block; width:140px; height:20px; line-height:20px; padding:5px; } .dateselector{ position:absolute; right:-230px; top:0; background:#fff; width:210px; min-height:220px; z-index:10; border-radius:5px; -webkit-border-radius:5px; -moz-border-radius:5px; box-shadow:1px 2px 5px rgba(0,0,0,.1); -webkit-box-shadow:1px 2px 5px rgba(0,0,0,.1); -moz-box-shadow:1px 2px 5px rgba(0,0,0,.1); } .dateselector_display{ background:rgb(242, 245, 246); height:20px; padding:10px 10px; } .display_year, .display_month{ display:inline-block; vertical-align:top; } .display_year{ width:100px; height:20px; margin-right:10px; } .display_month{ width:80px; height:20px; } .dateselector_display i{ width:20px; height:20px; background:#f9fafb; display:inline-block; vertical-align:middle; cursor:pointer; color:#c4d0d8; text-align:center; line-height:20px; font-size:16px; border-radius:5px; -webkit-border-radius:5px; -moz-border-radius:5px; } .dateselector_display i:hover{ background:#26caff; color:#fff; } .dateselector_display span{ color:#2b2f3a; height:20px; line-height:20px; vertical-align:middle; display:inline-block; text-align:center; } .display_year span{ width:60px; margin:0; } .display_month span{ width:40px; margin:0; } .dateselector_weeks li{ display:inline-block; width:30px; height:30px; background:#fff; text-align:center; line-height:30px; } .simpledateselector .weekend{ color:#fd302f;} .dateselector_date li{ cursor:pointer; width:30px; height:30px; text-align:center; line-height:30px; position:relative; display:inline-block; } .dateselector_date li b{ position:absolute; background:#edf1f3; } .dateselector_date li .dateselector_date_r{ top:0; right:0; height:30px; width:1px; } .dateselector_date li .dateselector_date_t{ left:0; top:0; width:30px; height:1px; } .dateselector_date li.gray, .dateselector_date li.gray:hover{ color:#d5d5d8; cursor:default; background:#fff; } .dateselector_date li:hover, body .dateselector_date li.cur{ background:#42d5c2; color:#fff; }
0.293
0.082143