| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /******************************************************************
- Bones Normalize Stylesheet
- Designed by Eddie Machado
- http://themble.com/bones
- eddie@themble.com
- Special Thanks to:
- Paul Irish, Divya Manian & the HTML5 Boilerplate
- @necolas for normalize.css and other inspirations
- Andy Clarke & the 320 & Up Extension
- Yoast for some WP functions & optimization ideas
- Andrew Rogers for code optimization
- David Dellanave for speed & code optimization
- and several other developers. :)
- I ADVISE AGAINST EDITING THIS FILES.
- ******************************************************************/
- /******************************************************************
- GENERAL NORMALIZE
- ******************************************************************/
- 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]), [hidden] { display: none; }
- /** Base Styles **/
- 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: sans-serif; color: #333; }
- /** IE Fixes **/
- img { border: 0; -ms-interpolation-mode: bicubic; }
- svg:not(:root) { overflow: hidden; }
- figure { margin: 0; }
- /** Links **/
- a:focus { outline: thin dotted; }
- a:hover, a:active { outline: 0; }
- /** Typography **/
- p { -webkit-hyphens: auto; -moz-hyphens: auto; -epub-hyphens: auto; hyphens: auto; }
- abbr[title] { border-bottom: 1px dotted; }
- b, strong, .strong { font-weight: bold; }
- dfn, em, .em { font-style: italic; }
- small, .small, sub, sup { font-size: 85%; }
- ins, .ins { background: #ff9; color: #000; text-decoration: none; }
- mark, .mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }
- hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
- 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; }
- blockquote { margin: 1em 40px; }
- q { quotes: none; }
- q:before, q:after { content: ""; content: none; }
- ul, ol { margin: 1.231em 0; padding: 0; }
- dd { margin: 0; }
- nav ul, nav ol, .widget ol, .widget ul, .commentlist { list-style: none; margin: 0; }
- /* Position subscript and superscript content without affecting line-height: gist.github.com/413930 */
- sub, sup { line-height: 0; position: relative; vertical-align: baseline; }
- sup { top: -0.5em; }
- sub { bottom: -0.25em; }
- /** Forms **/
- form, fieldset, form ul, form ol, fieldset ol, fieldset ul { margin: 0; border: 0; }
- 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; }
- 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; }
- /* Colors for form validity */
- input:invalid, textarea:invalid { background-color: #f0dddd; }
- /** Tables **/
- table { border-collapse: collapse; border-spacing: 0; }
- /** Image Replacement **/
- .ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }
- .ir br { display: none; }
- /** Hidden & Invisiblity **/
- .hidden { display: none; visibility: hidden; }
- .visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
- .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
- .invisible { visibility: hidden; }
- /* Contain floats: nicolasgallagher.com/micro-clearfix-hack/ */
- .clearfix:before, .clearfix:after, nav[role=navigation] .menu ul:before, nav[role=navigation] .menu ul:after { content: ""; display: table; }
- .clearfix:after, nav[role=navigation] .menu ul:after { clear: both; }
- .clearfix, nav[role=navigation] .menu ul { zoom: 1; }
- /* wordpress junk */
- .wp-smiley { margin: 0 !important; max-height: 1em; }
-
- /******************************************************************
- PRINT STYLESHEET
- ******************************************************************/
- @media print { * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } a, a:visited { color: #444 !important; 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: ""; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } thead { display: table-header-group; } 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; }
- }
|