├── CNAME ├── javascripts ├── main.js ├── headsmart.min.js └── modernizr.js ├── images ├── hr.jpg ├── hr-2x.jpg ├── bg-ramp.jpg ├── chevron.png ├── octocat.png ├── shield.png ├── site-2.png ├── chevron-2x.png ├── octocat-2x.png ├── footer-ramp.jpg ├── fork-sprite.png ├── blockquote-gfx.png ├── download-sprite.png ├── shield-fallback.png ├── blockquote-gfx-2x.png ├── download-fallback-bg.png ├── ribbon-tail-sprite.png ├── ribbon-tail-sprite-2x.png ├── small-ribbon-tail-sprite.png └── small-ribbon-tail-sprite-2x.png ├── fonts ├── opensans-bold-webfont.eot ├── opensans-bold-webfont.ttf ├── opensans-bold-webfont.woff ├── opensans-italic-webfont.eot ├── opensans-italic-webfont.ttf ├── opensans-extrabold-webfont.eot ├── opensans-extrabold-webfont.ttf ├── opensans-italic-webfont.woff ├── opensans-regular-webfont.eot ├── opensans-regular-webfont.ttf ├── opensans-regular-webfont.woff ├── opensans-bolditalic-webfont.eot ├── opensans-bolditalic-webfont.ttf ├── opensans-bolditalic-webfont.woff ├── opensans-extrabold-webfont.woff ├── opensans-bold-webfont.svg ├── opensans-extrabold-webfont.svg └── opensans-regular-webfont.svg ├── stylesheets ├── core.css ├── print.css ├── github-light.css ├── non-screen.css ├── mobile.css └── screen.css ├── params.json └── index.html /CNAME: -------------------------------------------------------------------------------- 1 | halfmast.ca 2 | -------------------------------------------------------------------------------- /javascripts/main.js: -------------------------------------------------------------------------------- 1 | console.log('This would be the main JS file.'); 2 | -------------------------------------------------------------------------------- /images/hr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/images/hr.jpg -------------------------------------------------------------------------------- /images/hr-2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/images/hr-2x.jpg -------------------------------------------------------------------------------- /images/bg-ramp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/images/bg-ramp.jpg -------------------------------------------------------------------------------- /images/chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/images/chevron.png -------------------------------------------------------------------------------- /images/octocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/images/octocat.png -------------------------------------------------------------------------------- /images/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/images/shield.png -------------------------------------------------------------------------------- /images/site-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/images/site-2.png -------------------------------------------------------------------------------- /images/chevron-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/images/chevron-2x.png -------------------------------------------------------------------------------- /images/octocat-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/images/octocat-2x.png -------------------------------------------------------------------------------- /images/footer-ramp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/images/footer-ramp.jpg -------------------------------------------------------------------------------- /images/fork-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/images/fork-sprite.png -------------------------------------------------------------------------------- /images/blockquote-gfx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/images/blockquote-gfx.png -------------------------------------------------------------------------------- /images/download-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/images/download-sprite.png -------------------------------------------------------------------------------- /images/shield-fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/images/shield-fallback.png -------------------------------------------------------------------------------- /images/blockquote-gfx-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/images/blockquote-gfx-2x.png -------------------------------------------------------------------------------- /fonts/opensans-bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/fonts/opensans-bold-webfont.eot -------------------------------------------------------------------------------- /fonts/opensans-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/fonts/opensans-bold-webfont.ttf -------------------------------------------------------------------------------- /images/download-fallback-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/images/download-fallback-bg.png -------------------------------------------------------------------------------- /images/ribbon-tail-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/images/ribbon-tail-sprite.png -------------------------------------------------------------------------------- /fonts/opensans-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/fonts/opensans-bold-webfont.woff -------------------------------------------------------------------------------- /fonts/opensans-italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/fonts/opensans-italic-webfont.eot -------------------------------------------------------------------------------- /fonts/opensans-italic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/fonts/opensans-italic-webfont.ttf -------------------------------------------------------------------------------- /images/ribbon-tail-sprite-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/images/ribbon-tail-sprite-2x.png -------------------------------------------------------------------------------- /fonts/opensans-extrabold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/fonts/opensans-extrabold-webfont.eot -------------------------------------------------------------------------------- /fonts/opensans-extrabold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/fonts/opensans-extrabold-webfont.ttf -------------------------------------------------------------------------------- /fonts/opensans-italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/fonts/opensans-italic-webfont.woff -------------------------------------------------------------------------------- /fonts/opensans-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/fonts/opensans-regular-webfont.eot -------------------------------------------------------------------------------- /fonts/opensans-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/fonts/opensans-regular-webfont.ttf -------------------------------------------------------------------------------- /fonts/opensans-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/fonts/opensans-regular-webfont.woff -------------------------------------------------------------------------------- /images/small-ribbon-tail-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/images/small-ribbon-tail-sprite.png -------------------------------------------------------------------------------- /fonts/opensans-bolditalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/fonts/opensans-bolditalic-webfont.eot -------------------------------------------------------------------------------- /fonts/opensans-bolditalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/fonts/opensans-bolditalic-webfont.ttf -------------------------------------------------------------------------------- /fonts/opensans-bolditalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/fonts/opensans-bolditalic-webfont.woff -------------------------------------------------------------------------------- /fonts/opensans-extrabold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/fonts/opensans-extrabold-webfont.woff -------------------------------------------------------------------------------- /images/small-ribbon-tail-sprite-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orenmazor/halfmast.ca/gh-pages/images/small-ribbon-tail-sprite-2x.png -------------------------------------------------------------------------------- /stylesheets/core.css: -------------------------------------------------------------------------------- 1 | @import url("screen.css"); 2 | @import url("non-screen.css") handheld; 3 | @import url("non-screen.css") only screen and (max-device-width:640px); -------------------------------------------------------------------------------- /javascripts/headsmart.min.js: -------------------------------------------------------------------------------- 1 | (function(a){a.fn.headsmart=function(){var c=a(this);d();function d(){var e=[],g="";if(b("h1")){e.push("h1")}if(b("h2")){e.push("h2")}if(b("h3")){e.push("h3")}if(b("h4")){e.push("h4")}if(b("h5")){e.push("h5")}if(b("h6")){e.push("h6")}for(var f=0;f0)?true:false}}})(jQuery); -------------------------------------------------------------------------------- /stylesheets/print.css: -------------------------------------------------------------------------------- 1 | * { 2 | background: none !important; 3 | color: #333 !important; 4 | } 5 | 6 | h1,h2,h3,h4,h5,h6 { 7 | color: #7c334f !important; 8 | } 9 | 10 | a { 11 | color: #417090 !important; 12 | } 13 | 14 | #main_content > .header-level-1:first-child, 15 | #main_content > .header-level-2:first-child, 16 | #main_content > .header-level-3:first-child, 17 | #main_content > .header-level-4:first-child, 18 | #main_content > .header-level-5:first-child, 19 | #main_content > .header-level-6:first-child { 20 | margin-top: 10px !important; 21 | } 22 | 23 | #forkme_banner, 24 | #downloads, 25 | .left-tail, 26 | .right-tail 27 | { 28 | display: none !important; 29 | 30 | } 31 | 32 | .ribbon-inner,.ribbon-outer { 33 | border: 0 !important; 34 | } 35 | -------------------------------------------------------------------------------- /params.json: -------------------------------------------------------------------------------- 1 | {"name":"Halfmast.ca","tagline":"","body":"### Welcome to GitHub Pages.\r\nThis automatic page generator is the easiest way to create beautiful pages for all of your projects. Author your page content here [using GitHub Flavored Markdown](https://guides.github.com/features/mastering-markdown/), select a template crafted by a designer, and publish. After your page is generated, you can check out the new `gh-pages` branch locally. If you’re using GitHub Desktop, simply sync your repository and you’ll see the new branch.\r\n\r\n### Designer Templates\r\nWe’ve crafted some handsome templates for you to use. Go ahead and click 'Continue to layouts' to browse through them. You can easily go back to edit your page before publishing. After publishing your page, you can revisit the page generator and switch to another theme. Your Page content will be preserved.\r\n\r\n### Creating pages manually\r\nIf you prefer to not use the automatic generator, push a branch named `gh-pages` to your repository to create a page manually. In addition to supporting regular HTML content, GitHub Pages support Jekyll, a simple, blog aware static site generator. Jekyll makes it easy to create site-wide headers and footers without having to copy them across every page. It also offers intelligent blog support and other advanced templating features.\r\n\r\n### Authors and Contributors\r\nYou can @mention a GitHub username to generate a link to their profile. The resulting `` element will link to the contributor’s GitHub Profile. For example: In 2007, Chris Wanstrath (@defunkt), PJ Hyett (@pjhyett), and Tom Preston-Werner (@mojombo) founded GitHub.\r\n\r\n### Support or Contact\r\nHaving trouble with Pages? Check out our [documentation](https://help.github.com/pages) or [contact support](https://github.com/contact) and we’ll help you sort it out.\r\n","google":"","note":"Don't delete this file! It's used internally to help with page regeneration."} -------------------------------------------------------------------------------- /stylesheets/github-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2014 GitHub Inc. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | 16 | */ 17 | 18 | .pl-c /* comment */ { 19 | color: #969896; 20 | } 21 | 22 | .pl-c1 /* constant, markup.raw, meta.diff.header, meta.module-reference, meta.property-name, support, support.constant, support.variable, variable.other.constant */, 23 | .pl-s .pl-v /* string variable */ { 24 | color: #0086b3; 25 | } 26 | 27 | .pl-e /* entity */, 28 | .pl-en /* entity.name */ { 29 | color: #795da3; 30 | } 31 | 32 | .pl-s .pl-s1 /* string source */, 33 | .pl-smi /* storage.modifier.import, storage.modifier.package, storage.type.java, variable.other, variable.parameter.function */ { 34 | color: #333; 35 | } 36 | 37 | .pl-ent /* entity.name.tag */ { 38 | color: #63a35c; 39 | } 40 | 41 | .pl-k /* keyword, storage, storage.type */ { 42 | color: #a71d5d; 43 | } 44 | 45 | .pl-pds /* punctuation.definition.string, string.regexp.character-class */, 46 | .pl-s /* string */, 47 | .pl-s .pl-pse .pl-s1 /* string punctuation.section.embedded source */, 48 | .pl-sr /* string.regexp */, 49 | .pl-sr .pl-cce /* string.regexp constant.character.escape */, 50 | .pl-sr .pl-sra /* string.regexp string.regexp.arbitrary-repitition */, 51 | .pl-sr .pl-sre /* string.regexp source.ruby.embedded */ { 52 | color: #183691; 53 | } 54 | 55 | .pl-v /* variable */ { 56 | color: #ed6a43; 57 | } 58 | 59 | .pl-id /* invalid.deprecated */ { 60 | color: #b52a1d; 61 | } 62 | 63 | .pl-ii /* invalid.illegal */ { 64 | background-color: #b52a1d; 65 | color: #f8f8f8; 66 | } 67 | 68 | .pl-sr .pl-cce /* string.regexp constant.character.escape */ { 69 | color: #63a35c; 70 | font-weight: bold; 71 | } 72 | 73 | .pl-ml /* markup.list */ { 74 | color: #693a17; 75 | } 76 | 77 | .pl-mh /* markup.heading */, 78 | .pl-mh .pl-en /* markup.heading entity.name */, 79 | .pl-ms /* meta.separator */ { 80 | color: #1d3e81; 81 | font-weight: bold; 82 | } 83 | 84 | .pl-mq /* markup.quote */ { 85 | color: #008080; 86 | } 87 | 88 | .pl-mi /* markup.italic */ { 89 | color: #333; 90 | font-style: italic; 91 | } 92 | 93 | .pl-mb /* markup.bold */ { 94 | color: #333; 95 | font-weight: bold; 96 | } 97 | 98 | .pl-md /* markup.deleted, meta.diff.header.from-file */ { 99 | background-color: #ffecec; 100 | color: #bd2c00; 101 | } 102 | 103 | .pl-mi1 /* markup.inserted, meta.diff.header.to-file */ { 104 | background-color: #eaffea; 105 | color: #55a532; 106 | } 107 | 108 | .pl-mdr /* meta.diff.range */ { 109 | color: #795da3; 110 | font-weight: bold; 111 | } 112 | 113 | .pl-mo /* meta.output */ { 114 | color: #1d3e81; 115 | } 116 | 117 | -------------------------------------------------------------------------------- /stylesheets/non-screen.css: -------------------------------------------------------------------------------- 1 | a#forkme_banner { 2 | display: none; 3 | } 4 | 5 | div.shell { 6 | width: 640px; 7 | } 8 | 9 | 10 | header { 11 | max-width:640px; 12 | margin: 0; 13 | top: 51px; 14 | } 15 | 16 | header span.ribbon-inner { 17 | border: 8px solid #7c334f; 18 | padding: 6px; 19 | } 20 | 21 | header span.left-tail, header span.right-tail { 22 | width: 19px; 23 | height: 10px; 24 | background: transparent url(../images/ribbon-tail-sprite-2x.png) 0 0 no-repeat; 25 | bottom: -10px; 26 | } 27 | 28 | header span.left-tail { 29 | left: 0; 30 | } 31 | 32 | header span.right-tail { 33 | background-position: -19px 0; 34 | right: 0; 35 | } 36 | 37 | header h1 { 38 | font-size: 2em; 39 | } 40 | 41 | section#downloads { 42 | height: 171px; 43 | width: 602px; 44 | margin: 51px auto -250px; 45 | background: transparent url(../images/shield.png) center 0 no-repeat; 46 | } 47 | 48 | section#downloads a { 49 | display: none; 50 | } 51 | 52 | span.banner-fix { 53 | background: transparent url(../images/shield-fallback.png) center top no-repeat; 54 | height: 31px; 55 | width: 640px; 56 | top: 20px; 57 | } 58 | 59 | section#main_content { 60 | padding: 20px 40px 0; 61 | } 62 | 63 | footer { 64 | max-width:640px; 65 | background: none; 66 | } 67 | 68 | footer span.left-tail, footer span.right-tail { 69 | width: 23px; 70 | height: 126px; 71 | background: transparent url(../images/small-ribbon-tail-sprite-2x.png) 0 0 no-repeat; 72 | top: -126px; 73 | } 74 | 75 | footer span.left-tail { 76 | left: 0; 77 | } 78 | 79 | footer span.right-tail { 80 | background-position: -23px 0; 81 | right: 0; 82 | } 83 | 84 | footer p { 85 | font-size: .6em; 86 | } 87 | 88 | footer span.ribbon-inner { 89 | border: 8px solid #7c334f; 90 | padding: 6px; 91 | } 92 | 93 | footer span.ribbon-inner p { 94 | font-size: 22px; 95 | height: auto; 96 | line-height: 1.1; 97 | padding: 20px 0px 10px; 98 | } 99 | 100 | footer span.ribbon-inner a { 101 | font-size: 38px; 102 | display: block; 103 | bottom: 0; 104 | padding-bottom: 10px; 105 | } 106 | 107 | footer span.octocat { 108 | background: transparent url(../images/octocat-2x.png) 0 0 no-repeat; 109 | width: 60px; 110 | height: 60px; 111 | margin: 20px auto 0; 112 | } 113 | 114 | body { 115 | font: normal normal 30px/1.5 Georgia, Palatino,” Palatino Linotype”, Times, “Times New Roman”, serif; 116 | } 117 | 118 | ul li { 119 | padding-left: 20px; 120 | background: transparent url(../images/chevron-2x.png) left 15px no-repeat; 121 | } 122 | 123 | table { 124 | border-bottom: 4px solid #bdb6ad; 125 | } 126 | 127 | th { 128 | border-width: 0 4px 4px 0; 129 | } 130 | 131 | td { 132 | border-width: 0 4px 4px 0; 133 | } 134 | 135 | pre { 136 | border-bottom: 4px solid #bdb6ad; 137 | } 138 | 139 | img { 140 | -webkit-box-shadow: 0px 4px 0px #bdb6ad; 141 | -moz-box-shadow: 0px 4px 0px #bdb6ad; 142 | box-shadow: 0px 4px 0px #bdb6ad; 143 | border: 4px solid #fff6e9; 144 | max-width: 556px; 145 | } 146 | 147 | blockquote { 148 | background: transparent url('../images/blockquote-gfx-2x.png') 0 8px no-repeat; 149 | } 150 | 151 | hr { 152 | height: 42px; 153 | background: transparent url('../images/hr-2x.jpg') center center repeat-x; 154 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 40 | Why is the Canadian Flag at Half Mast 41 | 42 | 43 | 44 | View on GitHub 45 |
46 | 47 |
48 | 49 | 50 |

51 |

52 |
53 | 54 | 55 |
56 |
57 | 58 |
59 | 60 | download .ZIPdownload .TGZ 61 | 62 |
63 | 64 | 65 | 66 | 67 | 68 |
69 |

70 | Why Is The Canadian Flag At Half Mast?

71 | 72 |

73 |

74 | 75 |
76 | 77 |
78 | 79 | 80 |

this project by orenmazor can be found on GitHub

81 |
82 | 83 | 84 |
85 |

Generated with GitHub Pages using Merlot

86 | 87 |
88 | 89 |
90 | 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /javascripts/modernizr.js: -------------------------------------------------------------------------------- 1 | /* Modernizr 2.5.2 (Custom Build) | MIT & BSD 2 | * Build: http://www.modernizr.com/download/#-fontface-borderradius-boxshadow-textshadow-cssgradients-shiv-cssclasses-teststyles-testprop-testallprops-prefixes-domprefixes-load 3 | */ 4 | ;window.Modernizr=function(a,b,c){function z(a){j.cssText=a}function A(a,b){return z(m.join(a+";")+(b||""))}function B(a,b){return typeof a===b}function C(a,b){return!!~(""+a).indexOf(b)}function D(a,b){for(var d in a)if(j[a[d]]!==c)return b=="pfx"?a[d]:!0;return!1}function E(a,b,d){for(var e in a){var f=b[a[e]];if(f!==c)return d===!1?a[e]:B(f,"function")?f.bind(d||b):f}return!1}function F(a,b,c){var d=a.charAt(0).toUpperCase()+a.substr(1),e=(a+" "+o.join(d+" ")+d).split(" ");return B(b,"string")||B(b,"undefined")?D(e,b):(e=(a+" "+p.join(d+" ")+d).split(" "),E(e,b,c))}var d="2.5.2",e={},f=!0,g=b.documentElement,h="modernizr",i=b.createElement(h),j=i.style,k,l={}.toString,m=" -webkit- -moz- -o- -ms- ".split(" "),n="Webkit Moz O ms",o=n.split(" "),p=n.toLowerCase().split(" "),q={},r={},s={},t=[],u=t.slice,v,w=function(a,c,d,e){var f,i,j,k=b.createElement("div"),l=b.body,m=l?l:b.createElement("body");if(parseInt(d,10))while(d--)j=b.createElement("div"),j.id=e?e[d]:h+(d+1),k.appendChild(j);return f=["­",""].join(""),k.id=h,m.innerHTML+=f,m.appendChild(k),l||g.appendChild(m),i=c(k,a),l?k.parentNode.removeChild(k):m.parentNode.removeChild(m),!!i},x={}.hasOwnProperty,y;!B(x,"undefined")&&!B(x.call,"undefined")?y=function(a,b){return x.call(a,b)}:y=function(a,b){return b in a&&B(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=u.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(u.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(u.call(arguments)))};return e});var G=function(a,c){var d=a.join(""),f=c.length;w(d,function(a,c){var d=b.styleSheets[b.styleSheets.length-1],g=d?d.cssRules&&d.cssRules[0]?d.cssRules[0].cssText:d.cssText||"":"",h=a.childNodes,i={};while(f--)i[h[f].id]=h[f];e.fontface=/src/i.test(g)&&g.indexOf(c.split(" ")[0])===0},f,c)}(['@font-face {font-family:"font";src:url("https://")}'],["fontface"]);q.borderradius=function(){return F("borderRadius")},q.boxshadow=function(){return F("boxShadow")},q.textshadow=function(){return b.createElement("div").style.textShadow===""},q.cssgradients=function(){var a="background-image:",b="gradient(linear,left top,right bottom,from(#9f9),to(white));",c="linear-gradient(left top,#9f9, white);";return z((a+"-webkit- ".split(" ").join(b+a)+m.join(c+a)).slice(0,-a.length)),C(j.backgroundImage,"gradient")},q.fontface=function(){return e.fontface};for(var H in q)y(q,H)&&(v=H.toLowerCase(),e[v]=q[H](),t.push((e[v]?"":"no-")+v));return z(""),i=k=null,function(a,b){function g(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x",d.insertBefore(c.lastChild,d.firstChild)}function h(){var a=k.elements;return typeof a=="string"?a.split(" "):a}function i(a){function m(){var a=j.cloneNode(!1);return k.shivMethods?(i(a),a):a}function n(a){var b=(c[a]||(c[a]=e(a))).cloneNode(!1);return k.shivMethods&&!d.test(a)?j.appendChild(b):b}var b,c={},e=a.createElement,f=a.createDocumentFragment,g=h(),j=f(),l=g.length;while(l--)b=g[l],c[b]=e(b),j.createElement(b);a.createElement=n,a.createDocumentFragment=m}function j(a){var b;return a.documentShived?a:(k.shivCSS&&!e&&(b=!!g(a,"article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio{display:none}canvas,video{display:inline-block;*display:inline;*zoom:1}[hidden]{display:none}audio[controls]{display:inline-block;*display:inline;*zoom:1}mark{background:#FF0;color:#000}")),k.shivMethods&&!f&&(b=!i(a)),b&&(a.documentShived=b),a)}var c=a.html5||{},d=/^<|^(?:button|iframe|input|script|textarea)$/i,e,f;(function(){var c,d=b.createElement("a"),g=a.getComputedStyle,h=b.documentElement,i=b.body||(c=h.insertBefore(b.createElement("body"),h.firstChild));i.insertBefore(d,i.firstChild),d.hidden=!0,d.innerHTML="",e=(d.currentStyle||g(d,null)).display=="none",f=d.childNodes.length==1||function(){try{b.createElement("a")}catch(a){return!0}var c=b.createDocumentFragment();return typeof c.cloneNode=="undefined"||typeof c.createDocumentFragment=="undefined"||typeof c.createElement=="undefined"}(),i.removeChild(d),c&&h.removeChild(c)})();var k={elements:c.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video".split(" "),shivCSS:c.shivCSS!==!1,shivMethods:c.shivMethods!==!1,type:"default",shivDocument:j};a.html5=k,j(b)}(this,b),e._version=d,e._prefixes=m,e._domPrefixes=p,e._cssomPrefixes=o,e.testProp=function(a){return D([a])},e.testAllProps=F,e.testStyles=w,g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+t.join(" "):""),e}(this,this.document),function(a,b,c){function d(a){return o.call(a)=="[object Function]"}function e(a){return typeof a=="string"}function f(){}function g(a){return!a||a=="loaded"||a=="complete"||a=="uninitialized"}function h(){var a=p.shift();q=1,a?a.t?m(function(){(a.t=="c"?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){a!="img"&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l={},o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};y[c]===1&&(r=1,y[c]=[],l=b.createElement(a)),a=="object"?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),a!="img"&&(r||y[c]===2?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i(b=="c"?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),p.length==1&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=!!b.attachEvent,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return o.call(a)=="[object Array]"},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}},A,B;B=function(a){function b(a){var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a},e,f,g;for(f=0;f .header-level-1:first-child, 461 | #main_content > .header-level-2:first-child, 462 | #main_content > .header-level-3:first-child, 463 | #main_content > .header-level-4:first-child, 464 | #main_content > .header-level-5:first-child, 465 | #main_content > .header-level-6:first-child { 466 | margin-top: 0; 467 | } 468 | 469 | .header-level-1 { 470 | font-size: 1.85em; 471 | border-bottom: .2em double #d3ccc1; 472 | color: #7c334f; 473 | text-align: center; 474 | font-style: italic; 475 | margin: 1.1em 0 .38em; 476 | line-height: 1.2; 477 | padding-bottom: 10px 478 | } 479 | 480 | .header-level-2 { 481 | font-size: 1.58em; 482 | color: #7c334f; 483 | margin: .95em 0 .5em; 484 | border-bottom: .1em solid #D3CCC1; 485 | line-height: 1.2; 486 | padding-bottom: 10px 487 | } 488 | 489 | .header-level-3 { 490 | margin: 20px 0 10px; 491 | font-size: 1.45em; 492 | } 493 | 494 | .header-level-4 { 495 | margin: .6em 0; 496 | font-size: 1.2em; 497 | color: #cd596b; 498 | } 499 | 500 | .header-level-5 { 501 | margin: .7em 0; 502 | font-size: 1em; 503 | color: #8b786f; 504 | } 505 | 506 | .header-level-6 { 507 | margin: .8em 0; 508 | font-size: .85em; 509 | font-style: italic; 510 | } -------------------------------------------------------------------------------- /stylesheets/screen.css: -------------------------------------------------------------------------------- 1 | /* Generated by Font Squirrel (http://www.fontsquirrel.com) on February 9, 2012 */ 2 | 3 | 4 | @font-face { 5 | font-family: 'Open Sans'; 6 | src: url('../fonts/opensans-regular-webfont.eot'); 7 | src: url('../fonts/opensans-regular-webfont.eot?#iefix') format('embedded-opentype'), 8 | url('../fonts/opensans-regular-webfont.woff') format('woff'), 9 | url('../fonts/opensans-regular-webfont.ttf') format('truetype'), 10 | url('../fonts/opensans-regular-webfont.svg#OpenSansRegular') format('svg'); 11 | font-weight: normal; 12 | font-style: normal; 13 | } 14 | 15 | @font-face { 16 | font-family: 'Open Sans'; 17 | src: url('../fonts/opensans-italic-webfont.eot'); 18 | src: url('../fonts/opensans-italic-webfont.eot?#iefix') format('embedded-opentype'), 19 | url('../fonts/opensans-italic-webfont.woff') format('woff'), 20 | url('../fonts/opensans-italic-webfont.ttf') format('truetype'), 21 | url('../fonts/opensans-italic-webfont.svg#OpenSansItalic') format('svg'); 22 | font-weight: normal; 23 | font-style: italic; 24 | } 25 | 26 | @font-face { 27 | font-family: 'Open Sans'; 28 | src: url('../fonts/opensans-bold-webfont.eot'); 29 | src: url('../fonts/opensans-bold-webfont.eot?#iefix') format('embedded-opentype'), 30 | url('../fonts/opensans-bold-webfont.woff') format('woff'), 31 | url('../fonts/opensans-bold-webfont.ttf') format('truetype'), 32 | url('../fonts/opensans-bold-webfont.svg#OpenSansBold') format('svg'); 33 | font-weight: bold; 34 | font-style: normal; 35 | } 36 | 37 | @font-face { 38 | font-family: 'Open Sans'; 39 | src: url('../fonts/opensans-bolditalic-webfont.eot'); 40 | src: url('../fonts/opensans-bolditalic-webfont.eot?#iefix') format('embedded-opentype'), 41 | url('../fonts/opensans-bolditalic-webfont.woff') format('woff'), 42 | url('../fonts/opensans-bolditalic-webfont.ttf') format('truetype'), 43 | url('../fonts/opensans-bolditalic-webfont.svg#OpenSansBoldItalic') format('svg'); 44 | font-weight: bold; 45 | font-style: italic; 46 | } 47 | 48 | @font-face { 49 | font-family: 'Open Sans'; 50 | src: url('../fonts/opensans-extrabold-webfont.eot'); 51 | src: url('../fonts/opensans-extrabold-webfont.eot?#iefix') format('embedded-opentype'), 52 | url('../fonts/opensans-extrabold-webfont.woff') format('woff'), 53 | url('../fonts/opensans-extrabold-webfont.ttf') format('truetype'), 54 | url('../fonts/opensans-extrabold-webfont.svg#OpenSansExtrabold') format('svg'); 55 | font-weight: 800; 56 | font-style: normal; 57 | } 58 | 59 | /* http://meyerweb.com/eric/tools/css/reset/ 60 | v2.0 | 20110126 61 | License: none (public domain) 62 | */ 63 | 64 | html, body, div, span, applet, object, iframe, 65 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 66 | a, abbr, acronym, address, big, cite, code, 67 | del, dfn, em, img, ins, kbd, q, s, samp, 68 | small, strike, strong, sub, sup, tt, var, 69 | b, u, i, center, 70 | dl, dt, dd, ol, ul, li, 71 | fieldset, form, label, legend, 72 | table, caption, tbody, tfoot, thead, tr, th, td, 73 | article, aside, canvas, details, embed, 74 | figure, figcaption, footer, header, hgroup, 75 | menu, nav, output, ruby, section, summary, 76 | time, mark, audio, video { 77 | margin: 0; 78 | padding: 0; 79 | border: 0; 80 | font-size: 100%; 81 | font: inherit; 82 | vertical-align: baseline; 83 | } 84 | /* HTML5 display-role reset for older browsers */ 85 | article, aside, details, figcaption, figure, 86 | footer, header, hgroup, menu, nav, section { 87 | display: block; 88 | } 89 | body { 90 | line-height: 1; 91 | } 92 | ol, ul { 93 | list-style: none; 94 | } 95 | blockquote, q { 96 | quotes: none; 97 | } 98 | blockquote:before, blockquote:after, 99 | q:before, q:after { 100 | content: ''; 101 | content: none; 102 | } 103 | table { 104 | border-collapse: collapse; 105 | border-spacing: 0; 106 | } 107 | 108 | header, footer, section { 109 | display: block; 110 | position: relative; 111 | } 112 | 113 | /* STYLES */ 114 | 115 | div.shell { 116 | display: block; 117 | width: 670px; 118 | margin: 0 auto; 119 | } 120 | 121 | a#forkme_banner { 122 | position: absolute; 123 | top: 0; 124 | left: 0; 125 | width: 138px; 126 | height: 138px; 127 | display: block; 128 | background: transparent url(../images/fork-sprite.png) 0 0 no-repeat; 129 | text-indent: -9000px; 130 | z-index: 3; 131 | } 132 | 133 | a#forkme_banner:hover { 134 | background-position: 0 -138px; 135 | } 136 | 137 | /* header */ 138 | 139 | header { 140 | position: relative; 141 | z-index: 2; 142 | margin: 0 auto; 143 | max-width: 600px; 144 | top: 38px; 145 | } 146 | 147 | header span.ribbon-inner { 148 | position: relative; 149 | display: block; 150 | background-color: #cd596b; 151 | border: 4px solid #7c334f; 152 | padding: 2px; 153 | z-index: 1; 154 | } 155 | 156 | header span.left-tail, header span.right-tail { 157 | position: relative; 158 | display: block; 159 | width: 56px; 160 | height: 105px; 161 | background: transparent url(../images/ribbon-tail-sprite.png) 0 0 no-repeat; 162 | position: absolute; 163 | bottom: -37px; 164 | z-index: 0; 165 | } 166 | 167 | header span.left-tail { 168 | background-position: 0 0; 169 | left: -31px; 170 | } 171 | 172 | header span.right-tail { 173 | background-position: -56px 0; 174 | right: -31px; 175 | } 176 | 177 | header h1 { 178 | background-color: #7c334f; 179 | font-size: 2.5em; 180 | font-weight: 800; 181 | font-style: normal; 182 | text-transform: uppercase; 183 | color: #ece4d8; 184 | text-align: center; 185 | line-height:1; 186 | padding: 14px 20px 0; 187 | } 188 | 189 | header h2 { 190 | background-color: #7c334f; 191 | font: bold italic .85em/1.5 Georgia, Times, “Times New Roman”, serif; 192 | color: #e69b95; 193 | padding-bottom: 14px; 194 | margin-top: -3px; 195 | text-align: center; 196 | } 197 | 198 | section#downloads, 199 | div#no-downloads { 200 | position: relative; 201 | display: block; 202 | height: 197px; 203 | width: 550px; 204 | padding-bottom: 150px; 205 | margin: -80px auto -150px; 206 | z-index: 1; 207 | background: transparent url(../images/bg-ramp.jpg) center 171px no-repeat; 208 | } 209 | 210 | div#no-downloads span.inner { 211 | display: block; 212 | position: relative; 213 | height: 197px; 214 | width: 550px; 215 | background: transparent url(../images/download-sprite.png) 0 0 no-repeat; 216 | } 217 | 218 | section#downloads a { 219 | display: block; 220 | position: relative; 221 | height: 67px; 222 | width: 275px; 223 | padding-top: 130px; 224 | background: transparent url(../images/download-sprite.png) 0 0 no-repeat; 225 | text-align: center; 226 | line-height: 1; 227 | color: #fff; 228 | font-family: 'Open Sans', Myriad, Calibri, sans-serif; 229 | font-weight: 800; 230 | font-size: 1.3em; 231 | } 232 | 233 | section#downloads a:hover { 234 | text-decoration: none; 235 | } 236 | 237 | section#downloads a em { 238 | font: bold italic 12px/1 Georgia, Times, “Times New Roman”, serif; 239 | color: #83b7da; 240 | display: block; 241 | } 242 | 243 | section#downloads a.zip { 244 | float: left; 245 | background-position: 0 0; 246 | } 247 | 248 | section#downloads a.tgz { 249 | float: right; 250 | background-position: -275px 0; 251 | } 252 | 253 | section#downloads a.zip:hover { 254 | background-position: 0 -197px; 255 | } 256 | 257 | section#downloads a.tgz:hover { 258 | background-position: -275px -197px; 259 | } 260 | 261 | span.banner-fix { 262 | background: transparent url(../images/download-fallback-bg.png) center top no-repeat; 263 | display: block; 264 | height: 19px; 265 | position: absolute; 266 | width: 670px; 267 | top: 19px; 268 | } 269 | 270 | section#main_content { 271 | z-index: 2; 272 | padding: 20px 82px 0; 273 | min-height:185px; 274 | } 275 | 276 | /* footer */ 277 | 278 | footer { 279 | background: transparent url(../images/footer-ramp.jpg) center -1px no-repeat; 280 | padding-top: 104px; 281 | margin: -94px auto 40px; 282 | max-width: 560px; 283 | text-align: center; 284 | } 285 | 286 | footer span.ribbon-outer { 287 | display: block; 288 | position: relative; 289 | border-bottom: 2px solid #bdb6ad; 290 | } 291 | 292 | footer span.ribbon-inner { 293 | position: relative; 294 | display: block; 295 | background-color: #cd596b; 296 | border: 2px solid #7c334f; 297 | padding: 1px; 298 | z-index: 1; 299 | } 300 | 301 | footer p { 302 | font-family: 'Open Sans', Myriad, Calibri, sans-serif; 303 | font-weight: bold; 304 | font-size: .8em; 305 | color: #8b786f; 306 | } 307 | 308 | footer a { 309 | color: #cd596b; 310 | } 311 | 312 | footer span.ribbon-inner p { 313 | background-color: #7c334f; 314 | margin: 0; 315 | color: #e69b95; 316 | font: bold italic 12px/1 Georgia, Times, “Times New Roman”, serif; 317 | padding-bottom:4px; 318 | } 319 | 320 | footer span.ribbon-inner a { 321 | position: relative; 322 | bottom: -1px; 323 | color: #7eb0d2; 324 | font-family: 'Open Sans', Myriad, Calibri, sans-serif; 325 | text-transform: uppercase; 326 | font-style: normal; 327 | font-weight: 800; 328 | font-size: 1.2em; 329 | } 330 | 331 | footer span.ribbon-inner a:hover { 332 | color: #7eb0d2; 333 | } 334 | 335 | footer span.left-tail, footer span.right-tail { 336 | position: relative; 337 | display: block; 338 | width: 18px; 339 | height: 29px; 340 | background: transparent url(../images/small-ribbon-tail-sprite.png) 0 0 no-repeat; 341 | position: absolute; 342 | bottom: 5px; 343 | z-index: 0; 344 | } 345 | 346 | footer span.left-tail { 347 | background-position: 0 0; 348 | left: -11px; 349 | } 350 | 351 | footer span.right-tail { 352 | background-position: -18px 0; 353 | right: -11px; 354 | } 355 | 356 | footer span.octocat { 357 | background: transparent url(../images/octocat.png) 0 0 no-repeat; 358 | display: block; 359 | width: 30px; 360 | height: 30px; 361 | margin: 0 auto; 362 | } 363 | 364 | /* content */ 365 | 366 | body { 367 | background: #ece4d8; 368 | font: normal normal 15px/1.5 Georgia, Palatino,” Palatino Linotype”, Times, “Times New Roman”, serif; 369 | color: #544943; 370 | -webkit-font-smoothing: antialiased; 371 | } 372 | 373 | a, a:hover { 374 | color: #417090; 375 | } 376 | 377 | a { 378 | text-decoration: none; 379 | } 380 | 381 | a:hover { 382 | text-decoration: underline; 383 | } 384 | 385 | h1,h2,h3,h4,h5,h6 { 386 | font-family: 'Open Sans', Myriad, Calibri, sans-serif; 387 | font-weight: bold; 388 | } 389 | 390 | p { 391 | margin: .7em 0; 392 | } 393 | 394 | strong { 395 | font-weight: bold; 396 | } 397 | 398 | em { 399 | font-style: italic; 400 | } 401 | 402 | ol { 403 | margin: .7em 0; 404 | list-style-type: decimal; 405 | padding-left: 1.35em; 406 | } 407 | 408 | ul { 409 | margin: .7em 0; 410 | padding-left: 1.35em; 411 | } 412 | 413 | ul li { 414 | padding-left: 10px; 415 | background: transparent url(../images/chevron.png) left 6px no-repeat; 416 | } 417 | 418 | blockquote { 419 | font-family: 'Open Sans', Myriad, Calibri, sans-serif; 420 | margin: 20px 0; 421 | color: #8b786f; 422 | padding-left: 1.35em; 423 | background: transparent url('../images/blockquote-gfx.png') 0 4px no-repeat; 424 | } 425 | 426 | img { 427 | -webkit-box-shadow: 0px 2px 0px #bdb6ad; 428 | -moz-box-shadow: 0px 2px 0px #bdb6ad; 429 | box-shadow: 0px 2px 0px #bdb6ad; 430 | border: 2px solid #fff6e9; 431 | max-width: 502px; 432 | } 433 | 434 | hr { 435 | border: none; 436 | outline: none; 437 | height: 18px; 438 | background: transparent url('../images/hr.jpg') center center repeat-x; 439 | margin: 0 0 20px; 440 | } 441 | 442 | code { 443 | background: #fff6e9; 444 | font: normal normal .8em/1.7 "Lucida Sans Typewriter", "Lucida Console", Monaco, "Bitstream Vera Sans Mono", monospace; 445 | padding: 0 5px 1px; 446 | } 447 | 448 | pre { 449 | margin: 10px 0 20px; 450 | padding: .7em; 451 | background: #fff6e9; 452 | border-bottom: 2px solid #bdb6ad; 453 | font: normal normal .9em/1.7 "Lucida Sans Typewriter", "Lucida Console", Monaco, "Bitstream Vera Sans Mono", monospace; 454 | overflow: auto; 455 | } 456 | 457 | pre code { 458 | padding: 0; 459 | } 460 | 461 | table { 462 | background: #fff6e9; 463 | display: table; 464 | width: 100%; 465 | border-collapse: separate; 466 | border-bottom: 2px solid #bdb6ad; 467 | margin: 10px 0; 468 | } 469 | 470 | tr { 471 | display: table-row; 472 | } 473 | 474 | th { 475 | display: table-cell; 476 | padding: 2px 10px; 477 | border: solid #ece4d8; 478 | border-width: 0 2px 2px 0; 479 | color: #cd596b; 480 | font-family: 'Open Sans', Myriad, Calibri, sans-serif; 481 | font-weight: bold; 482 | font-size: .85em; 483 | } 484 | 485 | td { 486 | display: table-cell; 487 | padding: 0 .7em; 488 | border: solid #ece4d8; 489 | border-width: 0 2px 2px 0; 490 | } 491 | 492 | td:last-child, th:last-child { 493 | border-right: none; 494 | } 495 | 496 | tr:last-child td { 497 | border-bottom: none; 498 | } 499 | 500 | dl { 501 | margin: .7em 0 20px; 502 | } 503 | 504 | dt { 505 | font-family: 'Open Sans', Myriad, Calibri, sans-serif; 506 | font-weight: bold; 507 | } 508 | 509 | dd { 510 | padding-left: 1.35em; 511 | } 512 | 513 | dd p:first-child { 514 | margin-top: 0; 515 | } 516 | 517 | /* Content based headers */ 518 | 519 | #main_content > .header-level-1:first-child, 520 | #main_content > .header-level-2:first-child, 521 | #main_content > .header-level-3:first-child, 522 | #main_content > .header-level-4:first-child, 523 | #main_content > .header-level-5:first-child, 524 | #main_content > .header-level-6:first-child { 525 | margin-top: 0; 526 | } 527 | 528 | .header-level-1 { 529 | font-size: 1.85em; 530 | border-bottom: .2em double #d3ccc1; 531 | color: #7c334f; 532 | text-align: center; 533 | font-style: italic; 534 | margin: 1.1em 0 .38em; 535 | line-height: 1.2; 536 | padding-bottom: 10px 537 | } 538 | 539 | .header-level-2 { 540 | font-size: 1.58em; 541 | color: #7c334f; 542 | margin: .95em 0 .5em; 543 | border-bottom: .1em solid #D3CCC1; 544 | line-height: 1.2; 545 | padding-bottom: 10px 546 | } 547 | 548 | .header-level-3 { 549 | margin: 20px 0 10px; 550 | font-size: 1.45em; 551 | } 552 | 553 | .header-level-4 { 554 | margin: .6em 0; 555 | font-size: 1.2em; 556 | color: #cd596b; 557 | } 558 | 559 | .header-level-5 { 560 | margin: .7em 0; 561 | font-size: 1em; 562 | color: #8b786f; 563 | } 564 | 565 | .header-level-6 { 566 | margin: .8em 0; 567 | font-size: .85em; 568 | font-style: italic; 569 | } 570 | -------------------------------------------------------------------------------- /fonts/opensans-bold-webfont.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | This is a custom SVG webfont generated by Font Squirrel. 6 | Copyright : Digitized data copyright 20102011 Google Corporation 7 | Foundry : Ascender Corporation 8 | Foundry URL : httpwwwascendercorpcom 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | -------------------------------------------------------------------------------- /fonts/opensans-extrabold-webfont.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | This is a custom SVG webfont generated by Font Squirrel. 6 | Copyright : Digitized data copyright 2011 Google Corporation 7 | Foundry : Ascender Corporation 8 | Foundry URL : httpwwwascendercorpcom 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | -------------------------------------------------------------------------------- /fonts/opensans-regular-webfont.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | This is a custom SVG webfont generated by Font Squirrel. 6 | Copyright : Digitized data copyright 20102011 Google Corporation 7 | Foundry : Ascender Corporation 8 | Foundry URL : httpwwwascendercorpcom 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | --------------------------------------------------------------------------------