Last active
December 25, 2015 06:09
-
-
Save oneblackcrayon/6929865 to your computer and use it in GitHub Desktop.
Structure for a CSS Stylesheet.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
--------------------------------------------------------------------------------------------- | |
--------------------------------------------------------------------------------------------- | |
1. Normalize CSS | |
2. Formalize CSS | |
3. WordPress CSS | |
4. Your CSS | |
4a. Advanced Normalize Styles | |
4b. Global Classes | |
4b.1 Readability | |
4c. Global Layouts | |
4c.1. Grid Layout | |
4c.2. Header | |
4c.3. Navigation | |
4c.4. Search | |
4c.5. Main | |
4c.5. Footer | |
--------------------------------------------------------------------------------------------- | |
--------------------------------------------------------------------------------------------- | |
*/ | |
/* | |
--------------------------------------------------------------------------------------------- | |
--------------------------------------------------------------------------------------------- | |
1. Normalize - necolas.github.io/normalize.css | |
Instead of using a reset, how about we makes browsers render all elements more consistently | |
and in line with modern standards... targeting only the styles that need normalizing. | |
--------------------------------------------------------------------------------------------- | |
--------------------------------------------------------------------------------------------- | |
*/ | |
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */ | |
/* ========================================================================== | |
HTML5 display definitions | |
========================================================================== */ | |
/** | |
* Correct `block` display not defined in IE 8/9. | |
*/ | |
article, | |
aside, | |
details, | |
figcaption, | |
figure, | |
footer, | |
header, | |
hgroup, | |
main, | |
nav, | |
section, | |
summary { | |
display: block; | |
} | |
/** | |
* Correct `inline-block` display not defined in IE 8/9. | |
*/ | |
audio, | |
canvas, | |
video { | |
display: inline-block; | |
} | |
/** | |
* Prevent modern browsers from displaying `audio` without controls. | |
* Remove excess height in iOS 5 devices. | |
*/ | |
audio:not([controls]) { | |
display: none; | |
height: 0; | |
} | |
/** | |
* Address `[hidden]` styling not present in IE 8/9. | |
* Hide the `template` element in IE, Safari, and Firefox < 22. | |
*/ | |
[hidden], | |
template { | |
display: none; | |
} | |
/* ========================================================================== | |
Base | |
========================================================================== */ | |
/** | |
* 1. Set default font family to sans-serif. | |
* 2. Prevent iOS text size adjust after orientation change, without disabling | |
* user zoom. | |
*/ | |
html { | |
font-family: sans-serif; /* 1 */ | |
-ms-text-size-adjust: 100%; /* 2 */ | |
-webkit-text-size-adjust: 100%; /* 2 */ | |
} | |
/** | |
* Remove default margin. | |
*/ | |
body { | |
margin: 0; | |
} | |
/* ========================================================================== | |
Links | |
========================================================================== */ | |
/** | |
* Remove the gray background color from active links in IE 10. | |
*/ | |
a { | |
background: transparent; | |
} | |
/** | |
* Address `outline` inconsistency between Chrome and other browsers. | |
*/ | |
a:focus { | |
outline: thin dotted; | |
} | |
/** | |
* Improve readability when focused and also mouse hovered in all browsers. | |
*/ | |
a:active, | |
a:hover { | |
outline: 0; | |
} | |
/* ========================================================================== | |
Typography | |
========================================================================== */ | |
/** | |
* Address variable `h1` font-size and margin within `section` and `article` | |
* contexts in Firefox 4+, Safari 5, and Chrome. | |
*/ | |
h1 { | |
font-size: 2em; | |
margin: 0.67em 0; | |
} | |
/** | |
* Address styling not present in IE 8/9, Safari 5, and Chrome. | |
*/ | |
abbr[title] { | |
border-bottom: 1px dotted; | |
} | |
/** | |
* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. | |
*/ | |
b, | |
strong { | |
font-weight: bold; | |
} | |
/** | |
* Address styling not present in Safari 5 and Chrome. | |
*/ | |
dfn { | |
font-style: italic; | |
} | |
/** | |
* Address differences between Firefox and other browsers. | |
*/ | |
hr { | |
-moz-box-sizing: content-box; | |
box-sizing: content-box; | |
height: 0; | |
} | |
/** | |
* Address styling not present in IE 8/9. | |
*/ | |
mark { | |
background: #ff0; | |
color: #000; | |
} | |
/** | |
* Correct font family set oddly in Safari 5 and Chrome. | |
*/ | |
code, | |
kbd, | |
pre, | |
samp { | |
font-family: monospace, serif; | |
font-size: 1em; | |
} | |
/** | |
* Improve readability of pre-formatted text in all browsers. | |
*/ | |
pre { | |
white-space: pre-wrap; | |
} | |
/** | |
* Set consistent quote types. | |
*/ | |
q { | |
quotes: "\201C" "\201D" "\2018" "\2019"; | |
} | |
/** | |
* Address inconsistent and variable font size in all browsers. | |
*/ | |
small { | |
font-size: 80%; | |
} | |
/** | |
* Prevent `sub` and `sup` affecting `line-height` in all browsers. | |
*/ | |
sub, | |
sup { | |
font-size: 75%; | |
line-height: 0; | |
position: relative; | |
vertical-align: baseline; | |
} | |
sup { | |
top: -0.5em; | |
} | |
sub { | |
bottom: -0.25em; | |
} | |
/* ========================================================================== | |
Embedded content | |
========================================================================== */ | |
/** | |
* Remove border when inside `a` element in IE 8/9. | |
*/ | |
img { | |
border: 0; | |
} | |
/** | |
* Correct overflow displayed oddly in IE 9. | |
*/ | |
svg:not(:root) { | |
overflow: hidden; | |
} | |
/* ========================================================================== | |
Figures | |
========================================================================== */ | |
/** | |
* Address margin not present in IE 8/9 and Safari 5. | |
*/ | |
figure { | |
margin: 0; | |
} | |
/* ========================================================================== | |
Forms | |
========================================================================== */ | |
/** | |
* Define consistent border, margin, and padding. | |
*/ | |
fieldset { | |
border: 1px solid #c0c0c0; | |
margin: 0 2px; | |
padding: 0.35em 0.625em 0.75em; | |
} | |
/** | |
* 1. Correct `color` not being inherited in IE 8/9. | |
* 2. Remove padding so people aren't caught out if they zero out fieldsets. | |
*/ | |
legend { | |
border: 0; /* 1 */ | |
padding: 0; /* 2 */ | |
} | |
/** | |
* 1. Correct font family not being inherited in all browsers. | |
* 2. Correct font size not being inherited in all browsers. | |
* 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome. | |
*/ | |
button, | |
input, | |
select, | |
textarea { | |
font-family: inherit; /* 1 */ | |
font-size: 100%; /* 2 */ | |
margin: 0; /* 3 */ | |
} | |
/** | |
* Address Firefox 4+ setting `line-height` on `input` using `!important` in | |
* the UA stylesheet. | |
*/ | |
button, | |
input { | |
line-height: normal; | |
} | |
/** | |
* Address inconsistent `text-transform` inheritance for `button` and `select`. | |
* All other form control elements do not inherit `text-transform` values. | |
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. | |
* Correct `select` style inheritance in Firefox 4+ and Opera. | |
*/ | |
button, | |
select { | |
text-transform: none; | |
} | |
/** | |
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` | |
* and `video` controls. | |
* 2. Correct inability to style clickable `input` types in iOS. | |
* 3. Improve usability and consistency of cursor style between image-type | |
* `input` and others. | |
*/ | |
button, | |
html input[type="button"], /* 1 */ | |
input[type="reset"], | |
input[type="submit"] { | |
-webkit-appearance: button; /* 2 */ | |
cursor: pointer; /* 3 */ | |
} | |
/** | |
* Re-set default cursor for disabled elements. | |
*/ | |
button[disabled], | |
html input[disabled] { | |
cursor: default; | |
} | |
/** | |
* 1. Address box sizing set to `content-box` in IE 8/9/10. | |
* 2. Remove excess padding in IE 8/9/10. | |
*/ | |
input[type="checkbox"], | |
input[type="radio"] { | |
box-sizing: border-box; /* 1 */ | |
padding: 0; /* 2 */ | |
} | |
/** | |
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. | |
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome | |
* (include `-moz` to future-proof). | |
*/ | |
input[type="search"] { | |
-webkit-appearance: textfield; /* 1 */ | |
-moz-box-sizing: content-box; | |
-webkit-box-sizing: content-box; /* 2 */ | |
box-sizing: content-box; | |
} | |
/** | |
* Remove inner padding and search cancel button in Safari 5 and Chrome | |
* on OS X. | |
*/ | |
input[type="search"]::-webkit-search-cancel-button, | |
input[type="search"]::-webkit-search-decoration { | |
-webkit-appearance: none; | |
} | |
/** | |
* Remove inner padding and border in Firefox 4+. | |
*/ | |
button::-moz-focus-inner, | |
input::-moz-focus-inner { | |
border: 0; | |
padding: 0; | |
} | |
/** | |
* 1. Remove default vertical scrollbar in IE 8/9. | |
* 2. Improve readability and alignment in all browsers. | |
*/ | |
textarea { | |
overflow: auto; /* 1 */ | |
vertical-align: top; /* 2 */ | |
} | |
/* ========================================================================== | |
Tables | |
========================================================================== */ | |
/** | |
* Remove most spacing between table cells. | |
*/ | |
table { | |
border-collapse: collapse; | |
border-spacing: 0; | |
} | |
/* | |
--------------------------------------------------------------------------------------------- | |
--------------------------------------------------------------------------------------------- | |
2. Formalize - formalize.me | |
Teach your forms some manners. | |
--------------------------------------------------------------------------------------------- | |
--------------------------------------------------------------------------------------------- | |
*/ | |
.input_tiny { | |
width: 50px; | |
} | |
.input_small { | |
width: 100px; | |
} | |
.input_medium { | |
width: 150px; | |
} | |
.input_large { | |
width: 200px; | |
} | |
.input_xlarge { | |
width: 250px; | |
} | |
.input_xxlarge { | |
width: 300px; | |
} | |
.input_full { | |
width: 100%; | |
} | |
.input_full_wrap { | |
display: block; | |
padding-right: 8px; | |
} | |
input[type="search"]::-webkit-search-decoration { | |
display: none; | |
} | |
input:invalid, | |
button:invalid, | |
a.button:invalid, | |
select:invalid, | |
textarea:invalid { | |
-webkit-box-shadow: none; | |
-moz-box-shadow: none; | |
box-shadow: none; | |
} | |
input:focus, | |
button:focus, | |
a.button:focus, | |
select:focus, | |
textarea:focus { | |
-webkit-box-shadow: #0066ff 0 0 5px 0; | |
-moz-box-shadow: #0066ff 0 0 5px 0; | |
box-shadow: #0066ff 0 0 5px 0; | |
z-index: 1; | |
} | |
input[type="file"]:focus, input[type="file"]:active, | |
input[type="radio"]:focus, | |
input[type="radio"]:active, | |
input[type="checkbox"]:focus, | |
input[type="checkbox"]:active { | |
-webkit-box-shadow: none; | |
-moz-box-shadow: none; | |
box-shadow: none; | |
} | |
button, | |
a.button, | |
input[type="reset"], | |
input[type="submit"], | |
input[type="button"] { | |
-webkit-appearance: none; | |
-webkit-border-radius: 4px; | |
-moz-border-radius: 4px; | |
-ms-border-radius: 4px; | |
-o-border-radius: 4px; | |
border-radius: 4px; | |
-webkit-background-clip: padding; | |
-moz-background-clip: padding; | |
background-clip: padding-box; | |
background: #dddddd url('../images/button.png?1298351022') repeat-x; | |
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #dddddd)); | |
background-image: -webkit-linear-gradient(#ffffff, #dddddd); | |
background-image: -moz-linear-gradient(#ffffff, #dddddd); | |
background-image: -o-linear-gradient(#ffffff, #dddddd); | |
background-image: linear-gradient(#ffffff, #dddddd); | |
border: 1px solid; | |
border-color: #dddddd #bbbbbb #999999; | |
cursor: pointer; | |
color: #333333; | |
display: inline-block; | |
font: bold 12px/1.3 "Helvetica Neue", Arial, "Liberation Sans", FreeSans, sans-serif; | |
outline: 0; | |
overflow: visible; | |
margin: 0; | |
padding: 3px 10px; | |
text-shadow: white 0 1px 1px; | |
text-decoration: none; | |
vertical-align: top; | |
width: auto; | |
*padding-top: 2px; | |
*padding-bottom: 0; | |
} | |
button:hover, | |
a.button:hover, | |
input[type="reset"]:hover, | |
input[type="submit"]:hover, | |
input[type="button"]:hover { | |
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(1px, #eeeeee), color-stop(100%, #cccccc)); | |
background-image: -webkit-linear-gradient(#ffffff, #eeeeee 1px, #cccccc); | |
background-image: -moz-linear-gradient(#ffffff, #eeeeee 1px, #cccccc); | |
background-image: -o-linear-gradient(#ffffff, #eeeeee 1px, #cccccc); | |
background-image: linear-gradient(#ffffff, #eeeeee 1px, #cccccc); | |
text-decoration: none; | |
} | |
button:active, | |
a.button:active, | |
input[type="reset"]:active, | |
input[type="submit"]:active, | |
input[type="button"]:active { | |
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dddddd), color-stop(100%, #eeeeee)); | |
background-image: -webkit-linear-gradient(#dddddd, #eeeeee); | |
background-image: -moz-linear-gradient(#dddddd, #eeeeee); | |
background-image: -o-linear-gradient(#dddddd, #eeeeee); | |
background-image: linear-gradient(#dddddd, #eeeeee); | |
-webkit-box-shadow: inset rgba(0, 0, 0, 0.25) 0 1px 2px 0; | |
-moz-box-shadow: inset rgba(0, 0, 0, 0.25) 0 1px 2px 0; | |
box-shadow: inset rgba(0, 0, 0, 0.25) 0 1px 2px 0; | |
border-color: #999999 #bbbbbb #dddddd; | |
} | |
button::-moz-focus-inner, | |
a.button::-moz-focus-inner, | |
input[type="reset"]::-moz-focus-inner, | |
input[type="submit"]::-moz-focus-inner, | |
input[type="button"]::-moz-focus-inner { | |
border: 0; | |
padding: 0; | |
} | |
a.button { | |
*padding-bottom: 3px; | |
} | |
button { | |
*padding-top: 1px; | |
*padding-bottom: 1px; | |
} | |
textarea, | |
select, | |
input[type="date"], | |
input[type="datetime"], | |
input[type="datetime-local"], | |
input[type="email"], | |
input[type="month"], | |
input[type="number"], | |
input[type="password"], | |
input[type="search"], | |
input[type="tel"], | |
input[type="text"], | |
input[type="time"], | |
input[type="url"], | |
input[type="week"] { | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
-webkit-background-clip: padding; | |
-moz-background-clip: padding; | |
background-clip: padding-box; | |
-webkit-border-radius: 0; | |
-moz-border-radius: 0; | |
-ms-border-radius: 0; | |
-o-border-radius: 0; | |
border-radius: 0; | |
-webkit-appearance: none; | |
background-color: white; | |
border: 1px solid; | |
border-color: #848484 #c1c1c1 #e1e1e1; | |
color: black; | |
outline: 0; | |
margin: 0; | |
padding: 2px 3px; | |
text-align: left; | |
font-size: 13px; | |
font-family: Arial, "Liberation Sans", FreeSans, sans-serif; | |
height: 1.8em; | |
vertical-align: top; | |
*padding-top: 2px; | |
*padding-bottom: 1px; | |
*height: auto; | |
} | |
textarea[disabled], | |
select[disabled], | |
input[type="date"][disabled], | |
input[type="datetime"][disabled], | |
input[type="datetime-local"][disabled], | |
input[type="email"][disabled], | |
input[type="month"][disabled], | |
input[type="number"][disabled], | |
input[type="password"][disabled], | |
input[type="search"][disabled], | |
input[type="tel"][disabled], | |
input[type="text"][disabled], | |
input[type="time"][disabled], | |
input[type="url"][disabled], | |
input[type="week"][disabled] { | |
background-color: #eeeeee; | |
} | |
button[disabled], | |
input[disabled], | |
select[disabled], | |
select[disabled] option, | |
select[disabled] optgroup, | |
textarea[disabled], | |
a.button_disabled { | |
-webkit-box-shadow: none; | |
-moz-box-shadow: none; | |
box-shadow: none; | |
-moz-user-select: -moz-none; | |
-webkit-user-select: none; | |
-khtml-user-select: none; | |
user-select: none; | |
color: #888888; | |
cursor: default; | |
} | |
input::-webkit-input-placeholder, | |
textarea::-webkit-input-placeholder { | |
color: #888888; | |
} | |
input:-moz-placeholder, | |
textarea:-moz-placeholder { | |
color: #888888; | |
} | |
input.placeholder_text, | |
textarea.placeholder_text { | |
color: #888888; | |
} | |
textarea, | |
select[size], | |
select[multiple] { | |
height: auto; | |
} | |
select[size="0"], | |
select[size="1"] { | |
height: 1.8em; | |
*height: auto; | |
} | |
@media (-webkit-min-device-pixel-ratio: 0) { | |
select[size], | |
select[multiple], | |
select[multiple][size] { | |
background-image: none; | |
padding-right: 3px; | |
} | |
select, | |
select[size="0"], | |
select[size="1"] { | |
background-image: url(data:image/png;base64,R0lGODlhDQAEAIAAAAAAAP8A/yH5BAEHAAEALAAAAAANAAQAAAILhA+hG5jMDpxvhgIAOw==); | |
background-repeat: no-repeat; | |
background-position: right center; | |
padding-right: 20px; | |
} | |
::-webkit-validation-bubble-message { | |
-webkit-box-shadow: none; | |
box-shadow: none; | |
background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #666666), color-stop(1, black)); | |
border: 0; | |
color: white; | |
font: 13px/17px "Lucida Grande", Arial, "Liberation Sans", FreeSans, sans-serif; | |
overflow: hidden; | |
padding: 15px 15px 17px; | |
text-shadow: black 0 0 1px; | |
min-height: 16px; | |
} | |
::-webkit-validation-bubble-arrow, | |
::-webkit-validation-bubble-top-outer-arrow, | |
::-webkit-validation-bubble-top-inner-arrow { | |
-webkit-box-shadow: none; | |
box-shadow: none; | |
background: #666666; | |
border-color: #666666; | |
} | |
} | |
textarea { | |
min-height: 40px; | |
overflow: auto; | |
resize: vertical; | |
width: 100%; | |
} | |
optgroup { | |
color: black; | |
font-style: normal; | |
font-weight: normal; | |
font-family: Arial, "Liberation Sans", FreeSans, sans-serif; | |
} | |
optgroup::-moz-focus-inner { | |
border: 0; | |
padding: 0; | |
} | |
.ie6_button, | |
* html button, | |
* html a.button { | |
background: #dddddd url('../images/button.png?1298351022') repeat-x; | |
border: 1px solid; | |
border-color: #dddddd #bbbbbb #999999; | |
cursor: pointer; | |
color: #333333; | |
font: bold 12px/1.2 Arial, sans-serif; | |
padding: 2px 10px 0; | |
text-decoration: none; | |
overflow: visible; | |
vertical-align: top; | |
width: auto; | |
} | |
* html a.button { | |
position: relative; | |
top: 3px; | |
padding-bottom: 2px; | |
} | |
* html button { | |
padding-top: 1px; | |
padding-bottom: 1px; | |
} | |
.ie6_input, | |
* html textarea, | |
* html select { | |
background: white; | |
border: 1px solid; | |
border-color: #848484 #c1c1c1 #e1e1e1; | |
color: black; | |
padding: 2px 3px 1px; | |
font-size: 13px; | |
font-family: Arial, sans-serif; | |
vertical-align: top; | |
} | |
* html select { | |
margin-top: 1px; | |
} | |
.placeholder_text, | |
.ie6_input_disabled, | |
.ie6_button_disabled { | |
color: #888888; | |
} | |
.ie6_input_disabled { | |
background: #eeeeee; | |
} | |
/* | |
--------------------------------------------------------------------------------------------- | |
--------------------------------------------------------------------------------------------- | |
3. WordPress CSS - digwp.com/2010/05/default-wordpress-css-styles-hooks | |
This is a collection of CSS auto-generated by WordPress. | |
Start at digwp.com to search for a list of CSS styles. | |
--------------------------------------------------------------------------------------------- | |
--------------------------------------------------------------------------------------------- | |
*/ | |
/* == WordPress WYSIWYG Editor Styles == */ | |
.mceContentBody.post.wp-editor {} | |
.main-menu{} /* container class */ | |
.main-menu ul {} /* container class first unordered list */ | |
.main-menu ul ul {} /* unordered list within an unordered list */ | |
.main-menu li {} /* each navigation item */ | |
.main-menu li a {} /* each navigation item anchor */ | |
.main-menu li ul {} /* unordered list if there is drop down items */ | |
.main-menu li li {} /* each drop down navigation item */ | |
.main-menu li li a {} /* each drap down navigation item anchor */ | |
#header .main-menu{} /* container class */ | |
#header .main-menu ul {} /* container class first unordered list */ | |
#header .main-menu ul ul {} /* unordered list within an unordered list */ | |
#header .main-menu li {} /* each navigation item */ | |
#header .main-menu li a {} /* each navigation item anchor */ | |
#header .main-menu li ul {} /* unordered list if there is drop down items */ | |
#header .main-menu li li {} /* each drop down navigation item */ | |
#header .main-menu li li a {} /* each drap down navigation item anchor */ | |
#footer .main-menu{} /* container class */ | |
#footer .main-menu ul {} /* container class first unordered list */ | |
#footer .main-menu ul ul {} /* unordered list within an unordered list */ | |
#footer .main-menu li {} /* each navigation item */ | |
#footer .main-menu li a {} /* each navigation item anchor */ | |
#footer .main-menu li ul {} /* unordered list if there is drop down items */ | |
#footer .main-menu li li {} /* each drop down navigation item */ | |
#footer .main-menu li li a {} /* each drap down navigation item anchor */ | |
/* .current_page_item{} Class for Current Page */ | |
/* .current-cat{} Class for Current Category */ | |
/* .current-menu-item{} Class for any other current Menu Item */ | |
.menu-item-type-taxonomy{} /* Class for a Category */ | |
.menu-item-type-post_type{} /* Class for Pages */ | |
.menu-item-type-custom{} /* Class for any custom item that you added */ | |
.menu-item-home{} /* Class for the Home Link */ | |
.source-org {} | |
.vcard {} | |
.copyright {} | |
.byline {} | |
.author {} | |
.login-remember, .login-submit, #reg_passmail, #login .submit {margin:0;padding: 2px 0 0 0;} | |
#s, #user_login, #user_pass {} | |
#login {margin-top:100px;} | |
#registerform p {margin:0;padding:10px 0 0;} | |
.entry-content img {margin: 0 0 1.5em 0;} | |
.alignleft, img.alignleft {margin-right: 1.5em;display: inline;float: left;} | |
.alignright, img.alignright {margin-left: 1.5em;display: inline;float: right;} | |
.aligncenter, img.aligncenter {margin-right: auto;margin-left: auto;display: block;clear: both;} | |
/* not sure about this one */ | |
.alignnone, img.alignnone {} | |
.wp-caption {margin-bottom: 1.5em;text-align: center;padding-top: 5px;} | |
.wp-caption img {border: 0 none;padding: 0;margin: 0;} | |
.wp-caption p.wp-caption-text {line-height: 1.5;font-size: 10px;margin: 0;} | |
.wp-smiley {margin: 0 !important;max-height: 1em;} | |
blockquote.left {margin-right: 20px;text-align: right;margin-left: 0;width: 33%;float: left;} | |
blockquote.right {margin-left: 20px;text-align: left;margin-right: 0;width: 33%;float: right;} | |
.gallery dl {} | |
.gallery dt {} | |
.gallery dd {} | |
.gallery dl a {} | |
.gallery dl img {} | |
.gallery-caption {} | |
.size-full {} | |
.size-large {} | |
.size-medium {} | |
.size-thumbnail {} | |
/* Notifications */ | |
.error, | |
.alert, | |
.notice, | |
.approved, | |
.attention {padding: 15px;border-radius: 6px;color: #444;} | |
.approved {border: 1px solid #C1E8C1;background: #D1EED1;} | |
.attention {background: #FDF5D9;border: 1px solid #FCEEC1;} | |
.notice {background: #DDF4FB;border: 1px solid #C8EEF9;} | |
.alert {background: #FDDFDE;border: 1px solid #FBC9C8;} | |
.error {background:#e84c29;border: 1px solid #d33915;color:#000;} | |
.error, | |
.alert, | |
.notice, | |
.approved, | |
.attention, | |
.approved, | |
.attention, | |
.notice, | |
.alert, | |
.error { color: #858585; line-height: 1.5em;overflow: hidden;clear: both;margin-top: 15px;margin-bottom: 12px;padding-top: 5px;padding-bottom: 5px;} | |
/* == WordPress CSS - Miscellaneous Styles == */ | |
/* category links */ | |
li.categories {} | |
li.cat-item {} | |
li.cat-item-{id} {} | |
li.current-cat {} | |
li.current-cat-parent {} | |
ul.children {} | |
/* blogroll links */ | |
.linkcat {} | |
.blogroll {} | |
/* read-more links */ | |
.more-link {} | |
/* == WP CSS - Page Listings == */ | |
.pagenav {} /* outermost list item */ | |
.page_item {} /* any page item */ | |
.page-item-{id} {} /* specific page id */ | |
.current_page_item {} /* current page */ | |
.current_page_parent {} /* parent of current page */ | |
.current_page_ancestor {} /* any ancestor of current page */ | |
.pagenav ul, | |
.pagenav .current_page_item ul, | |
.pagenav .current_page_ancestor ul, | |
.pagenav .current_page_ancestor .current_page_item ul, | |
.pagenav .current_page_ancestor .current_page_ancestor ul, | |
.pagenav .current_page_ancestor .current_page_ancestor .current_page_item ul, | |
.pagenav .current_page_ancestor .current_page_ancestor .current_page_ancestor ul {} | |
.pagenav ul ul, | |
.pagenav .current_page_item ul ul, | |
.pagenav .current_page_ancestor ul ul, | |
.pagenav .current_page_ancestor .current_page_item ul ul, | |
.pagenav .current_page_ancestor .current_page_ancestor ul ul {} | |
.pagenav .current_page_ancestor .current_page_ancestor .current_page_item ul ul, | |
.pagenav .current_page_ancestor .current_page_ancestor .current_page_ancestor ul ul {} | |
/* == WordPress CSS - Default WordPress Widgets == */ | |
.widget {display: block;margin: 0;padding: 0;} | |
.widget_categories, | |
.widget_categories ul, | |
.widget_categories ul li, | |
.widget_meta, | |
.widget_meta ul, | |
.widget_meta ul li, | |
.widget-container, | |
.widget-container ul li, | |
.widget-container ol li, | |
.widget-container li, | |
.widget_pages ul li, | |
.widget_archive ul li, | |
.widget_recent_entries ul li {display: block;list-style: none;margin: 0;padding: 0;} | |
.widget_categories h3, | |
.widget_categories ul h3, | |
.widget_categories ul li h3, | |
.widget_meta h3, | |
.widget_meta ul h3, | |
.widget_meta ul li h3, | |
.widget-container h3, | |
.widget-container ul li h3, | |
.widget-container ol li h3, | |
.widget-container li h3, | |
.widget_pages ul li h3, | |
.widget_archive ul li h3, | |
.widget_recent_entries ul li h3 { | |
} | |
/* links widget */ | |
.widget_links {} | |
.widget_links ul {} | |
.widget_links ul li {} | |
.widget_links ul li a {} | |
/* meta widget */ | |
.widget_meta {} | |
.widget_meta ul {} | |
.widget_meta ul li {} | |
.widget_meta ul li a {} | |
/* pages widget */ | |
.widget_pages {} | |
.widget_pages ul {} | |
.widget_pages ul li {} | |
.widget_pages ul li a {} | |
/* recent-posts widget */ | |
.widget_recent_entries {} | |
.widget_recent_entries ul {} | |
.widget_recent_entries ul li {} | |
.widget_recent_entries ul li a {} | |
/* archives widget */ | |
.widget_archive {} | |
.widget_archive ul {} | |
.widget_archive ul li {} | |
.widget_archive ul li a {} | |
.widget_archive select {} | |
.widget_archive option {} | |
/* tag-cloud widget */ | |
.widget_links {} | |
.widget_links li:after {} | |
.widget_links li:before {} | |
.widget_tag_cloud {} | |
.widget_tag_cloud a {} | |
.widget_tag_cloud a:after {} | |
.widget_tag_cloud a:before {} | |
/* calendar widget */ | |
.widget_calendar {} | |
#calendar_wrap {} | |
#calendar_wrap th {} | |
#calendar_wrap td {} | |
#wp-calendar tr td {} | |
#wp-calendar caption { text-align: right; color: #333; font-size: 12px; margin-top: 10px; margin-bottom: 15px; } | |
#wp-calendar thead { font-size: 10px; } | |
#wp-calendar thead th { padding-bottom: 10px; } | |
#wp-calendar tbody { color: #aaa; } | |
#wp-calendar tbody td { background: #f5f5f5; border: 1px solid #fff; text-align: center; padding:8px;} | |
#wp-calendar tbody td:hover { background: #fff; } | |
#wp-calendar tbody .pad { background: none; } | |
#wp-calendar tfoot #next { font-size: 10px; text-transform: uppercase; text-align: right; } | |
#wp-calendar tfoot #prev { font-size: 10px; text-transform: uppercase; padding-top: 10px; } | |
#wp-calendar a {} | |
#wp-calendar #today {} | |
#wp-calendar #prev {} | |
#wp-calendar #next {} | |
#wp-calendar #next a {} | |
#wp-calendar #prev a {} | |
/* category widget */ | |
.widget_categories {} | |
.widget_categories ul {} | |
.widget_categories ul li {} | |
.widget_categories ul ul.children {} | |
.widget_categories a {} | |
.widget_categories select{} | |
.widget_categories select#cat {} | |
.widget_categories select.postform {} | |
.widget_categories option {} | |
.widget_categories .level-0 {} | |
.widget_categories .level-1 {} | |
.widget_categories .level-2 {} | |
.widget_categories .level-3 {} | |
/* recent-comments widget */ | |
.recentcomments {} | |
#recentcomments {} | |
#recentcomments li {} | |
#recentcomments li a {} | |
.widget_recent_comments {} | |
/* search widget */ | |
#searchform {} | |
.widget_search {} | |
.screen-reader-text {} | |
/* text widget */ | |
.textwidget, | |
.widget_text {display: block;margin: 0;padding: 0;} | |
.textwidget p {} | |
/* == WP CSS - Comment Styles == */ | |
.commentlist .reply {} | |
.commentlist .reply a {} | |
.commentlist .alt {} | |
.commentlist .odd {} | |
.commentlist .even {} | |
.commentlist .thread-alt {} | |
.commentlist .thread-odd {} | |
.commentlist .thread-even {} | |
.commentlist li ul.children .alt {} | |
.commentlist li ul.children .odd {} | |
.commentlist li ul.children .even {} | |
.commentlist .vcard {} | |
.commentlist .vcard cite.fn {} | |
.commentlist .vcard span.says {} | |
.commentlist .vcard img.photo {} | |
.commentlist .vcard img.avatar {} | |
.commentlist .vcard cite.fn a.url {} | |
.commentlist .comment-meta {} | |
.commentlist .comment-meta a {} | |
.commentlist .commentmetadata {} | |
.commentlist .commentmetadata a {} | |
.commentlist .parent {} | |
.commentlist .comment {} | |
.commentlist .children {} | |
.commentlist .pingback {} | |
.commentlist .bypostauthor {} | |
.commentlist .comment-author {} | |
.commentlist .comment-author-admin {} | |
.commentlist {} | |
.commentlist li {} | |
.commentlist li p {} | |
.commentlist li ul {} | |
.commentlist li ul.children li {} | |
.commentlist li ul.children li.alt {} | |
.commentlist li ul.children li.byuser {} | |
.commentlist li ul.children li.comment {} | |
.commentlist li ul.children li.depth-{id} {} | |
.commentlist li ul.children li.bypostauthor {} | |
.commentlist li ul.children li.comment-author-admin {} | |
#cancel-comment-reply {} | |
#cancel-comment-reply a {} | |
/* == WP CSS - body_class() == */ | |
body.rtl {} | |
body.home {} | |
body.blog {} | |
body.archive {} | |
body.date {} | |
body.search {} | |
body.paged {} | |
body.attachment {} | |
body.error404 {} | |
body.author {} | |
body.category {} | |
body.tag {} | |
body.page-parent {} | |
body.search-results {} | |
body.search-no-results {} | |
body.logged-in {} | |
/* | |
.single postid-(id) {} | |
.attachmentid-(id) {} | |
.attachment-(mime-type) {} | |
.author-(user_nicename) {} | |
.category-(slug) {} | |
.tag-(slug) {} | |
.page-child parent-pageid-(id) {} | |
.page-template page-template-(template file name) {} | |
.paged-(page number) {} | |
.single-paged-(page number) {} | |
.page-paged-(page number) {} | |
.category-paged-(page number) {} | |
.tag-paged-(page number) {} | |
.date-paged-(page number) {} | |
.author-paged-(page number) {} | |
.search-paged-(page number) {} | |
*/ | |
/* == WP CSS - post_class() == */ | |
.post-id {} | |
.post {} | |
.page {} | |
.attachment {} | |
.sticky {} | |
.hentry {} | |
.category-misc {} | |
.category-example {} | |
.tag-news {} | |
.tag-wordpress {} | |
.tag-markup {} | |
/* | |
--------------------------------------------------------------------------------------------- | |
--------------------------------------------------------------------------------------------- | |
4. Your styles | |
Put your styles here. Make sure you validate your styles using a CSS validator. | |
--------------------------------------------------------------------------------------------- | |
--------------------------------------------------------------------------------------------- | |
*/ | |
/* | |
--------------------------------------------------------------------------------------------- | |
4a. Advanced Normalize Styles | |
These are my basic styles that compliment and extend the Normalize CSS styles. | |
--------------------------------------------------------------------------------------------- | |
*/ | |
html, | |
body, | |
div, | |
article, | |
aside, | |
audio, | |
details, | |
figure, | |
footer, | |
header, | |
hgroup, | |
hr, | |
iframe, | |
menu, | |
section, | |
summary, | |
time, | |
video, | |
nav, | |
nav ul, | |
nav ol, | |
ul, | |
ol, | |
dl { | |
-moz-font-smoothing: antialiased; | |
-moz-margin-before: 0px; | |
-moz-margin-after: 0px; | |
-moz-margin-start: 0; | |
-moz-margin-end: 0; | |
-ms-box-sizing: border-box; | |
-ms-margin-before: 0px; | |
-ms-margin-after: 0px; | |
-ms-margin-before: 0px; | |
-ms-margin-after: 0px; | |
-o-box-sizing: border-box; | |
-o-font-smoothing: antialiased; | |
-o-margin-before: 0px; | |
-o-margin-after: 0px; | |
-o-margin-start: 0; | |
-o-margin-end: 0; | |
-webkit-font-smoothing: antialiased; | |
-webkit-box-sizing: border-box; | |
-webkit-margin-before: 0px; | |
-webkit-margin-after: 0px; | |
-webkit-margin-start: 0; | |
-webkit-margin-end: 0; | |
box-sizing: border-box; | |
-moz-text-rendering: optimizeSpeed; | |
-webkit-text-rendering: optimizeSpeed; | |
} | |
html { | |
background-color: white; | |
background-clip: border-box; | |
background-origin: border-box; | |
background-image: none; | |
background-position: left top; | |
background-repeat: repeat; | |
background-size: contain; | |
color: black; | |
height: 100%; | |
margin: 0; | |
min-height: 100%; | |
min-width: 100%; | |
text-align: center; | |
} | |
body { | |
font-family: 'Helvetica Neue','HelveticaNeue',Helvetica,Arial,sans-serif; | |
min-height: 100%; | |
overflow-y: scroll; | |
padding: 0; | |
position: relative; | |
text-align: left; | |
width: 100%; | |
-moz-text-rendering: optimizeLegibility; | |
-webkit-text-rendering: optimizeLegibility; | |
} | |
article, | |
aside, | |
canvas, | |
details, | |
figcaption, | |
figure, | |
footer, | |
header, | |
hgroup, | |
menu, | |
nav, | |
section, | |
summary { | |
display: block; | |
position: relative; | |
} | |
audio, | |
canvas, | |
iframe, | |
video { | |
display: inline-block; | |
*display: inline; | |
} | |
audio:not([controls]) { | |
display: none; | |
height: 0; | |
} | |
a, | |
a:link { | |
color: blue; | |
} | |
a:focus, | |
a:hover { | |
color: red; | |
} | |
a:active { | |
color: purple; | |
} | |
a, | |
a:link, | |
a:focus, | |
a:hover, | |
a:visited, | |
a:active, | |
a img, | |
nav a, | |
nav a:hover, | |
nav a:focus { | |
border: 0; | |
outline: none; | |
text-decoration: none; | |
-moz-transition: color 0.2s ease-in-out; | |
-ms-transition: color 0.2s ease-in-out; | |
-o-transition: color 0.2s ease-in-out; | |
-webkit-transition: color 0.2s ease-in-out; | |
transition: color 0.2s ease-in-out; | |
} | |
hr { | |
background-color: #555555; | |
border-style: none; | |
border-width: 0; | |
clear: both; | |
float: none; | |
height: 1px; | |
line-height: 1px; | |
margin: 1px 0; | |
padding: 0; | |
visibility: visible; | |
width: 100%; | |
zoom: 1; | |
} | |
mark { | |
position: relative; | |
} | |
code, | |
kbd, | |
pre, | |
samp { | |
} | |
pre { | |
white-space: pre; | |
word-wrap: break-word; | |
} | |
q, | |
quote { | |
font-weight: 400; | |
margin: 0 0 20px; | |
font-style: normal; | |
} | |
q:before, | |
q:after { | |
content: ''; | |
content: none; | |
} | |
cite, | |
small, | |
.small { | |
font-style: normal; | |
} | |
big, | |
.big { | |
font-size: 190%; | |
font-style: normal; | |
} | |
img { | |
max-width: 100%; | |
vertical-align: text-top; | |
} | |
svg { | |
overflow: hidden; | |
} | |
svg:not(:root) { | |
overflow: hidden; | |
} | |
menu { | |
margin-bottom: 1em; | |
} | |
time { | |
color: inherit; | |
font-size: .875em; | |
} | |
acronym, | |
applet, | |
center, | |
del, | |
dfn, | |
dialog, | |
embed, | |
font, | |
ins, | |
kbd, | |
meter, | |
object, | |
output, | |
progress, | |
q, | |
rp, | |
rt, | |
ruby, | |
s, | |
samp, | |
strike, | |
tt, | |
u, | |
var, | |
xmp { | |
} | |
table { | |
border: 0; | |
border-collapse: collapse; | |
border-spacing: 0; | |
margin: 0 auto; | |
} | |
table tbody { | |
background-color: transparent; | |
} | |
table td { | |
border-spacing: 0; | |
} | |
th { | |
border-collapse: collapse; | |
border-spacing: 0; | |
} | |
thead { | |
border-collapse: collapse; | |
border-spacing: 0; | |
} | |
tfoot { | |
border-collapse: collapse; | |
border-spacing: 0; | |
} | |
table caption { | |
border-collapse: collapse; | |
text-align: left; | |
vertical-align: middle; | |
} | |
:hover, | |
:focus { | |
outline: none; | |
} | |
::-moz-selection { | |
background: #8181FF; | |
color: #FAFAFA; | |
text-shadow: none; | |
} | |
::selection { | |
background: #8181FF; | |
color: #FAFAFA; | |
text-shadow: none; | |
} | |
/* Typography */ | |
h1, | |
h2, | |
h3, | |
h4, | |
h5, | |
h6 { | |
margin-top: 0; | |
margin-bottom: .5em; | |
} | |
p, | |
li, | |
dt, | |
dd, | |
blockquote, | |
quote { | |
font-size: 1.133625em; | |
line-height: 1.5em; | |
} | |
p, | |
p+p { | |
margin-top: 0; | |
} | |
p blockquote, | |
blockquote { | |
font-weight: bold; | |
} | |
dl { | |
margin: 0 0 10px; | |
} | |
dt { | |
font-weight: bold; | |
} | |
dd { | |
font-weight: normal; | |
margin: 0; | |
} | |
ul { | |
list-style: square outside; | |
margin: 0 0 1em 1.5em; | |
padding: 0; | |
} | |
ul ul { | |
list-style: circle outside; | |
margin-left: .5em; | |
} | |
ul ol { | |
list-style: upper-alpha outside; | |
margin-left: .5em; | |
} | |
ol { | |
list-style: decimal outside; | |
margin: 0 0 1em 1.5em; | |
padding: 0; | |
} | |
ol ol { | |
list-style: upper-alpha outside; | |
margin-left: .5em; | |
} | |
ol ul { | |
list-style: disc outside; | |
margin-left: .5em; | |
} | |
li { | |
display: list-item; | |
} | |
address { | |
font-style: normal; | |
} | |
/* | |
--------------------------------------------------------------------------------------------- | |
4b. Global Classes | |
--------------------------------------------------------------------------------------------- | |
*/ | |
/* | |
--------------------------------------------------------------------------------------------- | |
4b.1 Readability. I believe I extracted this styles from the Developers section on | |
Readability.com - www.readability.com/developers/guidelines | |
If you have seen this styles elsewhere, please comment. | |
--------------------------------------------------------------------------------------------- | |
*/ | |
.entry {font-size: 1.3em;line-height: 1.5em;} | |
.entry article, | |
.entry aside, | |
.entry header, | |
.entry hgroup, | |
.entry footer {} | |
.entry time {} | |
.entry div {} | |
.entry section {} | |
.entry nav ol, | |
.entry nav ul {} | |
.hnews {/* do not style. */} | |
.hentry {} | |
.hentry figure {} | |
.hentry figcaption {} | |
.hentry .entry-title {} | |
.hentry .entry-summary {} | |
.hentry .updated {} | |
.hentry .entry-content {} | |
.hentry .source-org {} | |
.hentry .vcard {} | |
.hentry .copyright {} | |
.hentry .byline {} | |
.hentry .author {} | |
/* | |
--------------------------------------------------------------------------------------------- | |
4c. Global Layouts | |
--------------------------------------------------------------------------------------------- | |
*/ | |
/* | |
--------------------------------------------------------------------------------------------- | |
4c.1 Grid. Perhaps something responsive, like unsemantic.com (it's just a grid) | |
or twitter bootstrap, or Foundation by Zurb. But just the grid, unless you need more. | |
Then skip this file and use all of their components. | |
Otherwise here is what I am using from the Unsemantic CSS Grid system: | |
If you don't need to support IE7 in your project, there are versions... with no extra code. | |
Responsive version for Mobile, Tablet, and Desktop breakpoints | |
- unsemantic-grid-responsive-tablet-no-ie7.css | |
--------------------------------------------------------------------------------------------- | |
*/ | |
/* ================================================================== */ | |
/* This file has a mobile-to-tablet, and tablet-to-desktop breakpoint */ | |
/* ================================================================== */ | |
@media screen and (max-width: 400px) { | |
@-ms-viewport { | |
width: 320px; | |
} | |
} | |
@media screen { | |
.clear { | |
clear: both; | |
display: block; | |
overflow: hidden; | |
visibility: hidden; | |
width: 0; | |
height: 0; | |
} | |
.grid-container:before, .clearfix:before, | |
.grid-container:after, | |
.clearfix:after { | |
content: "."; | |
display: block; | |
overflow: hidden; | |
visibility: hidden; | |
font-size: 0; | |
line-height: 0; | |
width: 0; | |
height: 0; | |
} | |
.grid-container:after, .clearfix:after { | |
clear: both; | |
} | |
.grid-container { | |
margin-left: auto; | |
margin-right: auto; | |
max-width: 1200px; | |
padding-left: 10px; | |
padding-right: 10px; | |
} | |
.grid-5, .mobile-grid-5, .tablet-grid-5, .grid-10, .mobile-grid-10, .tablet-grid-10, .grid-15, .mobile-grid-15, .tablet-grid-15, .grid-20, .mobile-grid-20, .tablet-grid-20, .grid-25, .mobile-grid-25, .tablet-grid-25, .grid-30, .mobile-grid-30, .tablet-grid-30, .grid-35, .mobile-grid-35, .tablet-grid-35, .grid-40, .mobile-grid-40, .tablet-grid-40, .grid-45, .mobile-grid-45, .tablet-grid-45, .grid-50, .mobile-grid-50, .tablet-grid-50, .grid-55, .mobile-grid-55, .tablet-grid-55, .grid-60, .mobile-grid-60, .tablet-grid-60, .grid-65, .mobile-grid-65, .tablet-grid-65, .grid-70, .mobile-grid-70, .tablet-grid-70, .grid-75, .mobile-grid-75, .tablet-grid-75, .grid-80, .mobile-grid-80, .tablet-grid-80, .grid-85, .mobile-grid-85, .tablet-grid-85, .grid-90, .mobile-grid-90, .tablet-grid-90, .grid-95, .mobile-grid-95, .tablet-grid-95, .grid-100, .mobile-grid-100, .tablet-grid-100, .grid-33, .mobile-grid-33, .tablet-grid-33, .grid-66, .mobile-grid-66, .tablet-grid-66 { | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
padding-left: 10px; | |
padding-right: 10px; | |
} | |
.grid-parent { | |
padding-left: 0; | |
padding-right: 0; | |
} | |
} | |
@media screen and (max-width: 767px) { | |
.mobile-grid-100:before, | |
.mobile-grid-100:after { | |
content: "."; | |
display: block; | |
overflow: hidden; | |
visibility: hidden; | |
font-size: 0; | |
line-height: 0; | |
width: 0; | |
height: 0; | |
} | |
.mobile-grid-100:after { | |
clear: both; | |
} | |
.mobile-push-5, | |
.mobile-pull-5, .mobile-push-10, | |
.mobile-pull-10, .mobile-push-15, | |
.mobile-pull-15, .mobile-push-20, | |
.mobile-pull-20, .mobile-push-25, | |
.mobile-pull-25, .mobile-push-30, | |
.mobile-pull-30, .mobile-push-35, | |
.mobile-pull-35, .mobile-push-40, | |
.mobile-pull-40, .mobile-push-45, | |
.mobile-pull-45, .mobile-push-50, | |
.mobile-pull-50, .mobile-push-55, | |
.mobile-pull-55, .mobile-push-60, | |
.mobile-pull-60, .mobile-push-65, | |
.mobile-pull-65, .mobile-push-70, | |
.mobile-pull-70, .mobile-push-75, | |
.mobile-pull-75, .mobile-push-80, | |
.mobile-pull-80, .mobile-push-85, | |
.mobile-pull-85, .mobile-push-90, | |
.mobile-pull-90, .mobile-push-95, | |
.mobile-pull-95, .mobile-push-33, | |
.mobile-pull-33, .mobile-push-66, | |
.mobile-pull-66 { | |
position: relative; | |
} | |
.hide-on-mobile { | |
display: none !important; | |
} | |
.mobile-grid-5 { | |
float: left; | |
width: 5%; | |
} | |
.mobile-prefix-5 { | |
margin-left: 5%; | |
} | |
.mobile-suffix-5 { | |
margin-right: 5%; | |
} | |
.mobile-push-5 { | |
left: 5%; | |
} | |
.mobile-pull-5 { | |
left: -5%; | |
} | |
.mobile-grid-10 { | |
float: left; | |
width: 10%; | |
} | |
.mobile-prefix-10 { | |
margin-left: 10%; | |
} | |
.mobile-suffix-10 { | |
margin-right: 10%; | |
} | |
.mobile-push-10 { | |
left: 10%; | |
} | |
.mobile-pull-10 { | |
left: -10%; | |
} | |
.mobile-grid-15 { | |
float: left; | |
width: 15%; | |
} | |
.mobile-prefix-15 { | |
margin-left: 15%; | |
} | |
.mobile-suffix-15 { | |
margin-right: 15%; | |
} | |
.mobile-push-15 { | |
left: 15%; | |
} | |
.mobile-pull-15 { | |
left: -15%; | |
} | |
.mobile-grid-20 { | |
float: left; | |
width: 20%; | |
} | |
.mobile-prefix-20 { | |
margin-left: 20%; | |
} | |
.mobile-suffix-20 { | |
margin-right: 20%; | |
} | |
.mobile-push-20 { | |
left: 20%; | |
} | |
.mobile-pull-20 { | |
left: -20%; | |
} | |
.mobile-grid-25 { | |
float: left; | |
width: 25%; | |
} | |
.mobile-prefix-25 { | |
margin-left: 25%; | |
} | |
.mobile-suffix-25 { | |
margin-right: 25%; | |
} | |
.mobile-push-25 { | |
left: 25%; | |
} | |
.mobile-pull-25 { | |
left: -25%; | |
} | |
.mobile-grid-30 { | |
float: left; | |
width: 30%; | |
} | |
.mobile-prefix-30 { | |
margin-left: 30%; | |
} | |
.mobile-suffix-30 { | |
margin-right: 30%; | |
} | |
.mobile-push-30 { | |
left: 30%; | |
} | |
.mobile-pull-30 { | |
left: -30%; | |
} | |
.mobile-grid-35 { | |
float: left; | |
width: 35%; | |
} | |
.mobile-prefix-35 { | |
margin-left: 35%; | |
} | |
.mobile-suffix-35 { | |
margin-right: 35%; | |
} | |
.mobile-push-35 { | |
left: 35%; | |
} | |
.mobile-pull-35 { | |
left: -35%; | |
} | |
.mobile-grid-40 { | |
float: left; | |
width: 40%; | |
} | |
.mobile-prefix-40 { | |
margin-left: 40%; | |
} | |
.mobile-suffix-40 { | |
margin-right: 40%; | |
} | |
.mobile-push-40 { | |
left: 40%; | |
} | |
.mobile-pull-40 { | |
left: -40%; | |
} | |
.mobile-grid-45 { | |
float: left; | |
width: 45%; | |
} | |
.mobile-prefix-45 { | |
margin-left: 45%; | |
} | |
.mobile-suffix-45 { | |
margin-right: 45%; | |
} | |
.mobile-push-45 { | |
left: 45%; | |
} | |
.mobile-pull-45 { | |
left: -45%; | |
} | |
.mobile-grid-50 { | |
float: left; | |
width: 50%; | |
} | |
.mobile-prefix-50 { | |
margin-left: 50%; | |
} | |
.mobile-suffix-50 { | |
margin-right: 50%; | |
} | |
.mobile-push-50 { | |
left: 50%; | |
} | |
.mobile-pull-50 { | |
left: -50%; | |
} | |
.mobile-grid-55 { | |
float: left; | |
width: 55%; | |
} | |
.mobile-prefix-55 { | |
margin-left: 55%; | |
} | |
.mobile-suffix-55 { | |
margin-right: 55%; | |
} | |
.mobile-push-55 { | |
left: 55%; | |
} | |
.mobile-pull-55 { | |
left: -55%; | |
} | |
.mobile-grid-60 { | |
float: left; | |
width: 60%; | |
} | |
.mobile-prefix-60 { | |
margin-left: 60%; | |
} | |
.mobile-suffix-60 { | |
margin-right: 60%; | |
} | |
.mobile-push-60 { | |
left: 60%; | |
} | |
.mobile-pull-60 { | |
left: -60%; | |
} | |
.mobile-grid-65 { | |
float: left; | |
width: 65%; | |
} | |
.mobile-prefix-65 { | |
margin-left: 65%; | |
} | |
.mobile-suffix-65 { | |
margin-right: 65%; | |
} | |
.mobile-push-65 { | |
left: 65%; | |
} | |
.mobile-pull-65 { | |
left: -65%; | |
} | |
.mobile-grid-70 { | |
float: left; | |
width: 70%; | |
} | |
.mobile-prefix-70 { | |
margin-left: 70%; | |
} | |
.mobile-suffix-70 { | |
margin-right: 70%; | |
} | |
.mobile-push-70 { | |
left: 70%; | |
} | |
.mobile-pull-70 { | |
left: -70%; | |
} | |
.mobile-grid-75 { | |
float: left; | |
width: 75%; | |
} | |
.mobile-prefix-75 { | |
margin-left: 75%; | |
} | |
.mobile-suffix-75 { | |
margin-right: 75%; | |
} | |
.mobile-push-75 { | |
left: 75%; | |
} | |
.mobile-pull-75 { | |
left: -75%; | |
} | |
.mobile-grid-80 { | |
float: left; | |
width: 80%; | |
} | |
.mobile-prefix-80 { | |
margin-left: 80%; | |
} | |
.mobile-suffix-80 { | |
margin-right: 80%; | |
} | |
.mobile-push-80 { | |
left: 80%; | |
} | |
.mobile-pull-80 { | |
left: -80%; | |
} | |
.mobile-grid-85 { | |
float: left; | |
width: 85%; | |
} | |
.mobile-prefix-85 { | |
margin-left: 85%; | |
} | |
.mobile-suffix-85 { | |
margin-right: 85%; | |
} | |
.mobile-push-85 { | |
left: 85%; | |
} | |
.mobile-pull-85 { | |
left: -85%; | |
} | |
.mobile-grid-90 { | |
float: left; | |
width: 90%; | |
} | |
.mobile-prefix-90 { | |
margin-left: 90%; | |
} | |
.mobile-suffix-90 { | |
margin-right: 90%; | |
} | |
.mobile-push-90 { | |
left: 90%; | |
} | |
.mobile-pull-90 { | |
left: -90%; | |
} | |
.mobile-grid-95 { | |
float: left; | |
width: 95%; | |
} | |
.mobile-prefix-95 { | |
margin-left: 95%; | |
} | |
.mobile-suffix-95 { | |
margin-right: 95%; | |
} | |
.mobile-push-95 { | |
left: 95%; | |
} | |
.mobile-pull-95 { | |
left: -95%; | |
} | |
.mobile-grid-33 { | |
float: left; | |
width: 33.33333%; | |
} | |
.mobile-prefix-33 { | |
margin-left: 33.33333%; | |
} | |
.mobile-suffix-33 { | |
margin-right: 33.33333%; | |
} | |
.mobile-push-33 { | |
left: 33.33333%; | |
} | |
.mobile-pull-33 { | |
left: -33.33333%; | |
} | |
.mobile-grid-66 { | |
float: left; | |
width: 66.66667%; | |
} | |
.mobile-prefix-66 { | |
margin-left: 66.66667%; | |
} | |
.mobile-suffix-66 { | |
margin-right: 66.66667%; | |
} | |
.mobile-push-66 { | |
left: 66.66667%; | |
} | |
.mobile-pull-66 { | |
left: -66.66667%; | |
} | |
.mobile-grid-100 { | |
clear: both; | |
width: 100%; | |
} | |
} | |
@media screen and (min-width: 768px) and (max-width: 1024px) { | |
.tablet-grid-100:before, | |
.tablet-grid-100:after { | |
content: "."; | |
display: block; | |
overflow: hidden; | |
visibility: hidden; | |
font-size: 0; | |
line-height: 0; | |
width: 0; | |
height: 0; | |
} | |
.tablet-grid-100:after { | |
clear: both; | |
} | |
.tablet-push-5, | |
.tablet-pull-5, .tablet-push-10, | |
.tablet-pull-10, .tablet-push-15, | |
.tablet-pull-15, .tablet-push-20, | |
.tablet-pull-20, .tablet-push-25, | |
.tablet-pull-25, .tablet-push-30, | |
.tablet-pull-30, .tablet-push-35, | |
.tablet-pull-35, .tablet-push-40, | |
.tablet-pull-40, .tablet-push-45, | |
.tablet-pull-45, .tablet-push-50, | |
.tablet-pull-50, .tablet-push-55, | |
.tablet-pull-55, .tablet-push-60, | |
.tablet-pull-60, .tablet-push-65, | |
.tablet-pull-65, .tablet-push-70, | |
.tablet-pull-70, .tablet-push-75, | |
.tablet-pull-75, .tablet-push-80, | |
.tablet-pull-80, .tablet-push-85, | |
.tablet-pull-85, .tablet-push-90, | |
.tablet-pull-90, .tablet-push-95, | |
.tablet-pull-95, .tablet-push-33, | |
.tablet-pull-33, .tablet-push-66, | |
.tablet-pull-66 { | |
position: relative; | |
} | |
.hide-on-tablet { | |
display: none !important; | |
} | |
.tablet-grid-5 { | |
float: left; | |
width: 5%; | |
} | |
.tablet-prefix-5 { | |
margin-left: 5%; | |
} | |
.tablet-suffix-5 { | |
margin-right: 5%; | |
} | |
.tablet-push-5 { | |
left: 5%; | |
} | |
.tablet-pull-5 { | |
left: -5%; | |
} | |
.tablet-grid-10 { | |
float: left; | |
width: 10%; | |
} | |
.tablet-prefix-10 { | |
margin-left: 10%; | |
} | |
.tablet-suffix-10 { | |
margin-right: 10%; | |
} | |
.tablet-push-10 { | |
left: 10%; | |
} | |
.tablet-pull-10 { | |
left: -10%; | |
} | |
.tablet-grid-15 { | |
float: left; | |
width: 15%; | |
} | |
.tablet-prefix-15 { | |
margin-left: 15%; | |
} | |
.tablet-suffix-15 { | |
margin-right: 15%; | |
} | |
.tablet-push-15 { | |
left: 15%; | |
} | |
.tablet-pull-15 { | |
left: -15%; | |
} | |
.tablet-grid-20 { | |
float: left; | |
width: 20%; | |
} | |
.tablet-prefix-20 { | |
margin-left: 20%; | |
} | |
.tablet-suffix-20 { | |
margin-right: 20%; | |
} | |
.tablet-push-20 { | |
left: 20%; | |
} | |
.tablet-pull-20 { | |
left: -20%; | |
} | |
.tablet-grid-25 { | |
float: left; | |
width: 25%; | |
} | |
.tablet-prefix-25 { | |
margin-left: 25%; | |
} | |
.tablet-suffix-25 { | |
margin-right: 25%; | |
} | |
.tablet-push-25 { | |
left: 25%; | |
} | |
.tablet-pull-25 { | |
left: -25%; | |
} | |
.tablet-grid-30 { | |
float: left; | |
width: 30%; | |
} | |
.tablet-prefix-30 { | |
margin-left: 30%; | |
} | |
.tablet-suffix-30 { | |
margin-right: 30%; | |
} | |
.tablet-push-30 { | |
left: 30%; | |
} | |
.tablet-pull-30 { | |
left: -30%; | |
} | |
.tablet-grid-35 { | |
float: left; | |
width: 35%; | |
} | |
.tablet-prefix-35 { | |
margin-left: 35%; | |
} | |
.tablet-suffix-35 { | |
margin-right: 35%; | |
} | |
.tablet-push-35 { | |
left: 35%; | |
} | |
.tablet-pull-35 { | |
left: -35%; | |
} | |
.tablet-grid-40 { | |
float: left; | |
width: 40%; | |
} | |
.tablet-prefix-40 { | |
margin-left: 40%; | |
} | |
.tablet-suffix-40 { | |
margin-right: 40%; | |
} | |
.tablet-push-40 { | |
left: 40%; | |
} | |
.tablet-pull-40 { | |
left: -40%; | |
} | |
.tablet-grid-45 { | |
float: left; | |
width: 45%; | |
} | |
.tablet-prefix-45 { | |
margin-left: 45%; | |
} | |
.tablet-suffix-45 { | |
margin-right: 45%; | |
} | |
.tablet-push-45 { | |
left: 45%; | |
} | |
.tablet-pull-45 { | |
left: -45%; | |
} | |
.tablet-grid-50 { | |
float: left; | |
width: 50%; | |
} | |
.tablet-prefix-50 { | |
margin-left: 50%; | |
} | |
.tablet-suffix-50 { | |
margin-right: 50%; | |
} | |
.tablet-push-50 { | |
left: 50%; | |
} | |
.tablet-pull-50 { | |
left: -50%; | |
} | |
.tablet-grid-55 { | |
float: left; | |
width: 55%; | |
} | |
.tablet-prefix-55 { | |
margin-left: 55%; | |
} | |
.tablet-suffix-55 { | |
margin-right: 55%; | |
} | |
.tablet-push-55 { | |
left: 55%; | |
} | |
.tablet-pull-55 { | |
left: -55%; | |
} | |
.tablet-grid-60 { | |
float: left; | |
width: 60%; | |
} | |
.tablet-prefix-60 { | |
margin-left: 60%; | |
} | |
.tablet-suffix-60 { | |
margin-right: 60%; | |
} | |
.tablet-push-60 { | |
left: 60%; | |
} | |
.tablet-pull-60 { | |
left: -60%; | |
} | |
.tablet-grid-65 { | |
float: left; | |
width: 65%; | |
} | |
.tablet-prefix-65 { | |
margin-left: 65%; | |
} | |
.tablet-suffix-65 { | |
margin-right: 65%; | |
} | |
.tablet-push-65 { | |
left: 65%; | |
} | |
.tablet-pull-65 { | |
left: -65%; | |
} | |
.tablet-grid-70 { | |
float: left; | |
width: 70%; | |
} | |
.tablet-prefix-70 { | |
margin-left: 70%; | |
} | |
.tablet-suffix-70 { | |
margin-right: 70%; | |
} | |
.tablet-push-70 { | |
left: 70%; | |
} | |
.tablet-pull-70 { | |
left: -70%; | |
} | |
.tablet-grid-75 { | |
float: left; | |
width: 75%; | |
} | |
.tablet-prefix-75 { | |
margin-left: 75%; | |
} | |
.tablet-suffix-75 { | |
margin-right: 75%; | |
} | |
.tablet-push-75 { | |
left: 75%; | |
} | |
.tablet-pull-75 { | |
left: -75%; | |
} | |
.tablet-grid-80 { | |
float: left; | |
width: 80%; | |
} | |
.tablet-prefix-80 { | |
margin-left: 80%; | |
} | |
.tablet-suffix-80 { | |
margin-right: 80%; | |
} | |
.tablet-push-80 { | |
left: 80%; | |
} | |
.tablet-pull-80 { | |
left: -80%; | |
} | |
.tablet-grid-85 { | |
float: left; | |
width: 85%; | |
} | |
.tablet-prefix-85 { | |
margin-left: 85%; | |
} | |
.tablet-suffix-85 { | |
margin-right: 85%; | |
} | |
.tablet-push-85 { | |
left: 85%; | |
} | |
.tablet-pull-85 { | |
left: -85%; | |
} | |
.tablet-grid-90 { | |
float: left; | |
width: 90%; | |
} | |
.tablet-prefix-90 { | |
margin-left: 90%; | |
} | |
.tablet-suffix-90 { | |
margin-right: 90%; | |
} | |
.tablet-push-90 { | |
left: 90%; | |
} | |
.tablet-pull-90 { | |
left: -90%; | |
} | |
.tablet-grid-95 { | |
float: left; | |
width: 95%; | |
} | |
.tablet-prefix-95 { | |
margin-left: 95%; | |
} | |
.tablet-suffix-95 { | |
margin-right: 95%; | |
} | |
.tablet-push-95 { | |
left: 95%; | |
} | |
.tablet-pull-95 { | |
left: -95%; | |
} | |
.tablet-grid-33 { | |
float: left; | |
width: 33.33333%; | |
} | |
.tablet-prefix-33 { | |
margin-left: 33.33333%; | |
} | |
.tablet-suffix-33 { | |
margin-right: 33.33333%; | |
} | |
.tablet-push-33 { | |
left: 33.33333%; | |
} | |
.tablet-pull-33 { | |
left: -33.33333%; | |
} | |
.tablet-grid-66 { | |
float: left; | |
width: 66.66667%; | |
} | |
.tablet-prefix-66 { | |
margin-left: 66.66667%; | |
} | |
.tablet-suffix-66 { | |
margin-right: 66.66667%; | |
} | |
.tablet-push-66 { | |
left: 66.66667%; | |
} | |
.tablet-pull-66 { | |
left: -66.66667%; | |
} | |
.tablet-grid-100 { | |
clear: both; | |
width: 100%; | |
} | |
} | |
@media screen and (min-width: 1025px) { | |
.grid-100:before, | |
.grid-100:after { | |
content: "."; | |
display: block; | |
overflow: hidden; | |
visibility: hidden; | |
font-size: 0; | |
line-height: 0; | |
width: 0; | |
height: 0; | |
} | |
.grid-100:after { | |
clear: both; | |
} | |
.push-5, | |
.pull-5, .push-10, | |
.pull-10, .push-15, | |
.pull-15, .push-20, | |
.pull-20, .push-25, | |
.pull-25, .push-30, | |
.pull-30, .push-35, | |
.pull-35, .push-40, | |
.pull-40, .push-45, | |
.pull-45, .push-50, | |
.pull-50, .push-55, | |
.pull-55, .push-60, | |
.pull-60, .push-65, | |
.pull-65, .push-70, | |
.pull-70, .push-75, | |
.pull-75, .push-80, | |
.pull-80, .push-85, | |
.pull-85, .push-90, | |
.pull-90, .push-95, | |
.pull-95, .push-33, | |
.pull-33, .push-66, | |
.pull-66 { | |
position: relative; | |
} | |
.hide-on-desktop { | |
display: none !important; | |
} | |
.grid-5 { | |
float: left; | |
width: 5%; | |
} | |
.prefix-5 { | |
margin-left: 5%; | |
} | |
.suffix-5 { | |
margin-right: 5%; | |
} | |
.push-5 { | |
left: 5%; | |
} | |
.pull-5 { | |
left: -5%; | |
} | |
.grid-10 { | |
float: left; | |
width: 10%; | |
} | |
.prefix-10 { | |
margin-left: 10%; | |
} | |
.suffix-10 { | |
margin-right: 10%; | |
} | |
.push-10 { | |
left: 10%; | |
} | |
.pull-10 { | |
left: -10%; | |
} | |
.grid-15 { | |
float: left; | |
width: 15%; | |
} | |
.prefix-15 { | |
margin-left: 15%; | |
} | |
.suffix-15 { | |
margin-right: 15%; | |
} | |
.push-15 { | |
left: 15%; | |
} | |
.pull-15 { | |
left: -15%; | |
} | |
.grid-20 { | |
float: left; | |
width: 20%; | |
} | |
.prefix-20 { | |
margin-left: 20%; | |
} | |
.suffix-20 { | |
margin-right: 20%; | |
} | |
.push-20 { | |
left: 20%; | |
} | |
.pull-20 { | |
left: -20%; | |
} | |
.grid-25 { | |
float: left; | |
width: 25%; | |
} | |
.prefix-25 { | |
margin-left: 25%; | |
} | |
.suffix-25 { | |
margin-right: 25%; | |
} | |
.push-25 { | |
left: 25%; | |
} | |
.pull-25 { | |
left: -25%; | |
} | |
.grid-30 { | |
float: left; | |
width: 30%; | |
} | |
.prefix-30 { | |
margin-left: 30%; | |
} | |
.suffix-30 { | |
margin-right: 30%; | |
} | |
.push-30 { | |
left: 30%; | |
} | |
.pull-30 { | |
left: -30%; | |
} | |
.grid-35 { | |
float: left; | |
width: 35%; | |
} | |
.prefix-35 { | |
margin-left: 35%; | |
} | |
.suffix-35 { | |
margin-right: 35%; | |
} | |
.push-35 { | |
left: 35%; | |
} | |
.pull-35 { | |
left: -35%; | |
} | |
.grid-40 { | |
float: left; | |
width: 40%; | |
} | |
.prefix-40 { | |
margin-left: 40%; | |
} | |
.suffix-40 { | |
margin-right: 40%; | |
} | |
.push-40 { | |
left: 40%; | |
} | |
.pull-40 { | |
left: -40%; | |
} | |
.grid-45 { | |
float: left; | |
width: 45%; | |
} | |
.prefix-45 { | |
margin-left: 45%; | |
} | |
.suffix-45 { | |
margin-right: 45%; | |
} | |
.push-45 { | |
left: 45%; | |
} | |
.pull-45 { | |
left: -45%; | |
} | |
.grid-50 { | |
float: left; | |
width: 50%; | |
} | |
.prefix-50 { | |
margin-left: 50%; | |
} | |
.suffix-50 { | |
margin-right: 50%; | |
} | |
.push-50 { | |
left: 50%; | |
} | |
.pull-50 { | |
left: -50%; | |
} | |
.grid-55 { | |
float: left; | |
width: 55%; | |
} | |
.prefix-55 { | |
margin-left: 55%; | |
} | |
.suffix-55 { | |
margin-right: 55%; | |
} | |
.push-55 { | |
left: 55%; | |
} | |
.pull-55 { | |
left: -55%; | |
} | |
.grid-60 { | |
float: left; | |
width: 60%; | |
} | |
.prefix-60 { | |
margin-left: 60%; | |
} | |
.suffix-60 { | |
margin-right: 60%; | |
} | |
.push-60 { | |
left: 60%; | |
} | |
.pull-60 { | |
left: -60%; | |
} | |
.grid-65 { | |
float: left; | |
width: 65%; | |
} | |
.prefix-65 { | |
margin-left: 65%; | |
} | |
.suffix-65 { | |
margin-right: 65%; | |
} | |
.push-65 { | |
left: 65%; | |
} | |
.pull-65 { | |
left: -65%; | |
} | |
.grid-70 { | |
float: left; | |
width: 70%; | |
} | |
.prefix-70 { | |
margin-left: 70%; | |
} | |
.suffix-70 { | |
margin-right: 70%; | |
} | |
.push-70 { | |
left: 70%; | |
} | |
.pull-70 { | |
left: -70%; | |
} | |
.grid-75 { | |
float: left; | |
width: 75%; | |
} | |
.prefix-75 { | |
margin-left: 75%; | |
} | |
.suffix-75 { | |
margin-right: 75%; | |
} | |
.push-75 { | |
left: 75%; | |
} | |
.pull-75 { | |
left: -75%; | |
} | |
.grid-80 { | |
float: left; | |
width: 80%; | |
} | |
.prefix-80 { | |
margin-left: 80%; | |
} | |
.suffix-80 { | |
margin-right: 80%; | |
} | |
.push-80 { | |
left: 80%; | |
} | |
.pull-80 { | |
left: -80%; | |
} | |
.grid-85 { | |
float: left; | |
width: 85%; | |
} | |
.prefix-85 { | |
margin-left: 85%; | |
} | |
.suffix-85 { | |
margin-right: 85%; | |
} | |
.push-85 { | |
left: 85%; | |
} | |
.pull-85 { | |
left: -85%; | |
} | |
.grid-90 { | |
float: left; | |
width: 90%; | |
} | |
.prefix-90 { | |
margin-left: 90%; | |
} | |
.suffix-90 { | |
margin-right: 90%; | |
} | |
.push-90 { | |
left: 90%; | |
} | |
.pull-90 { | |
left: -90%; | |
} | |
.grid-95 { | |
float: left; | |
width: 95%; | |
} | |
.prefix-95 { | |
margin-left: 95%; | |
} | |
.suffix-95 { | |
margin-right: 95%; | |
} | |
.push-95 { | |
left: 95%; | |
} | |
.pull-95 { | |
left: -95%; | |
} | |
.grid-33 { | |
float: left; | |
width: 33.33333%; | |
} | |
.prefix-33 { | |
margin-left: 33.33333%; | |
} | |
.suffix-33 { | |
margin-right: 33.33333%; | |
} | |
.push-33 { | |
left: 33.33333%; | |
} | |
.pull-33 { | |
left: -33.33333%; | |
} | |
.grid-66 { | |
float: left; | |
width: 66.66667%; | |
} | |
.prefix-66 { | |
margin-left: 66.66667%; | |
} | |
.suffix-66 { | |
margin-right: 66.66667%; | |
} | |
.push-66 { | |
left: 66.66667%; | |
} | |
.pull-66 { | |
left: -66.66667%; | |
} | |
.grid-100 { | |
clear: both; | |
width: 100%; | |
} | |
} | |
/* | |
--------------------------------------------------------------------------------------------- | |
4c.2 Header | |
--------------------------------------------------------------------------------------------- | |
*/ | |
[role="banner"], | |
header#header { | |
} | |
/* | |
--------------------------------------------------------------------------------------------- | |
4c.2 Navigation | |
--------------------------------------------------------------------------------------------- | |
*/ | |
[role="navigation"], | |
nav#primary-navigation { | |
} | |
/* For a horizontal navigation */ | |
nav ul, | |
nav ol { | |
display: inline-block; | |
*display: inline; | |
list-style: none; | |
list-style-image: none; | |
} | |
/* | |
--------------------------------------------------------------------------------------------- | |
4c.3 Search | |
--------------------------------------------------------------------------------------------- | |
*/ | |
[role="search"], | |
#search { | |
} | |
/* | |
--------------------------------------------------------------------------------------------- | |
4c.4 Main | |
--------------------------------------------------------------------------------------------- | |
*/ | |
[role="main"], | |
#main { | |
} | |
/* | |
--------------------------------------------------------------------------------------------- | |
4c.5 Footer | |
--------------------------------------------------------------------------------------------- | |
*/ | |
[role="contentinfo"], | |
footer#footer { | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello
Would love feedback on this stylesheet please.