/*
* HTML5 ? Boilerplate
*
* What follows is the result of much research on cross-browser styling.
* Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
* Kroc Camen, and the H5BP dev community and team.
*
* Detailed information about this CSS: h5bp.com/css
*
* ==|== normalize ==========================================================
*/
/* =============================================================================
HTML5 display definitions
========================================================================== */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
audio:not([controls]) { display: none; }
[hidden] { display: none; }
/* =============================================================================
Base
========================================================================== */
html { font-size: 100%; overflow-y: scroll; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
body { margin: 0; font-size: 13px; line-height: 1.231; }
body, button, input, select, textarea { font-family: 'Crete Round', sans-serif; }
::-moz-selection { background: @red; color: #fff; text-shadow: none; }
::selection { background: @red; color: #fff; text-shadow: none; }
/* =============================================================================
Links
========================================================================== */
a { /* color: #00e;*/ color:grey; }
a:visited { color: grey; }
a:hover { color: @red; }
a:focus { outline: thin dotted; }
a:hover, a:active { outline: 0; }
/* =============================================================================
Typography
========================================================================== */
abbr[title] { border-bottom: 1px dotted; }
b, strong { font-weight: bold; }
blockquote { margin: 1em 40px; font-style:italic;}
dfn { font-style: italic; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
ins { background: #ff9; color: #000; text-decoration: none; }
mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }
pre, code, kbd, samp { font-family: monospace, monospace; _font-family: 'courier new', monospace; font-size: 1em; }
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
q { quotes: none; }
q:before, q:after { content: ""; content: none; }
small { font-size: 85%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }
h1 { font-size: 25px;}
h2 { font-size: 23px;}
h3 { font-size: 21px;}
h4 { font-size: 19px;}
h5 { font-size: 17px;}
h6 { font-size: 15px;}
h1,h2,h3,h4,h5,h6 { margin:0; padding:0; font-weight:bold; }
/* =============================================================================
Lists
========================================================================== */
ul, ol { margin: 1em 0; padding: 0 0 0 40px; }
dd { margin: 0 0 0 40px; }
nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }
/* lists in content */
.entry-content ul li {margin: 10px 0; }
.entry-content ol li {margin: 10px 0; }
/* =============================================================================
Embedded content
========================================================================== */
img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }
svg:not(:root) { overflow: hidden; }
/* =============================================================================
Figures
========================================================================== */
figure { margin: 0; }
/* =============================================================================
Forms
========================================================================== */
form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }
label { cursor: pointer; }
legend { border: 0; *margin-left: -7px; padding: 0; }
button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
button, input { line-height: normal; *overflow: visible; }
table button, table input { *overflow: auto; }
button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; }
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; }
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
textarea { overflow: auto; vertical-align: top; resize: vertical; }
input:valid, textarea:valid { }
input:invalid, textarea:invalid { background-color: #f0dddd; }
/* =============================================================================
Tables
========================================================================== */
table { border-collapse: collapse; border-spacing: 0; }
td { vertical-align: top; }
/* ==|== primary styles =====================================================
Author: Ready Artwork
========================================================================== */
/////////////////
// Semantic.gs // for LESS: http://lesscss.org/
/////////////////
// Defaults which you can freely override
@column-width: 30;
@gutter-width: 10;
@columns: 24;
// Utility variable ? you should never need to modify this
@_gridsystem-width: (@column-width*@columns) + (@gutter-width*@columns) * 1px;
// Set @total-width to 100% for a fluid layout
@total-width: @_gridsystem-width;
//////////
// GRID //
//////////
body {
width: 100%;
.clearfix;
}
.row(@columns:@columns) {
display: inline-block;
width: @total-width*((@gutter-width + @_gridsystem-width)/@_gridsystem-width);
margin: 0 @total-width*(((@gutter-width*.5)/@_gridsystem-width)*-1);
.clearfix;
}
.column(@x,@columns:@columns) {
display: inline;
float: left;
width: @total-width*((((@gutter-width+@column-width)*@x)-@gutter-width) / @_gridsystem-width);
margin: 0 @total-width*((@gutter-width*.5)/@_gridsystem-width);
}
.offset(@offset:1) {
margin-left: (@gutter-width+@column-width)*@offset + @total-width*((@gutter-width*.5)/@_gridsystem-width);
}
.roffset(@offset:1) {
margin-right: (@gutter-width+@column-width)*@offset + @total-width*((@gutter-width*.5)/@_gridsystem-width);
}
// The micro clearfix http://nicolasgallagher.com/micro-clearfix-hack/
.clearfix() {
*zoom:1;
&:before,
&:after {
content:"";
display:table;
}
&:after {
clear:both;
}
}
//////////
// GRID //
//////////
// Specify the number of columns and set column and gutter widths
@column-width: 30;
@gutter-width: 10;
@columns: 24;
// Remove the definition below for a pixel-based layout
@total-width: 960px;
////////////
// LAYOUT //
////////////
////
/// Ready Artwork 2011 Winter Theme
//////
p,a{font-family: 'Helvetica', sans-serif; font-size:14px; color:#666; /*line-height:22px; */ line-height:1.5em;}
a:hover{color:#999}
//misc
.left {float:left; }
.right { float:right;}
.bs(@a:5px,@b:5px,@c:5px,@d:5px,@e:#000){
-webkit-box-shadow: @a @b @c @d @e;
-moz-box-shadow: @a @b @c @d @e;
box-shadow: @a @b @c @d @e;
}
.form-gradient-submit {
background: rgb(216,224,222);
background: -moz-linear-gradient(top, rgb(216,224,222) 0%, rgb(174,191,188) 0%, rgb(153,175,171) 50%, rgb(102,102,102) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(216,224,222)), color-stop(0%,rgb(174,191,188)), color-stop(50%,rgb(153,175,171)), color-stop(100%,rgb(102,102,102)));
background: -webkit-linear-gradient(top, rgb(216,224,222) 0%,rgb(174,191,188) 0%,rgb(153,175,171) 50%,rgb(102,102,102) 100%);
background: -o-linear-gradient(top, rgb(216,224,222) 0%,rgb(174,191,188) 0%,rgb(153,175,171) 50%,rgb(102,102,102) 100%);
background: -ms-linear-gradient(top, rgb(216,224,222) 0%,rgb(174,191,188) 0%,rgb(153,175,171) 50%,rgb(102,102,102) 100%);
background: linear-gradient(top, rgb(216,224,222) 0%,rgb(174,191,188) 0%,rgb(153,175,171) 50%,rgb(102,102,102) 100%);
}
.form-gradient {
background: rgba(204,0,0,1);
background: -moz-linear-gradient(top, rgba(204,0,0,1) 22%, rgba(204,0,0,1) 50%, rgba(204,0,0,1) 70%, rgba(162,58,58,1) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(22%,rgba(204,0,0,1)), color-stop(50%,rgba(204,0,0,1)), color-stop(70%,rgba(204,0,0,1)), color-stop(100%,rgba(162,58,58,1)));
background: -webkit-linear-gradient(top, rgba(204,0,0,1) 22%,rgba(204,0,0,1) 50%,rgba(204,0,0,1) 70%,rgba(162,58,58,1) 100%);
background: -o-linear-gradient(top, rgba(204,0,0,1) 22%,rgba(204,0,0,1) 50%,rgba(204,0,0,1) 70%,rgba(162,58,58,1) 100%);
background: -ms-linear-gradient(top, rgba(204,0,0,1) 22%,rgba(204,0,0,1) 50%,rgba(204,0,0,1) 70%,rgba(162,58,58,1) 100%);
background: linear-gradient(top, rgba(204,0,0,1) 22%,rgba(204,0,0,1) 50%,rgba(204,0,0,1) 70%,rgba(162,58,58,1) 100%);
}
.form-gradient-clear {
background: rgba(204,0,0,0.95);
background: -moz-linear-gradient(top, rgba(204,0,0,0.95) 22%, rgba(204,0,0,0.95) 50%, rgba(204,0,0,0.95) 70%, rgba(162,58,58,0.95) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(22%,rgba(204,0,0,0.95)), color-stop(50%,rgba(204,0,0,0.95)), color-stop(70%,rgba(204,0,0,0.95)), color-stop(100%,rgba(162,58,58,0.95)));
background: -webkit-linear-gradient(top, rgba(204,0,0,0.95) 22%,rgba(204,0,0,0.95) 50%,rgba(204,0,0,0.95) 70%,rgba(162,58,58,0.95) 100%);
background: -o-linear-gradient(top, rgba(204,0,0,0.95) 22%,rgba(204,0,0,0.95) 50%,rgba(204,0,0,0.95) 70%,rgba(162,58,58,0.95) 100%);
background: -ms-linear-gradient(top, rgba(204,0,0,0.95) 22%,rgba(204,0,0,0.95) 50%,rgba(204,0,0,0.95) 70%,rgba(162,58,58,0.95) 100%);
background: linear-gradient(top, rgba(204,0,0,0.95) 22%,rgba(204,0,0,0.95) 50%,rgba(204,0,0,0.95) 70%,rgba(162,58,58,0.95) 100%);
}
.rounded-corners (@radius: 5px) {
-webkit-border-radius: @radius;
-moz-border-radius: @radius;
border-radius: @radius;
}
.clear{ clear:both;}
.overflow{ overflow:hidden; }
@red:#ff0000;
.mt (@a:10px){ margin-top:@a; }
.mb(@a:10px) { margin-bottom:@a;}
.center{ margin:0 auto; }
.skip-link{.hidden;}
#mc_signup_submit
{
float:right!important;
}
.mailchimpz
{
margin:5px 0px !important;
background:transparent !important;
}
#mailchimp-widget
{
padding:15px;
margin-bottom:10px;
background:url(./images/news_signup.png) repeat-x;
height: 170px;
.widget-title
{
color: white;
font-size: 24px;
font-weight: normal;
margin-bottom: 10px;
}
.mc_custom_border_hdr
{
color:white;
font-size:24px;
font-weight:normal;
margin-bottom:10px;
}
td
{
font-family: 'Helvetica',sans-serif !important;
color:white;
font-size:14px;
}
input
{
margin-bottom:10px;
border:none;
height:16px;
float:right;
width:90px;
font-family: 'Helvetica',sans-serif !important;
color:#666;
border:none;
padding:4px;
}
#mc-indicates-required
{
display:none;
}
label
{
font-size: 14px;
width:50%;
color: #fff;
height:34px;
float:left;
}
.button
{
// background:url(./images/submit.png) no-repeat !important; .rounded-corners(20px); background:black!important; font-size:12px; color:white;
width:66px;
height:28px;
float:left;
margin: 0px;
box-shadow: none;
// text-indent:-9999999px;
}
#ns_widget_mailchimp-email-2
{
width:100%;
font-family: 'Helvetica',sans-serif !important;
color:#666;
font-size:14px;
border:none;
}
}
.wrapper { width:@total-width; .center; overflow:hidden; }
.sidebar-blog
{
ul
{
padding: 0 0 0 20px;
list-style:none;
li
{
background:url(./images/round_bolt.jpg)0% 20% no-repeat;
margin-bottom:5px;
padding-left:20px;
}
}
.widget-title
{
color:#ff0000;
font-weight:normal;
}
background-color:white;
aside { padding: 10px; }
}
#sidebar {
.column(6);
}
#mailchimp-widget .button {
//background:url(./images/submit.png) no-repeat !important;
.rounded-corners(20px);
background:black !important; color:white;font-size:12px;
width:66px;
height:28px;
float:left;
margin: 0px;
box-shadow: none;
//text-indent:-9999999px;
}
#sidebar-page
{
.column(6);
.twtr-doc
{
width:100% !important;
margin-bottom:10px !important;
}
.contact-side
{
background:url(./images/callbubble.png);
height:230px;
width:230px;
margin:10px 0;
.bubblehead
{
font-size:12px;
color:white;
}
.bubblenumber
{
font-size:24px; color:#ff0000;
padding-top:6px;
}
.bubblewrite
{
padding-top:50px;
a{
font-size:12px;
color:white;
font-style:italic;
}
}
.bubblecontent
{
margin:0 20px;
padding-top:70px;
text-align:center;
}
}
.fb-like-box
{
background-color:white;
}
#mailchimpsf_widget-3,#mailchimpsf_widget-4
{
padding:15px;
margin-bottom:10px;
background:url(./images/news_signup.png) repeat-x;
height: 170px;
h3
{
color:white;
font-size:24px;
font-weight:normal;
margin-bottom:10px;
}
td
{
font-family: 'Helvetica',sans-serif !important;
color:white;
font-size:14px;
}
input
{
margin-bottom:10px;
border:none;
height:16px;
float:right;
width:90px;
font-family: 'Helvetica',sans-serif !important;
color:#666;
border:none;
padding:4px;
}
#mc-indicates-required
{
display:none;
}
label
{
font-size: 14px;
color: #fff;
height:34px;
float:left;
}
.button
{
//background:url(./images/submit.png) no-repeat !important;
.rounded-corners(20px);
background:black !important; color:white;font-size:12px;
width:66px;
height:28px;
float:left;
margin: 0px;
box-shadow: none;
//text-indent:-9999999px;
}
#ns_widget_mailchimp-email-2
{
width:100%;
font-family: 'Helvetica',sans-serif !important;
color:#666;
font-size:14px;
border:none;
}
}
#recent-posts-4, #recent-posts-8
{
background-color:white;
padding:15px;
margin-bottom:10px;
h3
{
color:#ff0000;
font-size:24px;
font-weight:normal;
margin-bottom:10px;
}
ul
{
li
{
margin-bottom:5px;
a
{
font-family: 'Helvetica',sans-serif !important;
color:#666;
font-size:14px;
text-decoration:none;
}
a:hover
{
color:#999;
}
}
}
}
}
#sidebar-home
{
.column(8);
float:right;
.contact-form-b
{
height:250px;
margin-bottom: 10px;
#FSContact5
{
width:100% !important;
}
float:left;
width:100%;
.required
{
display:none;
}
.form-wrapper
{
margin:15px;
}
background:url(./images/requestquote_redbkd.png) repeat-x;
float:left; width:100%;
input{ width:44%; margin-right:5px; float:left; border:none; padding:1px 5px; margin-bottom:1px; height: 25px; color: #999!important;}
label
{
width:87%;
float:left;
color:white;
}
span
{
width:50%; float:left;
}
h3
{
color: white;
font-size: 24px;
font-weight: normal;
margin-bottom: 10px;
}
#fsc-submit-5 {
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
background: black !important;
color: white !important;
font-size: 12px;
width: 66px;
height: 28px;
float: right;
margin: 0px;
box-shadow: none;
}
}
.fb-like-box
{
background-color:white;
}
#mailchimpsf_widget-2
{
float:left;
padding:15px;
margin-bottom:10px;
background:url(./images/news_signup_home.png) repeat-x;
height:157px;
width:280px;
h3
{
color:white;
font-size:24px;
font-weight:normal;
margin-bottom:10px;
}
td
{
font-family: 'Helvetica',sans-serif !important;
color:white;
font-size:14px;
}
label
{
font-size: 14px;
color: #fff;
height:34px;
width: 35%;
float:left;
}
input
{
margin-bottom:10px;
border:none;
height:16px;
float:right;
width:165px;
font-family: 'Helvetica',sans-serif !important;
color:#666;
border:none;
padding:4px;
}
#mc-indicates-required
{
display:none;
}
.button
{
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
background: black !important;
color: white;
font-size: 12px;
width: 66px;
height: 28px;
float: left;
margin: 0px;
box-shadow: none;
}
#ns_widget_mailchimp-email-2
{
font-family: 'Helvetica',sans-serif !important;
color:#666;
border:none;
}
}
#recent-posts-3, #recent-posts-7
{
width: 280px;
background-color:white;
padding:15px;
margin-bottom:10px;
float:left;
h3
{
color:#ff0000;
font-size:24px;
font-weight:normal;
margin-bottom:10px;
}
ul
{
padding:0px;
list-style:none;
margin-left:20px;
li
{
background:url(./images/round_bolt.jpg)0% 10% no-repeat;
margin-bottom:5px;
padding-left:20px;
a
{
font-family: 'Helvetica',sans-serif !important;
color:#666;
font-size:14px;
text-decoration:none;
}
a:hover
{
color:#999;
}
}
}
}
}
///
///
.mc_merge_var
{
width:100%;
float:left;
}
.widget_mailchimpsf_widget
{
label
{
cursor:auto;
}
}
body
{
background:url(./images/bkgd.jpg);
}
///
//Header
///
.shadow {
-moz-box-shadow: 3px 3px 5px 6px #000;
-webkit-box-shadow: 3px 3px 5px 6px #000;
box-shadow: 3px 3px 5px 6px #000;
}
#branding {
.wrapper { background:url(./images/navbkgd.png) no-repeat 5px 0; height:60px;
}
min-height:60px;
width:100%; min-width:1024px;
display:block;
#top-contact-info {
.column(8); .offset(12);height:50px;
color: rgb(229, 71, 54);
text-align:right;
font-size:1.1em;
img { margin-top:3px; vertical-align:top; }
address{ display:inline; }
}
.only-search{float:right; width:190px; input { border:none; margin-top:10px; padding:5px; } }
#site-title {height:60px; .column(6); a{ display:block;} float:left; img{padding-left:15px; padding-top:10px;}}
}
//breadcrumbs
#crumbs {
margin: 0;
padding-top: 10px;
color:white;
background:url(./images/content_div.png) repeat-x;
.column(24);
font-family: 'Crete Round', sans-serif!important;
a
{
color:white;
text-decoration:none;
text-transform:lowercase;
font-family: 'Crete Round', sans-serif!important;
}
.current { color:white; text-transform:lowercase; font-family: 'Crete Round', sans-serif!important;}
}
.single-title,.entry-title a
{
color:#ff0000 !important;
font-weight:normal;
font-size:24px;
margin-bottom:10px;
text-transform:capitalize;
font-family: 'Crete Round', sans-serif!important;
}
/* =Menu from twenty ten
-------------------------------------------------------------- */
a{outline:none;}
.hiddenNav
{
background:url(./images/subnav.jpg) repeat-x;
.column(24);
min-height:54px;
.sub-menu
{
height:auto;
padding:0px;
margin:0px;
float:right;
list-style:none;
li:last-child
{
background:none;
}
li
{
float:left;
padding:0 30px;
height:54px;
text-align:center;
margin:0px;
.overflow;
background: url(./images/nav_div.png) 100% 100% no-repeat;
z-index:100000000;
a
{
color:white;
font-size:18px;
text-decoration:none;
width:100%;
text-align:center;
float:left;
padding-top:15px;
font-family: 'Crete Round', sans-serif!important;
}
a:hover
{
color:#ff0000;
}
}
.sub-menu
{
display:none;
background:black;
border:none;
display: none;
float: left;
margin: 0;
position: absolute;
width: 150px;
z-index: 99999;
top:124px;
}
}
}
#access {
.column(18);
height:60px;
}
#access ul {
font-size: 15px;
list-style: none;
}
#access li {
float: left;
position: relative;
}
#access .nav-triangle
{
background:url(./images/nav_indicator.png) no-repeat 50% 90%;
}
#access a {
color: #666;
display: block;
line-height: 3.333em;
padding: 0 30px;
text-decoration: none;
font-family: 'Crete Round', sans-serif;
text-transform:capitalize;
height:70px;
font-size:18px !important;
}
#access ul ul {
display: none;
float: left;
margin: 0;
position: absolute;
height:0px;
width: 188px;
z-index: 99999;
}
#access ul ul ul {
left: 100%;
top: 0;
}
#access ul ul a {
border-right: 1px dotted #ddd;
color: #444;
font-size: 13px;
font-weight: bold;
height: auto;
line-height: 1.4em;
padding: 10px 10px;
width: 168px;
}
#access li:hover > a,
#access ul ul :hover > a,
#access a:focus {
}
#access li:hover > a,
#access a:focus {
color: @red;
}
.hiddenNav ul li:hover > ul {
display:block;
}
#access .current_page_item > a,
#access .current_page_ancestor > a {
color: @red;
}
/* Search Form */
#branding #searchform {
}
#branding #searchform div {
margin: 0;
}
#branding #s {
float: right;
-webkit-transition-duration: 400ms;
-webkit-transition-property: width, background;
-webkit-transition-timing-function: ease;
-moz-transition-duration: 400ms;
-moz-transition-property: width, background;
-moz-transition-timing-function: ease;
-o-transition-duration: 400ms;
-o-transition-property: width, background;
-o-transition-timing-function: ease;
}
#branding #s:focus {
background-color: #fff;
}
#branding #searchsubmit {
display: none;
}
#branding .only-search #searchform {
top: 5px;
z-index: 1;
}
#branding .only-search #s {
color: #222;
}
#branding .only-search #s,
#branding .only-search #s:focus {
width: 90%;
margin-top:10px;
}
#branding .only-search #s:focus {
}
////
//Main
////
#main { .center; width:100%; min-width:1024px; }
#primary{ .column(24);min-height:442px; }
#secondary{ .column(1); }
#primary-404
{
.column(24);
background:url(./images/404-bkgd.png) no-repeat;
height:495px;
margin-top:20px;
.content-404
{
width: 390px;
margin: 65px 0 0 45px;
h1
{
color:white;
font-size:150px;
text-align:center;
font-weight: normal;
}
h2
{
font-weight: normal;
text-align:center;
color:white;
margin-top:20px;
}
}
}
#primary-page
{
float:left;
//.column(24);
min-height:442px;
margin:10px 0 10px;
.page-wrapper
{
background:white;
.column(18);
.overflow;
}
}
#primary #content {
padding:15px;
margin:10px 0;
.entry-header{ margin-top:10px;}
.entry-title { text-transform:lowercase; a {text-decoration:none; color:black;} }
}
#primary-page #content {
background:white;
padding:15px;
min-height:442px;
.entry-header{ margin-top:10px;}
.entry-title { text-transform:lowercase; a {text-decoration:none; color:black;} }
}
.entry-content
{
img
{
padding:10px;
}
}
////
//Websites grahpics and everything
///
.portfolio, .websites, .marketing {float:left;}
#websites-list-left {
.column(5);
ul { padding-left:15px; list-style:none; a{text-decoration:none; text-transform:uppercase; font-size:1em; margin-bottom:5px; } }
overflow:auto; max-height:700px;
}
#website-content {
ul{ padding:0; list-style:none;float:left; li { margin:3px; float:left; } }
.entry-title { float:left ; width:75%; }
.content { }
hgroup { .column(14); .mb; }
#link { height:30px; width:120px; line-height:30px; font-weight:bold; .form-gradient; float:right; text-align:center; a{color:white; text-decoration:none; letter-spacing:2px; background: url(./images/clck.png) no-repeat right; padding-right:20px; } }
.website-image
{
width: 670px;
margin: 0 auto;
margin-bottom:10px;
.image
{
text-align:center;
}
}
}
#websites-nav {
.column(14);
.offset(5); ul li { float:left; height:20px;line-height:20px; padding:5px; margin-left:20px;margin-top:20px; a{text-decoration:none} }
.mb(20px);
}
#websites-list-top {
.column(18);
ul { padding:0; margin:0; list-style:none; li { padding:5px 10px; float:left;
&.active{.form-gradient; a{color:white} } a{ text-decoration:none;} margin-right:10px;
}}
margin:15px 0 0 0;
}
#menu-websites-nav li{
&.active,&.current-websites-ancestor, &.current-menu-item, &.current-portfolio-ancestor,&.current-marketing-ancestor{.form-gradient; a{color:white} } a{ text-decoration:none;} margin-right:10px;
}
///
//Sidebar
///
#secondary {
.quote {
margin-left: -37px;
margin-top: 52px;
-moz-transform: scale(1) rotate(-90deg) translate(0px, 0px) skew(0deg, 0deg);
-webkit-transform: scale(1) rotate(-90deg) translate(0px, 0px) skew(0deg, 0deg);
-o-transform: scale(1) rotate(-90deg) translate(0px, 0px) skew(0deg, 0deg);
-ms-transform: scale(1) rotate(-90deg) translate(0px, 0px) skew(0deg, 0deg);
transform: scale(1) rotate(-90deg) translate(0px, 0px) skew(0deg, 0deg);
}
margin:0px;
.contact-title { width:10px;
cursor:pointer;
height: 31px;
width: 113px;
color: white;
font-size: 18px;
text-decoration:none;
font-weight:normal!important;
.click{ height:25px; clear:both; font-size:1.85em; letter-spacing:1px; text-transform:uppercase; font-weight:bold;}
.request { clear:both; font-size:1.6em; letter-spacing:1px; height:20px; }
strong { font-size:2em; letter-spacing:6px; }
}
}
.leave-reply
{
display:none;
}
#quote-link
{
text-decoration:none;
font-family: 'Crete Round', sans-serif !important;
}
.side-show {
position:fixed !important;
top:30%;
.side-show-form {
form { margin:0 auto; color:white; width:130px; .overflow;}
background:url(./images/getquote_btn.png) no-repeat;
height:148px;
width:40px;
padding: 5px 0;
input { width:130px;border:1px white; margin:0 auto; color:#999;}
input[type='text']{ height:25px; margin-bottom:10px !important; }
input[type='submit']{ color:black; height:25px; line-height:25px; }
}
#FSContact2 {
display:none;
#contact-close {
position:absolute;top:5px; right:5px; color:white; font-weight:bold;
}
form { margin:0 auto; color:white; width:300px; .overflow; padding:10px;}
label { font-weight:normal; }
padding-top:20px;
padding-bottom:10px;
position:absolute; left:38px; top:-170px;
z-index:99999;
background-color:#cc0000;
width:300px;
input[type="checkbox"] {
width: 14px !important;
}
input { height: 25px;
margin-bottom: 10px !important;
padding: 1px 5px;
width: 95% !important;width:100%;border:1px white; margin:0 auto; color:#999!important;}
input[type='text']{ height:25px; margin-bottom:10px !important; padding:1px 5px; width:95% !important; }
input[type='submit']{ float:right; margin-top:20px !important; -webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
background: black !important;
color: white !important;
font-size: 12px !important;
padding:0px 0px 0px 0px!important;
width: 66px;
height: 28px;
font-family: 'Helvetica',sans-serif;
margin: 0px;
box-shadow: none;
margin: 0px;
box-shadow: none;}
input[type='textarea']{padding:1px 5px !important; width:95% !important; }
}
.callus{
.mt;
.mb(15px);
.bs(-5px,5px,5px,0,#ccc);
border:1px solid #ccc;
}
}
////
//social footer
///
#social-footer {
position:relative;
.column(20); float:right; margin-top:20px;
.container {
float:left;
border:1px solid grey;
.bs(0px,1px,1px,1px,grey);
padding-top:10px;
padding-bottom:10px;
background:#ccc;
}
.fb-area { .column(1);width:125px; margin-left:20px;
span {font-size:1.5em;font-weight:normal; }
}
.section-title{
.column(3);
font-size:1.2em; color:grey;
}
.recent-posts {
.column(12); .roffset(1); background:white;
article{padding:10px; p{padding:0;margin:0;}}
}
}
.social-footer2{.column(20);
padding-top:15px;
.social-title { font-size:2.4em; letter-spacing:2px;}
}
///
// Footer
///
.pika-thumbs li .clip img
{
width:100% !important;
}
.up-bar
{
position:fixed;
right:0;
bottom:30%;
}
.entry-meta {
margin-bottom:20px;
}
#colophon {
ul { list-style:none; padding:0; margin-top:5px; li { margin-bottom:5px; padding:0;} a{ text-decoration:none; } }
.wrapper
{width:950px;
background:url(./images/footer_bkgd.png) repeat-x;
}
width:100%;min-width:1024px;
padding:20px 0 ;
.logo-bottom{ width:100%; float:left; font-size:12px; color:white; padding-top:10px;
a{
color:white;
text-decoration:none;
font-size:12px;
}
}
.menu-block-1,.menu-block-2,.menu-block-3,.menu-block-4,.menu-block-5, .menu-block-6 { .column(4); padding-top:5px;
font-size:11px; a{font-family: 'Crete Round', sans-serif; text-transform:capitalize; color:#ff0000; font-size:16px;} .sub-menu{ a { text-transform:lowercase;font-family: 'Helvetica',sans-serif; color:white; font-size:14px;} margin-bottom:5px; }
}
.menu-block-1 { .column(3); .offset(1); margin-left:40px; }
.menu-block-6 { margin-right:0;}
}
////
//slidorion
///
/* Slidorion Stylesheet */
#slidorion {
margin-top:10px;
/*width: 950px; */ /* Set to slidorion width. Is equal to #slider + #accordion width */
height: 400px; /* Set to slidorion height. Is equal to #slider and #accordion height */
position: relative;
padding: 10px ;
background: #fff;
border: 1px solid #bbb;
}
#slider {
width: 585px; /* Set to slider width */
height: 400px; /* Set to slider height */
position: relative;
float: left;
overflow: hidden; /* Hides the animations */
}
#slider > div {
position:absolute;
width:100%;
height:100%;
background:#000;
}
#accordion {
width: 342px; /* Set to accordion width */
height: 400px; /* Set to image height */
background: #eee;
/* -webkit-box-shadow: -3px 0px 3px -1px rgba(51,51,51,0.3);
-moz-box-shadow: -3px 0px 3px -1px rgba(51,51,51,0.3);
box-shadow: -3px 0px 3px -1px rgba(51,51,51,0.3);*/
position: relative;
z-index:999;
/* overflow: hidden;*/
float: left;
}
#accordion > .link-header {
.overflow;
height:35px;
line-height:35px;
padding-left:40px;
/* padding: 8px 14px; */
font-size: 18px;
font-weight: bold;
color: white;
background: url(./images/slider_bolt.png) no-repeat 12px 4px,url(./images/home_slider_blk.png) no-repeat;
border-top: 1px solid #ccc;
}
#accordion > .link-header:first-child {
border-top:none !important;
}
#accordion > .link-header:hover {
cursor: pointer;
}
#accordion > .link-header.active {
border-bottom: none;
border-top: transparent 1px solid;
/* background: #676767 !important; */
background: url(./images/slider_bolt.png) no-repeat 32px 4px,url(./images/home_slider_red.png) no-repeat top left;
margin-left:-20px;
padding-left:60px;
color: #fff;
}
#accordion > .link-content {
height: 225px; /* This height needs to be changed as it depends on the accordion height and number of tabs */
font-weight: normal;
font-size: 13px;
line-height:20px;
margin: 0;
padding: 16px;
border: none;
background: #d6d6d6;
background: -moz-linear-gradient(top, #d6d6d6 0%, #ffffff 10%);
background: -webkit-linear-gradient(top, #d6d6d6 0%,#ffffff 10%);
background: -o-linear-gradient(top, #d6d6d6 0%,#ffffff 10%);
background: -ms-linear-gradient(top, #d6d6d6 0%,#ffffff 10%);
background: linear-gradient(top, #d6d6d6 0%,#ffffff 10%);
overflow:auto;
}
///
///Easy Slider
///
#slider-container {
.column(14);
margin-bottom:20px ; position:relative; }
#slider-social{
width:790px; float:left;
ul{ float:left; padding:0;}
ul li {
float:left;
width:790px;
height:80px;
margin:0;
padding:0;
list-style:none;
}
}
#slider ul, #slider li,
#slider2 ul, #slider2 li{
margin:0;
padding:0;
list-style:none;
}
#slider2{margin-top:1em;}
#slider li, #slider2 li{
/*
define width and height of list item (slide)
entire slider area will adjust according to the parameters provided here
*/
width:500px;
height:350px;
margin:0 !important;
overflow:hidden;
}
#prevBtn, #nextBtn,
#slider1next, #slider1prev{
display:block;
width:15px;
height:25px;
position:absolute;
right:10px;
bottom:0px;
z-index:1000;
}
#nextBtn, #slider1next{
bottom:30px;
}
#prevBtn a, #nextBtn a,
#slider1next a, #slider1prev a{
display:block;
position:relative;
width:15x;
height:25px;
background:url(./images/arrow_left.png) no-repeat 0 0;
}
#nextBtn a, #slider1next a{
background:url(./images/arrow_right.png) no-repeat 0 0;
}
/* numeric controls */
ol#controls{
margin:1em 0;
padding:0;
height:28px;
position:absolute; bottom:0; right:0;
}
ol#controls li{
margin:0 10px 0 0;
padding:0;
float:left;
list-style:none;
height:28px;
line-height:28px;
}
ol#controls li a{
float:left;
height:28px;
line-height:28px;
border:1px solid #ccc;
background:#DAF3F8;
color:#555;
padding:0 10px;
text-decoration:none;
}
ol#controls li.current a{
background:#5DC9E1;
color:#fff;
}
ol#controls li a:focus, #prevBtn a:focus, #nextBtn a:focus{outline:none;}
//Google voice
span.gc-cs-link {
color:red;
}
.wpcol-one-quarter
{
width:21% !important;
}
///
//comments
//
#comments-title
{
color:#999;
}
/* Comment Form */
#respond {
h4 { margin-top:35px; }
// border: 1px solid #d3d3d3;
-moz-border-radius: 3px;
border-radius: 3px;
padding: 1.625em;
position: relative;
width: 93%;
float:left;
}
#respond input[type="email"],
#respond input[type="text"],
#respond textarea {
background: #fff;
border: 4px solid #eee;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
-moz-box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
position: relative;
padding: 10px;
text-indent: 80px;
}
#respond .comment-form-author,
#respond .comment-form-email,
#respond .comment-form-url,
#respond .comment-form-comment {
position: relative;
}
#respond .comment-form-author label,
#respond .comment-form-email label,
#respond .comment-form-url label,
#respond .comment-form-comment label {
background: #eee;
-webkit-box-shadow: 1px 2px 2px rgba(204,204,204,0.8);
-moz-box-shadow: 1px 2px 2px rgba(204,204,204,0.8);
box-shadow: 1px 2px 2px rgba(204,204,204,0.8);
color: #555;
display: inline-block;
font-size: 13px;
left: 4px;
min-width: 60px;
padding: 4px 10px;
position: relative;
top: 40px;
z-index: 1;
}
#respond input[type="text"]:focus,
#respond textarea:focus {
text-indent: 0;
z-index: 1;
}
#respond textarea {
resize: vertical;
width: 95%;
}
#respond .comment-form-author .required,
#respond .comment-form-email .required {
color: #bd3500;
font-size: 22px;
font-weight: bold;
left: 75%;
position: absolute;
top: 45px;
z-index: 1;
}
#respond .comment-notes,
#respond .logged-in-as {
font-size: 13px;
}
#respond p {
margin: 10px 0;
}
#respond .form-submit {
float: right;
margin: -20px 0 10px;
}
#respond input#submit , #searchsubmit, input[type="submit"] {
float:right;
background: @red;
border: none;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
-moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
color: #eee;
cursor: pointer;
font-size: 15px;
margin: 20px 0;
padding: 5px 21px 5px 21px;
position: relative;
text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
}
#respond input#submit:active , #searchsubmit:active , input[type="submit"]:active{
background: #ccc;
}
#respond #cancel-comment-reply-link {
color: #666;
margin-left: 10px;
text-decoration: none;
}
#respond .logged-in-as a:hover,
#respond #cancel-comment-reply-link:hover {
text-decoration: underline;
}
.commentlist #respond {
margin: 1.625em 0 0;
width: auto;
}
#reply-title {
font-size: 24px;
font-weight: bold;
line-height: 30px;
}
#cancel-comment-reply-link {
color: #888;
display: block;
font-size: 10px;
font-weight: normal;
line-height: 2.2em;
letter-spacing: 0.05em;
position: absolute;
right: 1.625em;
text-decoration: none;
text-transform: uppercase;
top: 1.1em;
}
#cancel-comment-reply-link:focus,
#cancel-comment-reply-link:active,
#cancel-comment-reply-link:hover {
color: #ff4b33;
}
#respond label {
line-height: 2.2em;
}
#respond input[type=text],#respond input[type="email"] {
display: block;
height: 24px;
width: 75%;
}
#respond p {
font-size: 12px;
}
p.comment-form-comment {
margin: 0;
}
.form-allowed-tags {
display: none;
}
#s { width:100px; height:25px; line-height:25px; }
#searchsubmit { margin:0px 0; }
#respond .comment-form-author label, #respond .comment-form-email label, #respond .comment-form-url label, #respond .comment-form-comment label {
background: #EEE;
-webkit-box-shadow: 1px 2px 2px rgba(204,204,204,0.8);
-moz-box-shadow: 1px 2px 2px rgba(204,204,204,0.8);
box-shadow: 1px 2px 2px rgba(204,204,204,0.8);
color: #555;
display: inline-block;
font-size: 13px;
left: 4px;
min-width: 60px;
padding: 4px 10px;
position: relative;
top: 40px;
z-index: 1;
}
.slidedownarea{
background:url(./images/content_div.png) repeat-x;
height:6px;
}
.fancyslider
{ float:left;
width:670px;
.jcarousel-skin-pika
{
}
.pika-stage
{
.caption{
display:none !important;
}
.pika-counter
{
display:none;
}
.pika-textnav
{
display:none;
}
}
.slidecontent
{ padding:0;
padding: 0 auto;
list-style:none;
position:relative;
float:left;
width:100%;
li
{
}
}
}
#whyReady
{
.column(16);
h1
{
color:white;
font-size:24px;
background:url(./images/news_signup_home.png) repeat-x;
padding:15px;
margin-bottom:10px;
font-weight:normal;
img
{
margin-top:-9px;
}
}
.block-title
{
color:#ff0000;
text-decoration:none;
font-family: 'Helvetica', sans-serif; font-size:14px;
}
.block-image
{
margin-bottom:10px;
img
{
width:284px;
height:167px;
}
}
.block-content
{ position:relative;
background-color:white;
padding:10px;
float:left;
height:320px !important;
.overflow;
.more-link
{ position:absolute;
bottom:10px; right:10px;
font-family: 'Crete Round', sans-serif;
color:black;
text-align:right;
text-decoration:none;
width:100%;
float:left;
text-transform:capitalize;
background:url(./images/round_bolt.jpg) 100% 10% no-repeat;
padding-right:20px;
}
}
#blockcontent-1
{
width:292px;
margin-right:5px;
margin-bottom:10px;
}
#blockcontent-2
{
width:292px;
margin-bottom:10px;
}
#blockcontent-3
{
width:609px;
margin-bottom:10px;
height:260px !important;
}
}
.grid-layout
{ float:left;
list-style:none;
margin:0px;
margin-bottom:20px;
padding:0px;
li
{
float:left;
margin:5px 5px 5px 8px;
}
}
.social-bar
{
width:39px;
position:fixed;
right:0px;
top:25%;
.black-bar
{
float:right;
width:26px;
height:140px;
background-color:black;
padding: 10px 4px 10px 6px;
img
{
padding-bottom:5px;
}
}
.connect-bar
{
background:url(./images/connect_btn.png) no-repeat;
height:130px;
width:39px;
float:right;
h3{
color:white;
font-size:18px;
font-weight:normal;
-moz-transform: scale(1) rotate(90deg) translate(0px, 0px) skew(0deg, 0deg);
-webkit-transform: scale(1) rotate(90deg) translate(0px, 0px) skew(0deg, 0deg);
-o-transform: scale(1) rotate(90deg) translate(0px, 0px) skew(0deg, 0deg);
-ms-transform: scale(1) rotate(90deg) translate(0px, 0px) skew(0deg, 0deg);
transform: scale(1) rotate(90deg) translate(0px, 0px) skew(0deg, 0deg);
height:29px;
padding-left:29px;
}
}
}
.nav-next
{float:right;
a{
color:#cc0000;
text-decoration:none;}
}
.nav-previous
{
a{
color:#cc0000;
text-decoration:none;}
}
.up-bar {
position:fixed;
right:35px;
bottom:50px;
width:50px;
height:120px;
padding-top:25px;
line-height:25px;
display:block;
text-transform:uppercase;
text-decoration:none;
text-align:center;
font-size:14px;
-webkit-border-radius:10px;
-moz-border-radius:10px;
border-radius:10px;
behavior:url(../PIE.htc);
}
.entry-header
{
.entry-title
{
color: red !important;
font-weight: normal;
font-size: 24px;
margin-bottom: 10px;
text-transform: capitalize !important;
font-family: 'Crete Round', sans-serif !important;
}
}
#FSContact3,#FSContact6
{
input
{
text-indent:0px !important;
}
}
input:invalid, textarea:invalid
{
background-color:white !important;
}
.wp-caption
{
width:100% !important;
border:1px #ccc solid;
img
{
}
float:left;
}
.wp-caption-text
{
font-family: 'Crete Round', sans-serif !important;
color: red;
background:url(./images/round_bolt.jpg)0% 20% no-repeat;
text-indent:25px;
margin:10px;
}
.language-bar
{
min-width:1024px;
background:url(./images/top_bar.png)repeat-x;
height:25px;
color:white !important;
font-family: helvetica, sans-serif !important;
font-size:13px;
padding-top:3px;
a
{
text-decoration:none;
color:white;
font-size:13px;
font-family: helvetica, sans-serif !important;
}
a:hover
{
color:red!important;
}
.left
{
margin-left:5px;
}
#language-title
{
float:left;
}
.qtrans_language_chooser
{
padding-left:0;
float:left;
margin-top:1px;
ul { .left; li {.left} }
margin:0 5px 0 0px !important;
list-style:none !important;
width:130px;
li:last-child
{
border-left:white 1px solid;
}
li
{
float:left;
padding-left:10px;
margin-left:10px;
}
.active
{
color:red;
}
}
}
.chinese-bar
{
h3
{
height:35px !important;
width:36px!important;
margin-top: 35px!important;
padding-left:0px !important;
}
}
#chinese-body
{
#sidebar, #sidebar-home, #sidebar-page
{
label
{
font-size:14px;
font-weight:bold;
}
}
}
blockquote { padding:10px; background:#eee; }
/* ==|== non-semantic helper classes ========================================
Please define your styles before this section.
========================================================================== */
/* For image replacement */
.ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; }
.ir br { display: none; }
/* Hide from both screenreaders and browsers: h5bp.com/u */
.hidden { display: none !important; visibility: hidden; }
/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }
/* ==|== media queries ======================================================
PLACEHOLDER Media Queries for Responsive Design.
These override the primary ('mobile first') styles
Modify as content requires.
========================================================================== */
@media only screen and (min-width: 480px) {
/* Style adjustments for viewports 480px and over go here */
}
@media only screen and (min-width: 768px) {
/* Style adjustments for viewports 768px and over go here */
}
/* ==|== print styles =======================================================
Print styles.
Inlined to avoid required HTTP connection: h5bp.com/r
========================================================================== */
@media print {
* { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: h5bp.com/s */
a, a:visited { text-decoration: underline; }
a[href]:after { content: " (" attr(href) ")"; }
abbr[title]:after { content: " (" attr(title) ")"; }
.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } /* Don't show links for images, or javascript/internal links */
pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
thead { display: table-header-group; } /* h5bp.com/t */
tr, img { page-break-inside: avoid; }
img { max-width: 100% !important; }
@page { margin: 0.5cm; }
p, h2, h3 { orphans: 3; widows: 3; }
h2, h3 { page-break-after: avoid; }
}