commit 9ef9f09ce5a60479e35bc5849349ffa6b8b0af0f Author: Joshua M. Boniface Date: Fri May 24 11:01:02 2024 -0400 Add initial blog configuration diff --git a/.bbuilder-tasks.yaml b/.bbuilder-tasks.yaml new file mode 100644 index 0000000..8a5a857 --- /dev/null +++ b/.bbuilder-tasks.yaml @@ -0,0 +1,6 @@ +--- +bbuilder: + push: + - git submodule update --init + - hugo + - /usr/local/bin/deploy-site www.parallelvirtualcluster.org public/ diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..a4dc087 --- /dev/null +++ b/config.toml @@ -0,0 +1,20 @@ +baseurl = "https://www.parallelvirtualcluster.org" +languageCode = "en-us" +title = "Parallel Virtual Cluster" +author = "Joshua M. Boniface" +theme = "scroll" + +contentdir = "content" +publishdir = "public" +builddrafts = false +canonifyurls = true +copyright = "This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 License." + +[indexes] + category = "categories" + tag = "tags" +[Params] + AuthorName = "Joshua M. Boniface" + email = "joshua@boniface.me" + description = "A Linux KVM-based hyperconverged infrastructure (HCI) virtualization cluster solution" + logo = "/images/pvc-logo.png" diff --git a/content/ABOUT.md b/content/ABOUT.md new file mode 100644 index 0000000..685bc6c --- /dev/null +++ b/content/ABOUT.md @@ -0,0 +1,11 @@ ++++ +title = "Cloud Computing, Your Datacenter" +description = "Control your data: we bring the cloud to you!" +weight = 1 +type = "post" +class="post first" ++++ + +The cloud is everywhere. From the relentless growth of Google, Amazon, and Microsoft came a new paradigm of computing efficiency: scale. But who controls your data? + +At Boniface Labs, we seek to build the datacenter of tomorrow, on-premises, with your data under your control. Leveraging open-source technologies, we've built a full stack to deliver your applications, the way you want them, following best practices. With Boniface Labs, the cloud just got a little less intimidating. diff --git a/content/CONTACT.md b/content/CONTACT.md new file mode 100644 index 0000000..8ebdf1a --- /dev/null +++ b/content/CONTACT.md @@ -0,0 +1,9 @@ ++++ +title = "Contact Us" +description = "We're just an email away!" +weight = 1 +type = "post" +class="post last" ++++ + +Click the email button below and send us your questions and feedback! diff --git a/static/.well-known/matrix/client b/static/.well-known/matrix/client new file mode 100644 index 0000000..623d41e --- /dev/null +++ b/static/.well-known/matrix/client @@ -0,0 +1,11 @@ +{ + "m.homeserver": { + "base_url": "https://im.bonifacelabs.ca" + }, + "m.identity_server": { + "base_url": "https://im.bonifacelabs.ca" + }, + "im.vector.riot.jitsi": { + "preferredDomain": "meet.bonifacelabs.ca" + } +} diff --git a/static/.well-known/matrix/server b/static/.well-known/matrix/server new file mode 100644 index 0000000..0b12103 --- /dev/null +++ b/static/.well-known/matrix/server @@ -0,0 +1,3 @@ +{ + "m.server": "im.bonifacelabs.ca:443" +} diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..c5f2a95 Binary files /dev/null and b/static/favicon.ico differ diff --git a/static/images/pvc-logo-full.png b/static/images/pvc-logo-full.png new file mode 100644 index 0000000..507a736 Binary files /dev/null and b/static/images/pvc-logo-full.png differ diff --git a/static/images/pvc-logo.png b/static/images/pvc-logo.png new file mode 100644 index 0000000..c5f2a95 Binary files /dev/null and b/static/images/pvc-logo.png differ diff --git a/themes/scroll/README.md b/themes/scroll/README.md new file mode 100644 index 0000000..0626a9f --- /dev/null +++ b/themes/scroll/README.md @@ -0,0 +1,104 @@ +Hugo Scroll += +A live example of this theme is running at this site [hugoscroll.fredrikloch.me](http://hugoscroll.fredrikloch.me) +Using scroll +- +To get started with hugo you first need to download the [binaries](http://gohugo.io), whith these in place it is easy to get started. + + # Init site + hugo new site My_New_Cool_Venture + cd My_New_Cool_Venture + + # Get this cool theme + git clone https://github.com/SenjinDarashiva/hugoscroll themes/hugoscroll + + # Start the watching your folder + hugo --buildDrafts --theme="hugoscroll" --watch server + +With this done you can start creating posts, for this theme theme there is some specific information that needs to be added to your +post header. For the first and the last post you need to add a class definition, the headers for this page look like this: + + +++ + title = "What is this" + description = "First post" + weight = 1 + type = "post" + class="post first" + +++ + + +++ + title = "Finaly!" + description = "Last Post" + weight = 100 + type = "post" + class="post last" + +++ + +Every standard post must contain a weight between the weight of the first and the last to ensure correct ordering, in this case this +allows us to use any number between 2 -- 99 + +Site config +- +Apart from the regular config you can specify the following parameters to get extra features in the theme + + [Params] + github = "Senjindarashiva" + bitbucket = "floch" + flickr = "senjin" + twitter = "senjindarshiva" + email = "fredrik.loch@outlook.com" + description = "" + linkedin = "fredrikloch" + cover = "/images/background-cover.jpg" + logo = "/img/logo-1.jpg" + +Developing hugoscroll += +In order to develop or make changes to the theme you will need to have the sass compiler and bourbon both installed. + +To check installation run the following commands from a terminal and you should see the `> cli output` but your version numbers may vary. + +#### SASS +```bash +sass -v +> Sass 3.3.4 (Maptastic Maple) +``` +If for some reason SASS isn't installed follow the instructions from the [Sass install page](http://sass-lang.com/install) + +#### Bourbon +```bash +bourbon help +> Bourbon 3.1.8 +``` +If Bourbon isn't installed follow the installation instructions on the [Bourbon website](http://bourbon.io) + +Once installation is verified we will need to go mount the bourbon mixins into the `scss` folder. + +From the project root run `bourbon install` with the correct path +```bash +bourbon install --path static/scss +> bourbon files installed to static/scss/bourbon/ +``` + +Now that we have the bourbon mixins inside of the `scss` src folder we can now use the sass cli command to watch the scss files for changes and recompile them. + +```bash +sass --watch static/scss:static/css +>>>> Sass is watching for changes. Press Ctrl-C to stop. +``` + +To minify the css files use the following command in the statics folder + +```bash +curl -X POST -s --data-urlencode 'input@css/base.css' http://cssminifier.com/raw > css/base.min.css +``` + +Font-awesome icons +- +For more information on available icons: [font-awesome](http://fortawesome.github.io/Font-Awesome/) +The files supplied with this theme have a minor alteration to work around an issue with adblocks and social icons. +The changes means that the following classes is used: + +* fa-tt -- twitter +* fa-fb -- facebook +* fa-ll -- linkedin diff --git a/themes/scroll/archetypes/default.md b/themes/scroll/archetypes/default.md new file mode 100644 index 0000000..e17cafb --- /dev/null +++ b/themes/scroll/archetypes/default.md @@ -0,0 +1,7 @@ ++++ +tags = [] +weight = 1 +type = "post" +class="post first" ++++ + diff --git a/themes/scroll/images/screenshot.png b/themes/scroll/images/screenshot.png new file mode 100644 index 0000000..25432b9 Binary files /dev/null and b/themes/scroll/images/screenshot.png differ diff --git a/themes/scroll/images/tn.png b/themes/scroll/images/tn.png new file mode 100644 index 0000000..e2e6162 Binary files /dev/null and b/themes/scroll/images/tn.png differ diff --git a/themes/scroll/layouts/_default/list.html b/themes/scroll/layouts/_default/list.html new file mode 100644 index 0000000..8708170 --- /dev/null +++ b/themes/scroll/layouts/_default/list.html @@ -0,0 +1,20 @@ +{{ partial "header.html" . }} + +
+
+ {{ range .Data.Pages.GroupByDate "2006" }} +

{{ .Key }}

+ + {{ end }} +
+
+ + {{ partial "script.html" .}} + diff --git a/themes/scroll/layouts/_default/single.html b/themes/scroll/layouts/_default/single.html new file mode 100644 index 0000000..d92e677 --- /dev/null +++ b/themes/scroll/layouts/_default/single.html @@ -0,0 +1,14 @@ +{{ partial "header.html" . }} + +
+
+
+

{{ .Title }}

+ + {{ .Content }} +
+
+
+ + {{ partial "script.html" .}} + diff --git a/themes/scroll/layouts/index.html b/themes/scroll/layouts/index.html new file mode 100644 index 0000000..a7cd76e --- /dev/null +++ b/themes/scroll/layouts/index.html @@ -0,0 +1,37 @@ +{{ partial "header.html" . }} + + + + + +
+ {{ range .Data.Pages.ByWeight }} + {{ if eq .Type "post" }} + {{ .Render "post"}} + {{ end }} + {{ end }} + +
+ {{ partial "footer.html" .}} + + {{ partial "script.html" .}} + + + + diff --git a/themes/scroll/layouts/partials/footer.html b/themes/scroll/layouts/partials/footer.html new file mode 100644 index 0000000..2dbafcc --- /dev/null +++ b/themes/scroll/layouts/partials/footer.html @@ -0,0 +1,30 @@ + diff --git a/themes/scroll/layouts/partials/header.html b/themes/scroll/layouts/partials/header.html new file mode 100644 index 0000000..041c100 --- /dev/null +++ b/themes/scroll/layouts/partials/header.html @@ -0,0 +1,18 @@ + + + + + + + + + + {{ .Title }} · {{ .Site.Title }} + + + + + + + + diff --git a/themes/scroll/layouts/partials/script.html b/themes/scroll/layouts/partials/script.html new file mode 100644 index 0000000..64bc516 --- /dev/null +++ b/themes/scroll/layouts/partials/script.html @@ -0,0 +1,3 @@ + + + diff --git a/themes/scroll/layouts/post/post.html b/themes/scroll/layouts/post/post.html new file mode 100644 index 0000000..0e0b5b9 --- /dev/null +++ b/themes/scroll/layouts/post/post.html @@ -0,0 +1,35 @@ +
+{{ if .Params.class }} +
+{{ else }} +
+{{ end }} + +
+ + {{else}} + {{ .Site.Title }} + {{ end }} + +
+

{{ .Title }}

+ +
+ {{ .Content }} +
+ +
+ + {{ if .Site.Author }} +
+

{{ .Site.Author.name}}

+

{{ .Site.Author.bio }}

+
+ {{ end }} + +
+
+
+
diff --git a/themes/scroll/static/css/base.css b/themes/scroll/static/css/base.css new file mode 100644 index 0000000..57dafc3 --- /dev/null +++ b/themes/scroll/static/css/base.css @@ -0,0 +1,2570 @@ +@charset "UTF-8"; +/*! + * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */ +/* FONT PATH + * -------------------------- */ +@font-face { + font-family: 'FontAwesome'; + src: url("../fonts/font-awesome/fontawesome-webfont.eot?v=4.2.0"); + src: url("../fonts/font-awesome/fontawesome-webfont.eot?#iefix&v=4.2.0") format("embedded-opentype"), url("../fonts/font-awesome/fontawesome-webfont.woff?v=4.2.0") format("woff"), url("../fonts/font-awesome/fontawesome-webfont.ttf?v=4.2.0") format("truetype"), url("../fonts/font-awesome/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular") format("svg"); + font-weight: normal; + font-style: normal; } +.fa { + display: inline-block; + font: normal normal normal 14px/1 FontAwesome; + font-size: inherit; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; } + +/* makes the font 33% larger relative to the icon container */ +.fa-lg { + font-size: 1.33333em; + line-height: 0.75em; + vertical-align: -15%; } + +.fa-2x { + font-size: 2em; } + +.fa-3x { + font-size: 3em; } + +.fa-4x { + font-size: 4em; } + +.fa-5x { + font-size: 5em; } + +.fa-fw { + width: 1.28571em; + text-align: center; } + +.fa-ul { + padding-left: 0; + margin-left: 2.14286em; + list-style-type: none; } + .fa-ul > li { + position: relative; } + +.fa-li { + position: absolute; + left: -2.14286em; + width: 2.14286em; + top: 0.14286em; + text-align: center; } + .fa-li.fa-lg { + left: -1.85714em; } + +.fa-border { + padding: .2em .25em .15em; + border: solid 0.08em #eee; + border-radius: .1em; } + +.pull-right { + float: right; } + +.pull-left { + float: left; } + +.fa.pull-left { + margin-right: .3em; } +.fa.pull-right { + margin-left: .3em; } + +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; } + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); } } +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); } } +.fa-rotate-90 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); } + +.fa-rotate-180 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); + -webkit-transform: rotate(180deg); + -ms-transform: rotate(180deg); + transform: rotate(180deg); } + +.fa-rotate-270 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); + -webkit-transform: rotate(270deg); + -ms-transform: rotate(270deg); + transform: rotate(270deg); } + +.fa-flip-horizontal { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0); + -webkit-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + transform: scale(-1, 1); } + +.fa-flip-vertical { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); + -webkit-transform: scale(1, -1); + -ms-transform: scale(1, -1); + transform: scale(1, -1); } + +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + filter: none; } + +.fa-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; } + +.fa-stack-1x, .fa-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; } + +.fa-stack-1x { + line-height: inherit; } + +.fa-stack-2x { + font-size: 2em; } + +.fa-inverse { + color: #fff; } + +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ +.fa-glass:before { + content: ""; } + +.fa-music:before { + content: ""; } + +.fa-search:before { + content: ""; } + +.fa-envelope-o:before { + content: ""; } + +.fa-heart:before { + content: ""; } + +.fa-star:before { + content: ""; } + +.fa-star-o:before { + content: ""; } + +.fa-user:before { + content: ""; } + +.fa-film:before { + content: ""; } + +.fa-th-large:before { + content: ""; } + +.fa-th:before { + content: ""; } + +.fa-th-list:before { + content: ""; } + +.fa-check:before { + content: ""; } + +.fa-remove:before, +.fa-close:before, +.fa-times:before { + content: ""; } + +.fa-search-plus:before { + content: ""; } + +.fa-search-minus:before { + content: ""; } + +.fa-power-off:before { + content: ""; } + +.fa-signal:before { + content: ""; } + +.fa-gear:before, +.fa-cog:before { + content: ""; } + +.fa-trash-o:before { + content: ""; } + +.fa-home:before { + content: ""; } + +.fa-file-o:before { + content: ""; } + +.fa-clock-o:before { + content: ""; } + +.fa-road:before { + content: ""; } + +.fa-download:before { + content: ""; } + +.fa-arrow-circle-o-down:before { + content: ""; } + +.fa-arrow-circle-o-up:before { + content: ""; } + +.fa-inbox:before { + content: ""; } + +.fa-play-circle-o:before { + content: ""; } + +.fa-rotate-right:before, +.fa-repeat:before { + content: ""; } + +.fa-refresh:before { + content: ""; } + +.fa-list-alt:before { + content: ""; } + +.fa-lock:before { + content: ""; } + +.fa-flag:before { + content: ""; } + +.fa-headphones:before { + content: ""; } + +.fa-volume-off:before { + content: ""; } + +.fa-volume-down:before { + content: ""; } + +.fa-volume-up:before { + content: ""; } + +.fa-qrcode:before { + content: ""; } + +.fa-barcode:before { + content: ""; } + +.fa-tag:before { + content: ""; } + +.fa-tags:before { + content: ""; } + +.fa-book:before { + content: ""; } + +.fa-bookmark:before { + content: ""; } + +.fa-print:before { + content: ""; } + +.fa-camera:before { + content: ""; } + +.fa-font:before { + content: ""; } + +.fa-bold:before { + content: ""; } + +.fa-italic:before { + content: ""; } + +.fa-text-height:before { + content: ""; } + +.fa-text-width:before { + content: ""; } + +.fa-align-left:before { + content: ""; } + +.fa-align-center:before { + content: ""; } + +.fa-align-right:before { + content: ""; } + +.fa-align-justify:before { + content: ""; } + +.fa-list:before { + content: ""; } + +.fa-dedent:before, +.fa-outdent:before { + content: ""; } + +.fa-indent:before { + content: ""; } + +.fa-video-camera:before { + content: ""; } + +.fa-photo:before, +.fa-image:before, +.fa-picture-o:before { + content: ""; } + +.fa-pencil:before { + content: ""; } + +.fa-map-marker:before { + content: ""; } + +.fa-adjust:before { + content: ""; } + +.fa-tint:before { + content: ""; } + +.fa-edit:before, +.fa-pencil-square-o:before { + content: ""; } + +.fa-share-square-o:before { + content: ""; } + +.fa-check-square-o:before { + content: ""; } + +.fa-arrows:before { + content: ""; } + +.fa-step-backward:before { + content: ""; } + +.fa-fast-backward:before { + content: ""; } + +.fa-backward:before { + content: ""; } + +.fa-play:before { + content: ""; } + +.fa-pause:before { + content: ""; } + +.fa-stop:before { + content: ""; } + +.fa-forward:before { + content: ""; } + +.fa-fast-forward:before { + content: ""; } + +.fa-step-forward:before { + content: ""; } + +.fa-eject:before { + content: ""; } + +.fa-chevron-left:before { + content: ""; } + +.fa-chevron-right:before { + content: ""; } + +.fa-plus-circle:before { + content: ""; } + +.fa-minus-circle:before { + content: ""; } + +.fa-times-circle:before { + content: ""; } + +.fa-check-circle:before { + content: ""; } + +.fa-question-circle:before { + content: ""; } + +.fa-info-circle:before { + content: ""; } + +.fa-crosshairs:before { + content: ""; } + +.fa-times-circle-o:before { + content: ""; } + +.fa-check-circle-o:before { + content: ""; } + +.fa-ban:before { + content: ""; } + +.fa-arrow-left:before { + content: ""; } + +.fa-arrow-right:before { + content: ""; } + +.fa-arrow-up:before { + content: ""; } + +.fa-arrow-down:before { + content: ""; } + +.fa-mail-forward:before, +.fa-share:before { + content: ""; } + +.fa-expand:before { + content: ""; } + +.fa-compress:before { + content: ""; } + +.fa-plus:before { + content: ""; } + +.fa-minus:before { + content: ""; } + +.fa-asterisk:before { + content: ""; } + +.fa-exclamation-circle:before { + content: ""; } + +.fa-gift:before { + content: ""; } + +.fa-leaf:before { + content: ""; } + +.fa-fire:before { + content: ""; } + +.fa-eye:before { + content: ""; } + +.fa-eye-slash:before { + content: ""; } + +.fa-warning:before, +.fa-exclamation-triangle:before { + content: ""; } + +.fa-plane:before { + content: ""; } + +.fa-calendar:before { + content: ""; } + +.fa-random:before { + content: ""; } + +.fa-comment:before { + content: ""; } + +.fa-magnet:before { + content: ""; } + +.fa-chevron-up:before { + content: ""; } + +.fa-chevron-down:before { + content: ""; } + +.fa-retweet:before { + content: ""; } + +.fa-shopping-cart:before { + content: ""; } + +.fa-folder:before { + content: ""; } + +.fa-folder-open:before { + content: ""; } + +.fa-arrows-v:before { + content: ""; } + +.fa-arrows-h:before { + content: ""; } + +.fa-bar-chart-o:before, +.fa-bar-chart:before { + content: ""; } + +.fa-tt-square:before { + content: ""; } + +.fa-fb-square:before { + content: ""; } + +.fa-camera-retro:before { + content: ""; } + +.fa-key:before { + content: ""; } + +.fa-gears:before, +.fa-cogs:before { + content: ""; } + +.fa-comments:before { + content: ""; } + +.fa-thumbs-o-up:before { + content: ""; } + +.fa-thumbs-o-down:before { + content: ""; } + +.fa-star-half:before { + content: ""; } + +.fa-heart-o:before { + content: ""; } + +.fa-sign-out:before { + content: ""; } + +.fa-ll-square:before { + content: ""; } + +.fa-thumb-tack:before { + content: ""; } + +.fa-external-link:before { + content: ""; } + +.fa-sign-in:before { + content: ""; } + +.fa-trophy:before { + content: ""; } + +.fa-github-square:before { + content: ""; } + +.fa-upload:before { + content: ""; } + +.fa-lemon-o:before { + content: ""; } + +.fa-phone:before { + content: ""; } + +.fa-square-o:before { + content: ""; } + +.fa-bookmark-o:before { + content: ""; } + +.fa-phone-square:before { + content: ""; } + +.fa-tt:before { + content: ""; } + +.fa-fb:before { + content: ""; } + +.fa-github:before { + content: ""; } + +.fa-unlock:before { + content: ""; } + +.fa-credit-card:before { + content: ""; } + +.fa-rss:before { + content: ""; } + +.fa-hdd-o:before { + content: ""; } + +.fa-bullhorn:before { + content: ""; } + +.fa-bell:before { + content: ""; } + +.fa-certificate:before { + content: ""; } + +.fa-hand-o-right:before { + content: ""; } + +.fa-hand-o-left:before { + content: ""; } + +.fa-hand-o-up:before { + content: ""; } + +.fa-hand-o-down:before { + content: ""; } + +.fa-arrow-circle-left:before { + content: ""; } + +.fa-arrow-circle-right:before { + content: ""; } + +.fa-arrow-circle-up:before { + content: ""; } + +.fa-arrow-circle-down:before { + content: ""; } + +.fa-globe:before { + content: ""; } + +.fa-wrench:before { + content: ""; } + +.fa-tasks:before { + content: ""; } + +.fa-filter:before { + content: ""; } + +.fa-briefcase:before { + content: ""; } + +.fa-arrows-alt:before { + content: ""; } + +.fa-group:before, +.fa-users:before { + content: ""; } + +.fa-chain:before, +.fa-link:before { + content: ""; } + +.fa-cloud:before { + content: ""; } + +.fa-flask:before { + content: ""; } + +.fa-cut:before, +.fa-scissors:before { + content: ""; } + +.fa-copy:before, +.fa-files-o:before { + content: ""; } + +.fa-paperclip:before { + content: ""; } + +.fa-save:before, +.fa-floppy-o:before { + content: ""; } + +.fa-square:before { + content: ""; } + +.fa-navicon:before, +.fa-reorder:before, +.fa-bars:before { + content: ""; } + +.fa-list-ul:before { + content: ""; } + +.fa-list-ol:before { + content: ""; } + +.fa-strikethrough:before { + content: ""; } + +.fa-underline:before { + content: ""; } + +.fa-table:before { + content: ""; } + +.fa-magic:before { + content: ""; } + +.fa-truck:before { + content: ""; } + +.fa-pinterest:before { + content: ""; } + +.fa-pinterest-square:before { + content: ""; } + +.fa-google-plus-square:before { + content: ""; } + +.fa-google-plus:before { + content: ""; } + +.fa-money:before { + content: ""; } + +.fa-caret-down:before { + content: ""; } + +.fa-caret-up:before { + content: ""; } + +.fa-caret-left:before { + content: ""; } + +.fa-caret-right:before { + content: ""; } + +.fa-columns:before { + content: ""; } + +.fa-unsorted:before, +.fa-sort:before { + content: ""; } + +.fa-sort-down:before, +.fa-sort-desc:before { + content: ""; } + +.fa-sort-up:before, +.fa-sort-asc:before { + content: ""; } + +.fa-envelope:before { + content: ""; } + +.fa-ll:before { + content: ""; } + +.fa-rotate-left:before, +.fa-undo:before { + content: ""; } + +.fa-legal:before, +.fa-gavel:before { + content: ""; } + +.fa-dashboard:before, +.fa-tachometer:before { + content: ""; } + +.fa-comment-o:before { + content: ""; } + +.fa-comments-o:before { + content: ""; } + +.fa-flash:before, +.fa-bolt:before { + content: ""; } + +.fa-sitemap:before { + content: ""; } + +.fa-umbrella:before { + content: ""; } + +.fa-paste:before, +.fa-clipboard:before { + content: ""; } + +.fa-lightbulb-o:before { + content: ""; } + +.fa-exchange:before { + content: ""; } + +.fa-cloud-download:before { + content: ""; } + +.fa-cloud-upload:before { + content: ""; } + +.fa-user-md:before { + content: ""; } + +.fa-stethoscope:before { + content: ""; } + +.fa-suitcase:before { + content: ""; } + +.fa-bell-o:before { + content: ""; } + +.fa-coffee:before { + content: ""; } + +.fa-cutlery:before { + content: ""; } + +.fa-file-text-o:before { + content: ""; } + +.fa-building-o:before { + content: ""; } + +.fa-hospital-o:before { + content: ""; } + +.fa-ambulance:before { + content: ""; } + +.fa-medkit:before { + content: ""; } + +.fa-fighter-jet:before { + content: ""; } + +.fa-beer:before { + content: ""; } + +.fa-h-square:before { + content: ""; } + +.fa-plus-square:before { + content: ""; } + +.fa-angle-double-left:before { + content: ""; } + +.fa-angle-double-right:before { + content: ""; } + +.fa-angle-double-up:before { + content: ""; } + +.fa-angle-double-down:before { + content: ""; } + +.fa-angle-left:before { + content: ""; } + +.fa-angle-right:before { + content: ""; } + +.fa-angle-up:before { + content: ""; } + +.fa-angle-down:before { + content: ""; } + +.fa-desktop:before { + content: ""; } + +.fa-laptop:before { + content: ""; } + +.fa-tablet:before { + content: ""; } + +.fa-mobile-phone:before, +.fa-mobile:before { + content: ""; } + +.fa-circle-o:before { + content: ""; } + +.fa-quote-left:before { + content: ""; } + +.fa-quote-right:before { + content: ""; } + +.fa-spinner:before { + content: ""; } + +.fa-circle:before { + content: ""; } + +.fa-mail-reply:before, +.fa-reply:before { + content: ""; } + +.fa-github-alt:before { + content: ""; } + +.fa-folder-o:before { + content: ""; } + +.fa-folder-open-o:before { + content: ""; } + +.fa-smile-o:before { + content: ""; } + +.fa-frown-o:before { + content: ""; } + +.fa-meh-o:before { + content: ""; } + +.fa-gamepad:before { + content: ""; } + +.fa-keyboard-o:before { + content: ""; } + +.fa-flag-o:before { + content: ""; } + +.fa-flag-checkered:before { + content: ""; } + +.fa-terminal:before { + content: ""; } + +.fa-code:before { + content: ""; } + +.fa-mail-reply-all:before, +.fa-reply-all:before { + content: ""; } + +.fa-star-half-empty:before, +.fa-star-half-full:before, +.fa-star-half-o:before { + content: ""; } + +.fa-location-arrow:before { + content: ""; } + +.fa-crop:before { + content: ""; } + +.fa-code-fork:before { + content: ""; } + +.fa-unlink:before, +.fa-chain-broken:before { + content: ""; } + +.fa-question:before { + content: ""; } + +.fa-info:before { + content: ""; } + +.fa-exclamation:before { + content: ""; } + +.fa-superscript:before { + content: ""; } + +.fa-subscript:before { + content: ""; } + +.fa-eraser:before { + content: ""; } + +.fa-puzzle-piece:before { + content: ""; } + +.fa-microphone:before { + content: ""; } + +.fa-microphone-slash:before { + content: ""; } + +.fa-shield:before { + content: ""; } + +.fa-calendar-o:before { + content: ""; } + +.fa-fire-extinguisher:before { + content: ""; } + +.fa-rocket:before { + content: ""; } + +.fa-maxcdn:before { + content: ""; } + +.fa-chevron-circle-left:before { + content: ""; } + +.fa-chevron-circle-right:before { + content: ""; } + +.fa-chevron-circle-up:before { + content: ""; } + +.fa-chevron-circle-down:before { + content: ""; } + +.fa-html5:before { + content: ""; } + +.fa-css3:before { + content: ""; } + +.fa-anchor:before { + content: ""; } + +.fa-unlock-alt:before { + content: ""; } + +.fa-bullseye:before { + content: ""; } + +.fa-ellipsis-h:before { + content: ""; } + +.fa-ellipsis-v:before { + content: ""; } + +.fa-rss-square:before { + content: ""; } + +.fa-play-circle:before { + content: ""; } + +.fa-ticket:before { + content: ""; } + +.fa-minus-square:before { + content: ""; } + +.fa-minus-square-o:before { + content: ""; } + +.fa-level-up:before { + content: ""; } + +.fa-level-down:before { + content: ""; } + +.fa-check-square:before { + content: ""; } + +.fa-pencil-square:before { + content: ""; } + +.fa-external-link-square:before { + content: ""; } + +.fa-share-square:before { + content: ""; } + +.fa-compass:before { + content: ""; } + +.fa-toggle-down:before, +.fa-caret-square-o-down:before { + content: ""; } + +.fa-toggle-up:before, +.fa-caret-square-o-up:before { + content: ""; } + +.fa-toggle-right:before, +.fa-caret-square-o-right:before { + content: ""; } + +.fa-euro:before, +.fa-eur:before { + content: ""; } + +.fa-gbp:before { + content: ""; } + +.fa-dollar:before, +.fa-usd:before { + content: ""; } + +.fa-rupee:before, +.fa-inr:before { + content: ""; } + +.fa-cny:before, +.fa-rmb:before, +.fa-yen:before, +.fa-jpy:before { + content: ""; } + +.fa-ruble:before, +.fa-rouble:before, +.fa-rub:before { + content: ""; } + +.fa-won:before, +.fa-krw:before { + content: ""; } + +.fa-bitcoin:before, +.fa-btc:before { + content: ""; } + +.fa-file:before { + content: ""; } + +.fa-file-text:before { + content: ""; } + +.fa-sort-alpha-asc:before { + content: ""; } + +.fa-sort-alpha-desc:before { + content: ""; } + +.fa-sort-amount-asc:before { + content: ""; } + +.fa-sort-amount-desc:before { + content: ""; } + +.fa-sort-numeric-asc:before { + content: ""; } + +.fa-sort-numeric-desc:before { + content: ""; } + +.fa-thumbs-up:before { + content: ""; } + +.fa-thumbs-down:before { + content: ""; } + +.fa-youtube-square:before { + content: ""; } + +.fa-youtube:before { + content: ""; } + +.fa-xing:before { + content: ""; } + +.fa-xing-square:before { + content: ""; } + +.fa-youtube-play:before { + content: ""; } + +.fa-dropbox:before { + content: ""; } + +.fa-stack-overflow:before { + content: ""; } + +.fa-instagram:before { + content: ""; } + +.fa-flickr:before { + content: ""; } + +.fa-adn:before { + content: ""; } + +.fa-bitbucket:before { + content: ""; } + +.fa-bitbucket-square:before { + content: ""; } + +.fa-tumblr:before { + content: ""; } + +.fa-tumblr-square:before { + content: ""; } + +.fa-long-arrow-down:before { + content: ""; } + +.fa-long-arrow-up:before { + content: ""; } + +.fa-long-arrow-left:before { + content: ""; } + +.fa-long-arrow-right:before { + content: ""; } + +.fa-apple:before { + content: ""; } + +.fa-windows:before { + content: ""; } + +.fa-android:before { + content: ""; } + +.fa-linux:before { + content: ""; } + +.fa-dribbble:before { + content: ""; } + +.fa-skype:before { + content: ""; } + +.fa-foursquare:before { + content: ""; } + +.fa-trello:before { + content: ""; } + +.fa-female:before { + content: ""; } + +.fa-male:before { + content: ""; } + +.fa-gittip:before { + content: ""; } + +.fa-sun-o:before { + content: ""; } + +.fa-moon-o:before { + content: ""; } + +.fa-archive:before { + content: ""; } + +.fa-bug:before { + content: ""; } + +.fa-vk:before { + content: ""; } + +.fa-weibo:before { + content: ""; } + +.fa-renren:before { + content: ""; } + +.fa-pagelines:before { + content: ""; } + +.fa-stack-exchange:before { + content: ""; } + +.fa-arrow-circle-o-right:before { + content: ""; } + +.fa-arrow-circle-o-left:before { + content: ""; } + +.fa-toggle-left:before, +.fa-caret-square-o-left:before { + content: ""; } + +.fa-dot-circle-o:before { + content: ""; } + +.fa-wheelchair:before { + content: ""; } + +.fa-vimeo-square:before { + content: ""; } + +.fa-turkish-lira:before, +.fa-try:before { + content: ""; } + +.fa-plus-square-o:before { + content: ""; } + +.fa-space-shuttle:before { + content: ""; } + +.fa-slack:before { + content: ""; } + +.fa-envelope-square:before { + content: ""; } + +.fa-wordpress:before { + content: ""; } + +.fa-openid:before { + content: ""; } + +.fa-institution:before, +.fa-bank:before, +.fa-university:before { + content: ""; } + +.fa-mortar-board:before, +.fa-graduation-cap:before { + content: ""; } + +.fa-yahoo:before { + content: ""; } + +.fa-google:before { + content: ""; } + +.fa-reddit:before { + content: ""; } + +.fa-reddit-square:before { + content: ""; } + +.fa-stumbleupon-circle:before { + content: ""; } + +.fa-stumbleupon:before { + content: ""; } + +.fa-delicious:before { + content: ""; } + +.fa-digg:before { + content: ""; } + +.fa-pied-piper:before { + content: ""; } + +.fa-pied-piper-alt:before { + content: ""; } + +.fa-drupal:before { + content: ""; } + +.fa-joomla:before { + content: ""; } + +.fa-language:before { + content: ""; } + +.fa-fax:before { + content: ""; } + +.fa-building:before { + content: ""; } + +.fa-child:before { + content: ""; } + +.fa-paw:before { + content: ""; } + +.fa-spoon:before { + content: ""; } + +.fa-cube:before { + content: ""; } + +.fa-cubes:before { + content: ""; } + +.fa-behance:before { + content: ""; } + +.fa-behance-square:before { + content: ""; } + +.fa-steam:before { + content: ""; } + +.fa-steam-square:before { + content: ""; } + +.fa-recycle:before { + content: ""; } + +.fa-automobile:before, +.fa-car:before { + content: ""; } + +.fa-cab:before, +.fa-taxi:before { + content: ""; } + +.fa-tree:before { + content: ""; } + +.fa-spotify:before { + content: ""; } + +.fa-deviantart:before { + content: ""; } + +.fa-soundcloud:before { + content: ""; } + +.fa-database:before { + content: ""; } + +.fa-file-pdf-o:before { + content: ""; } + +.fa-file-word-o:before { + content: ""; } + +.fa-file-excel-o:before { + content: ""; } + +.fa-file-powerpoint-o:before { + content: ""; } + +.fa-file-photo-o:before, +.fa-file-picture-o:before, +.fa-file-image-o:before { + content: ""; } + +.fa-file-zip-o:before, +.fa-file-archive-o:before { + content: ""; } + +.fa-file-sound-o:before, +.fa-file-audio-o:before { + content: ""; } + +.fa-file-movie-o:before, +.fa-file-video-o:before { + content: ""; } + +.fa-file-code-o:before { + content: ""; } + +.fa-vine:before { + content: ""; } + +.fa-codepen:before { + content: ""; } + +.fa-jsfiddle:before { + content: ""; } + +.fa-life-bouy:before, +.fa-life-buoy:before, +.fa-life-saver:before, +.fa-support:before, +.fa-life-ring:before { + content: ""; } + +.fa-circle-o-notch:before { + content: ""; } + +.fa-ra:before, +.fa-rebel:before { + content: ""; } + +.fa-ge:before, +.fa-empire:before { + content: ""; } + +.fa-git-square:before { + content: ""; } + +.fa-git:before { + content: ""; } + +.fa-hacker-news:before { + content: ""; } + +.fa-tencent-weibo:before { + content: ""; } + +.fa-qq:before { + content: ""; } + +.fa-wechat:before, +.fa-weixin:before { + content: ""; } + +.fa-send:before, +.fa-paper-plane:before { + content: ""; } + +.fa-send-o:before, +.fa-paper-plane-o:before { + content: ""; } + +.fa-history:before { + content: ""; } + +.fa-circle-thin:before { + content: ""; } + +.fa-header:before { + content: ""; } + +.fa-paragraph:before { + content: ""; } + +.fa-sliders:before { + content: ""; } + +.fa-share-alt:before { + content: ""; } + +.fa-share-alt-square:before { + content: ""; } + +.fa-bomb:before { + content: ""; } + +.fa-soccer-ball-o:before, +.fa-futbol-o:before { + content: ""; } + +.fa-tty:before { + content: ""; } + +.fa-binoculars:before { + content: ""; } + +.fa-plug:before { + content: ""; } + +.fa-slideshare:before { + content: ""; } + +.fa-twitch:before { + content: ""; } + +.fa-yelp:before { + content: ""; } + +.fa-newspaper-o:before { + content: ""; } + +.fa-wifi:before { + content: ""; } + +.fa-calculator:before { + content: ""; } + +.fa-paypal:before { + content: ""; } + +.fa-google-wallet:before { + content: ""; } + +.fa-cc-visa:before { + content: ""; } + +.fa-cc-mastercard:before { + content: ""; } + +.fa-cc-discover:before { + content: ""; } + +.fa-cc-amex:before { + content: ""; } + +.fa-cc-paypal:before { + content: ""; } + +.fa-cc-stripe:before { + content: ""; } + +.fa-bell-slash:before { + content: ""; } + +.fa-bell-slash-o:before { + content: ""; } + +.fa-trash:before { + content: ""; } + +.fa-copyright:before { + content: ""; } + +.fa-at:before { + content: ""; } + +.fa-eyedropper:before { + content: ""; } + +.fa-paint-brush:before { + content: ""; } + +.fa-birthday-cake:before { + content: ""; } + +.fa-area-chart:before { + content: ""; } + +.fa-pie-chart:before { + content: ""; } + +.fa-line-chart:before { + content: ""; } + +.fa-lastfm:before { + content: ""; } + +.fa-lastfm-square:before { + content: ""; } + +.fa-toggle-off:before { + content: ""; } + +.fa-toggle-on:before { + content: ""; } + +.fa-bicycle:before { + content: ""; } + +.fa-bus:before { + content: ""; } + +.fa-ioxhost:before { + content: ""; } + +.fa-angellist:before { + content: ""; } + +.fa-cc:before { + content: ""; } + +.fa-shekel:before, +.fa-sheqel:before, +.fa-ils:before { + content: ""; } + +.fa-meanpath:before { + content: ""; } + +/* http://meyerweb.com/eric/tools/css/reset/ + v2.0 | 20110126 + License: none (public domain) +*/ +html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; } + +/* HTML5 display-role reset for older browsers */ +article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { + display: block; } + +body { + line-height: 1; } + +ol, ul { + list-style: none; } + +blockquote, q { + quotes: none; } + +blockquote:before, blockquote:after { + content: ''; + content: none; } + +q:before, q:after { + content: ''; + content: none; } + +table { + border-collapse: collapse; + border-spacing: 0; } + +/* Apply these base styles to all icons */ +.icon-feed, .icon-twitter, .icon-google-plus, .icon-facebook { + font-family: 'icons'; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + text-decoration: none; } + +/* Each icon is created by inserting the corret character into the + content of the :before pseudo element. Like a boss. */ +.icon-feed:before { + content: "\e001"; } + +.icon-twitter:before { + content: "\e002"; + font-size: 1.1em; } + +.icon-google-plus:before { + content: "\e003"; } + +.icon-facebook:before { + content: "\e004"; } + +/* ========================================================================== + 2. General - Setting up some base styles + ========================================================================== */ +html { + height: 100%; + max-height: 100%; + font-size: 67,5%; + overflow-x: hidden; } + +body { + height: 100%; + max-height: 100%; + font-family: sans-serif; + font-size: 1.4rem; + line-height: 1.6em; + color: #fef6eb; } + +a.fa { + text-decoration: none; } + +::-moz-selection { + color: #222; + background: #D6EDFF; + text-shadow: none; } + +::selection { + color: #222; + background: #D6EDFF; + text-shadow: none; } + +.left { + float: left; } + +.right { + float: right; } + +.clear { + clear: both; } + +h1, h2, h3, +h4, h5, h6 { + text-rendering: optimizeLegibility; + line-height: 1; + margin-top: 0; + margin-bottom: 10px; + font-family: sans-serif; } + +h3, h4, h5, h6 { + text-rendering: optimizeLegibility; + line-height: 120%; + margin-top: 0; + font-family: sans-serif; + margin-bottom: 0%; } + +h1 { + padding-top: 1rem; + font-size: 2.6rem; + line-height: 1.2em; + letter-spacing: -2px; + text-indent: -3px; } + +h2 { + font-size: 2rem; + line-height: 1.2em; + letter-spacing: -1px; + text-indent: -2px; } + +h3 { + font-size: 2rem; } + +h4 { + font-size: 1.5rem; } + +h5 { + font-size: 1rem; } + +h6 { + font-size: 1rem; } + +a { + color: inherit; + transition: all ease 0.3s; + -webkit-transition: all ease 0.3s; + -moz-transition: all ease 0.3s; } + +a:hover { + color: #fef6eb; } + +a.btn { + text-decoration: none; + background-color: #444444; + border-radius: 6px; + -webkit-border-radius: 6px; + color: #fef6eb; + display: inline-block; + font-size: 16px; + letter-spacing: 1px; + margin: 0; + overflow: visible; + padding: 10px 20px 10px 20px; + position: relative; + margin-top: 2rem; + cursor: pointer; + font-family: sans-serif; + text-transform: uppercase; + font-weight: lighter; } + +a.btn:hover { + background: #343434; } + +#header-arrow { + font-size: 140px; + margin: -10px auto; + text-align: center; + position: absolute; + width: 100%; + left: 0; + bottom: -120px; + cursor: pointer; + opacity: 0.6; + transition: all ease 0.3s; + -webkit-transition: all ease 0.3s; + -moz-transition: all ease 0.3s; } + +#header-arrow:hover { + opacity: 0.9; } + +h1 a, h2 a, h3 a, +h4 a, h5 a, h6 a { + /*color: #50585D;*/ } + +p, ul, ol { + margin: 1em 0; } + +ol ol, ul ul, +ul ol, ol ul { + margin: 0.4em 0; } + +hr { + display: block; + height: 1px; + border: 0; + border-top: 1px solid #efefef; + margin: 3.2em 0; + padding: 0; } + +blockquote { + -moz-box-sizing: border-box; + box-sizing: border-box; + margin: 1.0em 0 1.0em -2.2em; + padding: 0 0 0 1.0em; + /*border-left: #4a4a4a 0.4em solid;*/ + font-weight: lighter; } + +blockquote p { + margin: 0.8em 0; } + +.quo { + /*float: left;*/ + margin-right: 10px; + margin-left: 10px; + font-size: 20px; } + +blockquote small { + display: inline-block; + margin: 0.8em 0 0.8em 1.5em; + font-size: 0.9em; + color: #ccc; } + +blockquote small:before { + content: '\2014 \00A0'; } + +blockquote cite { + font-weight: bold; } + +blockquote cite a { + font-weight: normal; } + +dl { + margin: 1.6em 0; } + +dl dt { + float: left; + width: 180px; + overflow: hidden; + clear: left; + text-align: right; + text-overflow: ellipsis; + white-space: nowrap; + font-weight: bold; + margin-bottom: 1em; } + +dl dd { + margin-left: 200px; + margin-bottom: 1em; } + +mark { + background-color: #ffc336; } + +code, tt { + padding: 3px 5px; + font-family: monospace, sans-serif; + font-size: 0.75em; + /*white-space: pre;*/ + border: 1px solid #E3EDF3; + background: #F7FAFB; + border-radius: 2px; + color: black; } + +pre { + -moz-box-sizing: border-box; + box-sizing: border-box; + margin: 1.6em 0; + border: 1px solid #E3EDF3; + width: 100%; + padding: 10px; + font-family: monospace, sans-serif; + font-size: 0.9em; + white-space: pre; + overflow: auto; + background: #F7FAFB; + border-radius: 3px; } + +pre code, tt { + font-size: inherit; + white-space: -moz-pre-wrap; + white-space: pre-wrap; + background: transparent; + border: none; + padding: 0; } + +kbd { + display: inline-block; + margin-bottom: 0.4em; + padding: 1px 8px; + border: #ccc 1px solid; + color: #666; + text-shadow: #fff 0 1px 0; + font-size: 0.9em; + font-weight: bold; + background: #f4f4f4; + border-radius: 4px; + box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 1px 0 0 #fff inset; } + +table { + -moz-box-sizing: border-box; + box-sizing: border-box; + margin: 1.6em 0; + width: 100%; + max-width: 100%; + background-color: transparent; } + +table th, +table td { + padding: 8px; + line-height: 20px; + text-align: left; + vertical-align: top; + border-top: 1px solid #efefef; } + +table th { + color: #000; } + +table caption + thead tr:first-child th, +table caption + thead tr:first-child td, +table colgroup + thead tr:first-child th, +table colgroup + thead tr:first-child td, +table thead:first-child tr:first-child th, +table thead:first-child tr:first-child td { + border-top: 0; } + +table tbody + tbody { + border-top: 2px solid #efefef; } + +table table table { + background-color: #fff; } + +table tbody > tr:nth-child(odd) > td, +table tbody > tr:nth-child(odd) > th { + background-color: #f6f6f6; } + +table.plain tbody > tr:nth-child(odd) > td, +table.plain tbody > tr:nth-child(odd) > th { + background: transparent; } + +li { + margin-left: 30px; } + +ul li { + list-style-type: none; } + +.bult { + display: inline; + float: left; + padding-top: 7px; } + +/* ========================================================================== + 3. Utilities - These things get used a lot + ========================================================================== */ +/* Hides shit */ +.hidden { + text-indent: -9999px; + visibility: hidden; + display: none; } + +/* Creates a responsive wrapper that makes our content scale nicely */ +.inner { + position: relative; + width: 80%; + max-width: 700px; + margin: 0 auto; } + +/* Centres vertically yo. (IE8+) */ +.vertical { + display: table-cell; + vertical-align: middle; } + +/* ========================================================================== + 4. General - The main styles for the the theme + ========================================================================== */ +/* Big cover image on the home page */ +#site-head { + position: relative; + display: table; + width: 100%; + height: 100%; + margin-bottom: 0rem; + text-align: center; + color: #fef6eb; + background: #525564 no-repeat center center; + background-size: cover; } + +#blog-logo img { + display: block; + max-height: 100px; + width: auto; + margin: 0 auto; + line-height: 0; } + +#back { + color: rgba(0, 0, 0, 0.2); + position: fixed; + top: 8px; + left: 8px; + padding: 6px; + font-size: 16px; } + +.blog-title { + margin: 10px 0 10px 0; + font-size: 5rem; + letter-spacing: -1px; } + +.blog-description { + margin: 0; + font-size: 1.8rem; + line-height: 1.5em; + font-weight: 300; + font-family: sans-serif; + letter-spacing: 0; } + +.post-holder { + width: 100%; + height: 100%; + background: #74828f; + position: relative; } + +.oneOff { + background: #525564; + color: #fef6eb; } + +/* Every post, on every page, gets this style on its
tag */ +.post { + position: relative; + width: 80%; + max-width: 700px; + margin: 0rem auto; + padding-top: 4rem; + height: 70%; + word-break: break-word; + hyphens: auto; } + +/* Add a little circle in the middle of the border-bottom on our .post + just for the lolz and stylepoints. */ +.fixed-nav { + display: none; + opacity: 1; + position: fixed; + top: 40px; + left: 2%; + z-index: 99999; + font-family: sans-serif; + text-transform: uppercase; + font-size: 1.5rem; + line-height: 130%; + font-weight: bold; } + +a.fn-item { + display: block; + cursor: pointer; + opacity: 0.7; } + +.white { + color: #fef6eb; } + +a.fn-item:hover { + color: #9FD067; } + +a.fn-item.active { + color: #93ca54; + opacity: 1; } + +.post-after { + position: absolute; + bottom: -40px; + right: 6%; + z-index: 1; + width: 0; + height: 0; + border-left: 60px solid transparent; + border-right: 60px solid transparent; + border-top: 50px solid #f2efe8; + border-radius: 25px; } + +.post-title { + margin: 0; } + +.post-title a { + text-decoration: none; } + +.post-excerpt p { + margin: 1.6rem 0 0 0; + font-size: 0.9em; + line-height: 1.6em; } + +.post-meta { + display: inline-block; + margin: 0 0 5px 0; + font-family: sans-serif; + font-size: 1.5rem; + color: #9EABB3; } + +.post-meta a { + color: #9EABB3; + text-decoration: none; } + +.post-meta a:hover { + text-decoration: underline; } + +.user-meta { + position: relative; + padding: 0.3rem 40px 0 100px; + min-height: 77px; } + +.user-image { + position: absolute; + top: 0; + left: 0; } + +.user-name { + display: block; + font-weight: bold; } + +.user-bio { + display: block; + max-width: 440px; + font-size: 1.4rem; + line-height: 1.5em; } + +.publish-meta { + position: absolute; + top: 0; + right: 0; + padding: 4.3rem 0 4rem 0; + text-align: right; } + +.publish-heading { + display: block; + font-weight: bold; } + +.publish-date { + display: block; + font-size: 1.4rem; + line-height: 1.5em; } + +/* ========================================================================== + 5. Single Post - When you click on an individual post + ========================================================================== */ +/* Tweak the .post wrapper style */ +.post-template .post { + margin-top: 0; + border-bottom: none; + padding-bottom: 0; } + +/* Kill that stylish little circle that was on the border, too */ +.post-template .post:after { + display: none; } + +/* Insert some mad padding up in the header for better spacing */ +.post-template .post-header { + padding: 60px 0; } + +/* Keep large images within the bounds of the post-width */ +.post-content img { + display: block; + max-width: 100%; + margin: 0 auto; } + +/* The author credit area after the post */ +.post-footer { + position: relative; + margin: 4rem 0 0 0; + padding: 4rem 0 0 0; +/* border-top: #EBF2F6 1px solid; */ +} + +.post-footer h4 { + font-size: 1.8rem; + margin: 0; } + +.post-footer p { + margin: 1rem 0; + font-size: 1.4rem; + line-height: 1.6em; } + +/* Create some space to the right for the share links */ +.post-footer .author { + margin-right: 180px; } + +/* Drop the share links in the space to the right. + Doing it like this means it's easier for the author bio + to be flexible at smaller screen sizes while the share + links remain at a fixed width the whole time */ +.post-footer .share { + position: absolute; + top: 4rem; + right: 0; + width: 140px; } + +.post-footer .share a { + font-size: 1.8rem; + display: inline-block; + margin: 1.4rem 1.6rem 1.6rem 0; + color: #BBC7CC; } + +.post-footer .share a:hover { + color: #fef6eb; } + +/* ========================================================================== + 6. Third Party Elements - Embeds from other services + ========================================================================== */ +/* Github */ +.gist table { + margin: 0; + font-size: 1.4rem; } + +.gist .line-number { + min-width: 25px; + font-size: 1.1rem; } + +/* ========================================================================== + 7. Pagination - Tools to let you flick between pages + ========================================================================== */ +/* The main wrapper for our pagination links */ +.pagination { + position: relative; + width: 80%; + max-width: 700px; + margin: 4rem auto; + font-family: sans-serif; + font-size: 1.3rem; + color: #9EABB3; + text-align: center; } + +.pagination a { + color: #9EABB3; } + +/* Push the previous/next links out to the left/right */ +.older-posts, +.newer-posts { + position: absolute; + display: inline-block; + padding: 0 15px; + border: #EBF2F6 2px solid; + text-decoration: none; + border-radius: 30px; + transition: border ease 0.3s; } + +.older-posts { + right: 0; } + +.page-number { + display: inline-block; + padding: 2px 0; } + +.newer-posts { + left: 0; } + +.older-posts:hover, +.newer-posts:hover { + border-color: #9EABB3; } + +/* ========================================================================== + 8. Footer - The bottom of every page + ========================================================================== */ +.site-footer { + position: relative; + margin: 0rem 0 0 0; + padding: 1rem 0; + font-family: sans-serif; + font-size: 0.8rem; + line-height: 1.5em; + color: #fef6eb; + text-align: center; + background: #74828f; } + +/* The subscribe icon on the footer */ +.subscribe { + width: 28px; + height: 28px; + position: absolute; + top: -14px; + left: 50%; + margin-left: -15px; + border: #EBF2F6 1px solid; + text-align: center; + line-height: 2.4rem; + border-radius: 50px; + background: #fff; + transition: box-shadow 0.5s; } + +/* The RSS icon, inserted via icon font */ +.subscribe:before { + color: #D2DEE3; + font-size: 10px; + position: absolute; + top: 2px; + left: 9px; + font-weight: bold; + transition: color 0.5s ease; } + +/* Add a box shadow to on hover */ +.subscribe:hover { + box-shadow: rgba(0, 0, 0, 0.05) 0 0 0 3px; + transition: box-shadow 0.25s; } + +.subscribe:hover:before { + color: #fef6eb; } + +/* CSS tooltip saying "Subscribe!" - initially hidden */ +.tooltip { + opacity: 0; + display: inline-block; + padding: 4px 8px 5px 8px; + position: absolute; + top: -23px; + left: -23px; + color: rgba(255, 255, 255, 0.9); + font-size: 1.1rem; + font-weight: bold; + line-height: 1em; + text-align: center; + background: #50585D; + border-radius: 20px; + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); + transition: opacity 0.3s ease, top 0.3s ease; } + +/* The little chiclet arrow under the tooltip, pointing down */ +.tooltip:after { + content: ""; + border-width: 5px 5px 0 5px; + border-style: solid; + border-color: #50585D transparent; + display: block; + position: absolute; + bottom: -4px; + left: 50%; + margin-left: -5px; + z-index: 220; + width: 0; } + +/* On hover, show the tooltip! */ +.subscribe:hover .tooltip { + opacity: 1; + top: -33px; } + +/* ========================================================================== + 9. Media Queries - Smaller than 1130px + ========================================================================== */ +@media only screen and (max-width: 1130px) { + .fixed-nav { + opacity: 1; + position: fixed; + top: 0px; + left: 0px; + z-index: 99999; + background: #f2efe8; + width: 100%; + text-align: center; + padding: 4px; } + + a.fn-item { + display: inline; + margin-left: 10px; } + + blockquote { + margin-left: 0; } + + .post-holder { + padding-top: 20px; } + + #site-head { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + min-height: 240px; + padding: 15% 0; + height: 100%; + margin-bottom: 0rem; } + + .blog-title { + font-size: 4rem; + letter-spacing: -1px; } + + .blog-description { + font-size: 1.7rem; + line-height: 1.5em; } + + .post { + font-size: 0.9em; + line-height: 1.6em; } + + .post-template .post { + padding-bottom: 1rem; } + + .post-template .post-header { + padding: 40px 0; } + + h1 { + font-size: 4.8rem; + text-indent: -2px; } + + h2 { + font-size: 3.8rem; } + + h3 { + font-size: 3.3rem; } + + h4 { + font-size: 2.8rem; } } +/* ========================================================================== + 10. Media Queries - Smaller than 500px + ========================================================================== */ +@media only screen and (max-width: 500px) { + .fixed-nav { + display: none; } + + .post-holder { + padding-top: 20px; } + + #blog-logo img { + max-height: 80px; } + + .inner, + .pagination { + width: auto; + margin-left: 16px; + margin-right: 16px; } + + .post { + width: auto; + margin-left: 16px; + margin-right: 16px; + font-size: 0.8em; + line-height: 1.6em; } + + #site-head { + padding: 10% 0; + height: 65%; } + + #header-arrow { + display: none; } + + a.btn { + margin-top: 10px; } + + .blog-title { + font-size: 3rem; } + + .blog-description { + font-size: 1.5rem; } + + h1, h2 { + font-size: 3rem; + line-height: 1.1em; + letter-spacing: -1px; } + + h3 { + font-size: 2.8rem; } + + h4 { + font-size: 2.3rem; } + + .post-template .post { + padding-bottom: 0; } + + .post-template .post-header { + padding: 30px 0; } + + .post-meta { + font-size: 1.3rem; } + + .post-footer { + padding: 4rem 0; + text-align: center; } + + .post-footer .author { + margin: 0 0 2rem 0; + padding: 0 0 1.6rem 0; + border-bottom: #EBF2F6 1px dashed; } + + .post-footer .share { + position: static; + width: auto; } + + .post-footer .share a { + margin: 1.4rem 0.8rem 0 0.8rem; } + + .older-posts, + .newer-posts { + position: static; + margin: 10px 0; } + + .page-number { + display: block; } + + .site-footer { + /*margin-top: 0.8rem;*/ + font-size: 1.1rem; } } +/* ========================================================================== + End of file. Media queries should be the last thing here. Do not add stuff + below this point, or it will probably fuck everything up. + ========================================================================== */ + +/*# sourceMappingURL=base.css.map */ diff --git a/themes/scroll/static/css/base.css.map b/themes/scroll/static/css/base.css.map new file mode 100644 index 0000000..45eac94 --- /dev/null +++ b/themes/scroll/static/css/base.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": "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", +"sources": ["../scss/font-awesome/_path.scss","../scss/font-awesome/_core.scss","../scss/font-awesome/_larger.scss","../scss/font-awesome/_fixed-width.scss","../scss/font-awesome/_list.scss","../scss/font-awesome/_variables.scss","../scss/font-awesome/_bordered-pulled.scss","../scss/font-awesome/_spinning.scss","../scss/font-awesome/_rotated-flipped.scss","../scss/font-awesome/_mixins.scss","../scss/font-awesome/_stacked.scss","../scss/font-awesome/_icons.scss","../scss/_reset.scss","../scss/_icons.scss","../scss/_global.scss","../scss/_variables.scss","../scss/_media-queries.scss"], +"names": [], +"file": "base.css" +} \ No newline at end of file diff --git a/themes/scroll/static/css/base.min.css b/themes/scroll/static/css/base.min.css new file mode 100644 index 0000000..affeb86 --- /dev/null +++ b/themes/scroll/static/css/base.min.css @@ -0,0 +1,4 @@ +@charset "UTF-8";/*! + * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:FontAwesome;src:url(../fonts/font-awesome/fontawesome-webfont.eot?v=4.2.0);src:url(../fonts/font-awesome/fontawesome-webfont.eot?#iefix&v=4.2.0) format("embedded-opentype"),url(../fonts/font-awesome/fontawesome-webfont.woff?v=4.2.0) format("woff"),url(../fonts/font-awesome/fontawesome-webfont.ttf?v=4.2.0) format("truetype"),url(../fonts/font-awesome/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14286em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14286em;width:2.14286em;top:.14286em;text-align:center}.fa-li.fa-lg{left:-1.85714em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0);-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-close:before,.fa-remove:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-cog:before,.fa-gear:before{content:""}.fa-trash-o:before{content:""}.fa-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-repeat:before,.fa-rotate-right:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before{content:""}.fa-check-circle:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-exclamation-triangle:before,.fa-warning:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-tt-square:before{content:""}.fa-fb-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-cogs:before,.fa-gears:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-ll-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-tt:before{content:""}.fa-fb:before{content:""}.fa-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-floppy-o:before,.fa-save:before{content:""}.fa-square:before{content:""}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-sort:before,.fa-unsorted:before{content:""}.fa-sort-desc:before,.fa-sort-down:before{content:""}.fa-sort-asc:before,.fa-sort-up:before{content:""}.fa-envelope:before{content:""}.fa-ll:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-gavel:before,.fa-legal:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-bolt:before,.fa-flash:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-clipboard:before,.fa-paste:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-chain-broken:before,.fa-unlink:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:""}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:""}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:""}.fa-eur:before,.fa-euro:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-inr:before,.fa-rupee:before{content:""}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:""}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:""}.fa-krw:before,.fa-won:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-try:before,.fa-turkish-lira:before{content:""}.fa-plus-square-o:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-bank:before,.fa-institution:before,.fa-university:before{content:""}.fa-graduation-cap:before,.fa-mortar-board:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:""}.fa-file-archive-o:before,.fa-file-zip-o:before{content:""}.fa-file-audio-o:before,.fa-file-sound-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before{content:""}.fa-empire:before,.fa-ge:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-paper-plane:before,.fa-send:before{content:""}.fa-paper-plane-o:before,.fa-send-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:""}.fa-meanpath:before{content:""}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}.icon-facebook,.icon-feed,.icon-google-plus,.icon-twitter{font-family:icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;text-decoration:none}.icon-feed:before{content:"\e001"}.icon-twitter:before{content:"\e002";font-size:1.1em}.icon-google-plus:before{content:"\e003"}.icon-facebook:before{content:"\e004"}html{height:100%;max-height:100%;font-size:62.5%;overflow-x:hidden}body{height:100%;max-height:100%;font-family:"Roboto Slab",serif;font-size:2rem;line-height:1.6em;color:#3A4145}a.fa{text-decoration:none}::-moz-selection{color:#222;background:#D6EDFF;text-shadow:none}::selection{color:#222;background:#D6EDFF;text-shadow:none}.left{float:left}.right{float:right}.clear{clear:both}h1,h2,h3,h4,h5,h6{text-rendering:optimizeLegibility;line-height:1;margin-top:0;margin-bottom:10px;font-family:Raleway,sans-serif}h3,h4,h5,h6{text-rendering:optimizeLegibility;line-height:120%;margin-top:0;font-family:Raleway,sans-serif;margin-bottom:0}h1{font-size:5rem;line-height:1.2em;letter-spacing:-2px;text-indent:-3px}h2{font-size:4rem;line-height:1.2em;letter-spacing:-1px;text-indent:-2px}h3{font-size:3.5rem}h4{font-size:3rem}h5{font-size:2.5rem}h6{font-size:2rem}a{color:inherit;transition:all ease .3s;-webkit-transition:all ease .3s;-moz-transition:all ease .3s}a:hover{color:#79b337}a.btn{text-decoration:none;background-color:#9FD067;border-radius:6px;-webkit-border-radius:6px;color:#fff;display:inline-block;font-size:16px;letter-spacing:1px;margin:2rem 0 0;overflow:visible;padding:10px 20px;position:relative;cursor:pointer;font-family:Oswald,sans-serif;text-transform:uppercase;font-weight:lighter}a.btn:hover{background:#79b337}#header-arrow{font-size:140px;margin:-10px auto;text-align:center;position:absolute;width:100%;left:0;bottom:-120px;cursor:pointer;opacity:.6;transition:all ease .3s;-webkit-transition:all ease .3s;-moz-transition:all ease .3s}#header-arrow:hover{opacity:.9}ol,p,ul{margin:1em 0}ol ol,ol ul,ul ol,ul ul{margin:.4em 0}hr{display:block;height:1px;border:0;border-top:1px solid #efefef;margin:3.2em 0;padding:0}blockquote{-moz-box-sizing:border-box;box-sizing:border-box;margin:1em 0 1em -2.2em;padding:0 0 0 1em;font-weight:lighter}blockquote p{margin:.8em 0}.quo{margin-right:10px;margin-left:10px;font-size:20px}blockquote small{display:inline-block;margin:.8em 0 .8em 1.5em;font-size:.9em;color:#ccc}blockquote small:before{content:'\2014 \00A0'}blockquote cite{font-weight:700}blockquote cite a{font-weight:400}dl{margin:1.6em 0}dl dt{float:left;width:180px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap;font-weight:700;margin-bottom:1em}dl dd{margin-left:200px;margin-bottom:1em}mark{background-color:#ffc336}code,tt{padding:3px 5px;font-family:monospace,sans-serif;font-size:.75em;border:1px solid #E3EDF3;background:#F7FAFB;border-radius:2px;color:#3A4145}pre{-moz-box-sizing:border-box;box-sizing:border-box;margin:1.6em 0;border:1px solid #E3EDF3;width:100%;padding:10px;font-family:monospace,sans-serif;font-size:.9em;white-space:pre;overflow:auto;background:#F7FAFB;border-radius:3px}pre code,tt{font-size:inherit;white-space:-moz-pre-wrap;white-space:pre-wrap;background:0 0;border:none;padding:0}kbd{display:inline-block;margin-bottom:.4em;padding:1px 8px;border:1px solid #ccc;color:#666;text-shadow:#fff 0 1px 0;font-size:.9em;font-weight:700;background:#f4f4f4;border-radius:4px;box-shadow:0 1px 0 rgba(0,0,0,.2),0 1px 0 0 #fff inset}table{-moz-box-sizing:border-box;box-sizing:border-box;margin:1.6em 0;width:100%;max-width:100%;background-color:transparent}table td,table th{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #efefef}table th{color:#000}table caption+thead tr:first-child td,table caption+thead tr:first-child th,table colgroup+thead tr:first-child td,table colgroup+thead tr:first-child th,table thead:first-child tr:first-child td,table thead:first-child tr:first-child th{border-top:0}table tbody+tbody{border-top:2px solid #efefef}table table table{background-color:#fff}table tbody>tr:nth-child(odd)>td,table tbody>tr:nth-child(odd)>th{background-color:#f6f6f6}table.plain tbody>tr:nth-child(odd)>td,table.plain tbody>tr:nth-child(odd)>th{background:0 0}li{margin-left:30px}ul li{list-style-type:none}.bult{display:inline;float:left;padding-top:7px}.hidden{text-indent:-9999px;visibility:hidden;display:none}.inner{position:relative;width:80%;max-width:700px;margin:0 auto}.vertical{display:table-cell;vertical-align:middle}#site-head{position:relative;display:table;width:100%;height:100%;margin-bottom:0;text-align:center;color:#fff;background:center center/cover no-repeat #09c}#blog-logo img{display:block;max-height:100px;width:auto;margin:0 auto;line-height:0}#back{color:rgba(0,0,0,.2);position:fixed;top:8px;left:8px;padding:6px;font-size:16px}.blog-title{margin:10px 0;font-size:5rem;letter-spacing:-1px}.blog-description{margin:0;font-size:1.8rem;line-height:1.5em;font-weight:300;font-family:"Roboto Slab",serif;letter-spacing:0}.post-holder{width:100%;height:100%;background:#f2efe8;position:relative}.oneOff{background:#5BA4E5;color:'white'}.post{position:relative;width:80%;max-width:700px;margin:0 auto;padding-bottom:4rem;padding-top:4rem;height:70%;word-break:break-word;hyphens:auto}.fixed-nav{display:none;opacity:1;position:fixed;top:40px;left:2%;z-index:99999;font-family:Raleway,sans-serif;text-transform:uppercase;font-size:1.5rem;line-height:130%;font-weight:700}a.fn-item{display:block;cursor:pointer;opacity:.7}.white{color:#fff}a.fn-item:hover{color:#9FD067}a.fn-item.active{color:#79b337;opacity:1}.post-after{position:absolute;bottom:-40px;right:6%;z-index:1;width:0;height:0;border-left:60px solid transparent;border-right:60px solid transparent;border-top:50px solid #f2efe8;border-radius:25px}.post-title{margin:0}.post-title a{text-decoration:none}.post-excerpt p{margin:1.6rem 0 0;font-size:.9em;line-height:1.6em}.post-meta{display:inline-block;margin:0 0 5px;font-family:Raleway,sans-serif;font-size:1.5rem;color:#9EABB3}.post-meta a{color:#9EABB3;text-decoration:none}.post-meta a:hover{text-decoration:underline}.user-meta{position:relative;padding:.3rem 40px 0 100px;min-height:77px}.user-image{position:absolute;top:0;left:0}.user-name{display:block;font-weight:700}.user-bio{display:block;max-width:440px;font-size:1.4rem;line-height:1.5em}.publish-meta{position:absolute;top:0;right:0;padding:4.3rem 0 4rem;text-align:right}.publish-heading{display:block;font-weight:700}.publish-date{display:block;font-size:1.4rem;line-height:1.5em}.post-template .post{margin-top:0;border-bottom:none;padding-bottom:0}.post-template .post:after{display:none}.post-template .post-header{padding:60px 0}.post-content img{display:block;max-width:100%;margin:0 auto}.post-footer{position:relative;margin:4rem 0 0;padding:4rem 0 0;border-top:#EBF2F6 1px solid}.post-footer h4{font-size:1.8rem;margin:0}.post-footer p{margin:1rem 0;font-size:1.4rem;line-height:1.6em}.post-footer .author{margin-right:180px}.post-footer .share{position:absolute;top:4rem;right:0;width:140px}.post-footer .share a{font-size:1.8rem;display:inline-block;margin:1.4rem 1.6rem 1.6rem 0;color:#BBC7CC}.post-footer .share a:hover{color:#50585D}.gist table{margin:0;font-size:1.4rem}.gist .line-number{min-width:25px;font-size:1.1rem}.pagination{position:relative;width:80%;max-width:700px;margin:4rem auto;font-family:Raleway,sans-serif;font-size:1.3rem;color:#9EABB3;text-align:center}.pagination a{color:#9EABB3}.newer-posts,.older-posts{position:absolute;display:inline-block;padding:0 15px;border:2px solid #EBF2F6;text-decoration:none;border-radius:30px;transition:border ease .3s}.older-posts{right:0}.page-number{display:inline-block;padding:2px 0}.newer-posts{left:0}.newer-posts:hover,.older-posts:hover{border-color:#9EABB3}.site-footer{position:relative;margin:0;padding:1rem 0;font-family:Raleway,sans-serif;font-size:1.3rem;line-height:1.5em;color:#BBC7CC;text-align:center;background:#22343A}.site-footer a{color:#BBC7CC;text-decoration:underline}.site-footer a:hover{color:#50585D}.subscribe{width:28px;height:28px;position:absolute;top:-14px;left:50%;margin-left:-15px;border:1px solid #EBF2F6;text-align:center;line-height:2.4rem;border-radius:50px;background:#fff;transition:box-shadow .5s}.subscribe:before{color:#D2DEE3;font-size:10px;position:absolute;top:2px;left:9px;font-weight:700;transition:color .5s ease}.subscribe:hover{box-shadow:rgba(0,0,0,.05) 0 0 0 3px;transition:box-shadow .25s}.subscribe:hover:before{color:#50585D}.tooltip{opacity:0;display:inline-block;padding:4px 8px 5px;position:absolute;top:-23px;left:-23px;color:rgba(255,255,255,.9);font-size:1.1rem;font-weight:700;line-height:1em;text-align:center;background:#50585D;border-radius:20px;box-shadow:0 1px 4px rgba(0,0,0,.1);transition:opacity .3s ease,top .3s ease}.tooltip:after{content:"";border-width:5px 5px 0;border-style:solid;border-color:#50585D transparent;display:block;position:absolute;bottom:-4px;left:50%;margin-left:-5px;z-index:220;width:0}.subscribe:hover .tooltip{opacity:1;top:-33px}@media only screen and (max-width:1130px){.fixed-nav{opacity:1;position:fixed;top:0;left:0;z-index:99999;background:#f2efe8;width:100%;text-align:center;padding:4px}a.fn-item{display:inline;margin-left:10px}blockquote{margin-left:0}.post-holder{padding-top:20px}#site-head{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;min-height:240px;padding:15% 0;height:100%;margin-bottom:0}.blog-title{font-size:4rem;letter-spacing:-1px}.blog-description{font-size:1.7rem;line-height:1.5em}.post{font-size:.9em;line-height:1.6em}.post-template .post{padding-bottom:1rem}.post-template .post-header{padding:40px 0}h1{font-size:4.8rem;text-indent:-2px}h2{font-size:3.8rem}h3{font-size:3.3rem}h4{font-size:2.8rem}}@media only screen and (max-width:500px){.fixed-nav{display:none}.post-holder{padding-top:20px}#blog-logo img{max-height:80px}.inner,.pagination{width:auto;margin-left:16px;margin-right:16px}.post{width:auto;margin-left:16px;margin-right:16px;font-size:.8em;line-height:1.6em}#site-head{padding:10% 0;height:65%}#header-arrow{display:none}a.btn{margin-top:10px}.blog-title{font-size:3rem}.blog-description{font-size:1.5rem}h1,h2{font-size:3rem;line-height:1.1em;letter-spacing:-1px}h3{font-size:2.8rem}h4{font-size:2.3rem}.post-template .post{padding-bottom:0}.post-template .post-header{padding:30px 0}.post-meta{font-size:1.3rem}.post-footer{padding:4rem 0;text-align:center}.post-footer .author{margin:0 0 2rem;padding:0 0 1.6rem;border-bottom:#EBF2F6 1px dashed}.post-footer .share{position:static;width:auto}.post-footer .share a{margin:1.4rem .8rem 0}.newer-posts,.older-posts{position:static;margin:10px 0}.page-number{display:block}.site-footer{font-size:1.1rem}} diff --git a/themes/scroll/static/fonts/font-awesome/FontAwesome.otf b/themes/scroll/static/fonts/font-awesome/FontAwesome.otf new file mode 100644 index 0000000..81c9ad9 Binary files /dev/null and b/themes/scroll/static/fonts/font-awesome/FontAwesome.otf differ diff --git a/themes/scroll/static/fonts/font-awesome/fontawesome-webfont.eot b/themes/scroll/static/fonts/font-awesome/fontawesome-webfont.eot new file mode 100644 index 0000000..84677bc Binary files /dev/null and b/themes/scroll/static/fonts/font-awesome/fontawesome-webfont.eot differ diff --git a/themes/scroll/static/fonts/font-awesome/fontawesome-webfont.svg b/themes/scroll/static/fonts/font-awesome/fontawesome-webfont.svg new file mode 100644 index 0000000..d907b25 --- /dev/null +++ b/themes/scroll/static/fonts/font-awesome/fontawesome-webfont.svg @@ -0,0 +1,520 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/scroll/static/fonts/font-awesome/fontawesome-webfont.ttf b/themes/scroll/static/fonts/font-awesome/fontawesome-webfont.ttf new file mode 100644 index 0000000..96a3639 Binary files /dev/null and b/themes/scroll/static/fonts/font-awesome/fontawesome-webfont.ttf differ diff --git a/themes/scroll/static/fonts/font-awesome/fontawesome-webfont.woff b/themes/scroll/static/fonts/font-awesome/fontawesome-webfont.woff new file mode 100644 index 0000000..628b6a5 Binary files /dev/null and b/themes/scroll/static/fonts/font-awesome/fontawesome-webfont.woff differ diff --git a/themes/scroll/static/fonts/icons.dev.svg b/themes/scroll/static/fonts/icons.dev.svg new file mode 100644 index 0000000..dac6a13 --- /dev/null +++ b/themes/scroll/static/fonts/icons.dev.svg @@ -0,0 +1,41 @@ + + + + +This is a custom SVG font generated by IcoMoon. + + + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/scroll/static/fonts/icons.eot b/themes/scroll/static/fonts/icons.eot new file mode 100644 index 0000000..68c968d Binary files /dev/null and b/themes/scroll/static/fonts/icons.eot differ diff --git a/themes/scroll/static/fonts/icons.svg b/themes/scroll/static/fonts/icons.svg new file mode 100644 index 0000000..182aa87 --- /dev/null +++ b/themes/scroll/static/fonts/icons.svg @@ -0,0 +1,41 @@ + + + + +This is a custom SVG font generated by IcoMoon. + + + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/scroll/static/fonts/icons.ttf b/themes/scroll/static/fonts/icons.ttf new file mode 100644 index 0000000..12b2476 Binary files /dev/null and b/themes/scroll/static/fonts/icons.ttf differ diff --git a/themes/scroll/static/fonts/icons.woff b/themes/scroll/static/fonts/icons.woff new file mode 100644 index 0000000..0127877 Binary files /dev/null and b/themes/scroll/static/fonts/icons.woff differ diff --git a/themes/scroll/static/img/background-cover.jpg b/themes/scroll/static/img/background-cover.jpg new file mode 100644 index 0000000..a79b632 Binary files /dev/null and b/themes/scroll/static/img/background-cover.jpg differ diff --git a/themes/scroll/static/js/index.js b/themes/scroll/static/js/index.js new file mode 100644 index 0000000..69aa240 --- /dev/null +++ b/themes/scroll/static/js/index.js @@ -0,0 +1,101 @@ +/** + * Main JS file for HugoScroll behaviours + */ +var $post = $('.post'), + $first = $('.post.first'), + $last = $('.post.last'), + $fnav = $('.fixed-nav'), + $postholder = $('.post-holder'), + $postafter = $('.post-after'), + $sitehead = $('#site-head'); + +/*globals jQuery, document */ +(function ($) { + "use strict"; + function srcTo (e) { + $('html, body').animate({ + scrollTop: e.offset().top + }, 1000); + } + $(document).ready(function(){ + + $postholder.each(function (e) { + if(e % 2 != 0) + $(this).addClass("oneOff") + }) + + $postafter.each(function (e) { + var bg = $(this).parent().css('background-color') + $(this).css('border-top-color', bg) + + if(e % 2 == 0) + $(this).css('left', '6%') + + }) + + + $('.btn.first').click( function () { + srcTo ($first) + }) + $('.btn.last').click( function () { + srcTo ($last) + }) + $('#header-arrow').click(function () { + srcTo ($first) + }) + + $('.post-title').each(function () { + var t = $(this).text(), + index = $(this).parents('.post-holder').index(); + $fnav.append(""+t+"") + $(this).parents('article').attr('id',t.toLowerCase().split(' ').join('-')); + $('.fn-item').click(function () { + var i = $(this).attr('item_index'), + s = $(".post[item_index='"+i+"']") + + $('html, body').animate({ + scrollTop: s.offset().top + }, 400); + + }) + }) + + $('.post.last').next('.post-after').hide(); + if($sitehead.length) { + $(window).scroll( function () { + var w = $(window).scrollTop(), + g = $sitehead.offset().top, + h = $sitehead.offset().top + $(this).height()-100; + + if(w >= g && w<=h) { + $('.fixed-nav').fadeOut('fast') + } else { + if($(window).width()>500) + $('.fixed-nav').fadeIn('fast') + } + + $post.each(function () { + var f = $(this).offset().top, + b = $(this).offset().top + $(this).height(), + t = $(this).parent('.post-holder').index(), + i = $(".fn-item[item_index='"+t+"']"), + a = $(this).parent('.post-holder').prev('.post-holder').find('.post-after'); + + $(this).attr('item_index', t); + + if(w >= f && w<=b) { + + i.addClass('active'); + a.fadeOut('slow') + } else { + i.removeClass('active'); + a.fadeIn('slow') + } + }) + }); + } + $('ul li').before('') + $('blockquote p').prepend('') + .append('') + }); +}(jQuery)); diff --git a/themes/scroll/static/js/index.min.js b/themes/scroll/static/js/index.min.js new file mode 100644 index 0000000..0ffe641 --- /dev/null +++ b/themes/scroll/static/js/index.min.js @@ -0,0 +1 @@ +var $post=$(".post"),$first=$(".post.first"),$last=$(".post.last"),$fnav=$(".fixed-nav"),$postholder=$(".post-holder"),$postafter=$(".post-after"),$sitehead=$("#site-head");(function(e){"use strict";function t(t){e("html, body").animate({scrollTop:t.offset().top},1e3)}e(document).ready(function(){$postholder.each(function(t){if(t%2!=0)e(this).addClass("oneOff")});$postafter.each(function(t){var n=e(this).parent().css("background-color");e(this).css("border-top-color",n);if(t%2==0)e(this).css("left","6%")});e(".btn.first").click(function(){t($first)});e(".btn.last").click(function(){t($last)});e("#header-arrow").click(function(){t($first)});e(".post-title").each(function(){var t=e(this).text(),n=e(this).parents(".post-holder").index();$fnav.append(""+t+"");e(this).parents("article").attr("id",t.toLowerCase().split(" ").join("-"));e(".fn-item").click(function(){var t=e(this).attr("item_index"),n=e(".post[item_index='"+t+"']");e("html, body").animate({scrollTop:n.offset().top},400)})});e(".post.last").next(".post-after").hide();if($sitehead.length){e(window).scroll(function(){var t=e(window).scrollTop(),n=$sitehead.offset().top,r=$sitehead.offset().top+e(this).height()-100;if(t>=n&&t<=r){e(".fixed-nav").fadeOut("fast")}else{if(e(window).width()>500)e(".fixed-nav").fadeIn("fast")}$post.each(function(){var n=e(this).offset().top,r=e(this).offset().top+e(this).height(),i=e(this).parent(".post-holder").index(),s=e(".fn-item[item_index='"+i+"']"),o=e(this).parent(".post-holder").prev(".post-holder").find(".post-after");e(this).attr("item_index",i);if(t>=n&&t<=r){s.addClass("active");o.fadeOut("slow")}else{s.removeClass("active");o.fadeIn("slow")}})})}e("ul li").before('');e("blockquote p").prepend('').append('')})})(jQuery) diff --git a/themes/scroll/static/js/jquery.min.js b/themes/scroll/static/js/jquery.min.js new file mode 100644 index 0000000..ab28a24 --- /dev/null +++ b/themes/scroll/static/js/jquery.min.js @@ -0,0 +1,4 @@ +/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.1",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&m.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(r(Object(a))?m.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||m.guid++,e):void 0},now:function(){return+new Date},support:k}),m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function r(a){var b=a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var s=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return a===b&&(l=!0),0},C="undefined",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",N="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=N.replace("w","w#"),P="\\["+M+"*("+N+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+O+"))|)"+M+"*\\]",Q=":("+N+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+P+")*)|.*)\\)|)",R=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),S=new RegExp("^"+M+"*,"+M+"*"),T=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),V=new RegExp(Q),W=new RegExp("^"+O+"$"),X={ID:new RegExp("^#("+N+")"),CLASS:new RegExp("^\\.("+N+")"),TAG:new RegExp("^("+N.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+Q),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+L+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ab=/[+~]/,bb=/'|\\/g,cb=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),db=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{I.apply(F=J.call(v.childNodes),v.childNodes),F[v.childNodes.length].nodeType}catch(eb){I={apply:F.length?function(a,b){H.apply(a,J.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],!a||"string"!=typeof a)return d;if(1!==(k=b.nodeType)&&9!==k)return[];if(p&&!e){if(f=_.exec(a))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return I.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return I.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=9===k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(bb,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+qb(o[l]);w=ab.test(a)&&ob(b.parentNode)||b,x=o.join(",")}if(x)try{return I.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function gb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function hb(a){return a[u]=!0,a}function ib(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function jb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function kb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||D)-(~a.sourceIndex||D);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function lb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function nb(a){return hb(function(b){return b=+b,hb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function ob(a){return a&&typeof a.getElementsByTagName!==C&&a}c=fb.support={},f=fb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fb.setDocument=function(a){var b,e=a?a.ownerDocument||a:v,g=e.defaultView;return e!==n&&9===e.nodeType&&e.documentElement?(n=e,o=e.documentElement,p=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){m()},!1):g.attachEvent&&g.attachEvent("onunload",function(){m()})),c.attributes=ib(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ib(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(e.getElementsByClassName)&&ib(function(a){return a.innerHTML="
",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=ib(function(a){return o.appendChild(a).id=u,!e.getElementsByName||!e.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==C&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c=typeof a.getAttributeNode!==C&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==C?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==C&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(e.querySelectorAll))&&(ib(function(a){a.innerHTML="",a.querySelectorAll("[msallowclip^='']").length&&q.push("[*^$]="+M+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+M+"*(?:value|"+L+")"),a.querySelectorAll(":checked").length||q.push(":checked")}),ib(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+M+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ib(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",Q)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===v&&t(v,a)?-1:b===e||b.ownerDocument===v&&t(v,b)?1:k?K.call(k,a)-K.call(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],i=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:k?K.call(k,a)-K.call(k,b):0;if(f===g)return kb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?kb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},e):n},fb.matches=function(a,b){return fb(a,null,null,b)},fb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fb(b,n,null,[a]).length>0},fb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&E.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fb.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fb.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fb.selectors={cacheLength:50,createPseudo:hb,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||"").replace(cb,db),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+M+")"+a+"("+M+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==C&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fb.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fb.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?hb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=K.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:hb(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?hb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:hb(function(a){return function(b){return fb(a,b).length>0}}),contains:hb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:hb(function(a){return W.test(a||"")||fb.error("unsupported lang: "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:nb(function(){return[0]}),last:nb(function(a,b){return[b-1]}),eq:nb(function(a,b,c){return[0>c?c+b:c]}),even:nb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:nb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:nb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:nb(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function rb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function sb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function tb(a,b,c){for(var d=0,e=b.length;e>d;d++)fb(a,b[d],c);return c}function ub(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function vb(a,b,c,d,e,f){return d&&!d[u]&&(d=vb(d)),e&&!e[u]&&(e=vb(e,f)),hb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||tb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ub(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ub(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?K.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ub(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):I.apply(g,r)})}function wb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=rb(function(a){return a===b},h,!0),l=rb(function(a){return K.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>i;i++)if(c=d.relative[a[i].type])m=[rb(sb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return vb(i>1&&sb(m),i>1&&qb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&wb(a.slice(i,e)),f>e&&wb(a=a.slice(e)),f>e&&qb(a))}m.push(c)}return sb(m)}function xb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=G.call(i));s=ub(s)}I.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&fb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?hb(f):f}return h=fb.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xb(e,d)),f.selector=a}return f},i=fb.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&ob(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qb(j),!a)return I.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&ob(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ib(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ib(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||jb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ib(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||jb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ib(function(a){return null==a.getAttribute("disabled")})||jb(L,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fb}(a);m.find=s,m.expr=s.selectors,m.expr[":"]=m.expr.pseudos,m.unique=s.uniqueSort,m.text=s.getText,m.isXMLDoc=s.isXML,m.contains=s.contains;var t=m.expr.match.needsContext,u=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,v=/^.[^:#\[\.,]*$/;function w(a,b,c){if(m.isFunction(b))return m.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return m.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(v.test(b))return m.filter(b,a,c);b=m.filter(b,a)}return m.grep(a,function(a){return m.inArray(a,b)>=0!==c})}m.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?m.find.matchesSelector(d,a)?[d]:[]:m.find.matches(a,m.grep(b,function(a){return 1===a.nodeType}))},m.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(m(a).filter(function(){for(b=0;e>b;b++)if(m.contains(d[b],this))return!0}));for(b=0;e>b;b++)m.find(a,d[b],c);return c=this.pushStack(e>1?m.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(w(this,a||[],!1))},not:function(a){return this.pushStack(w(this,a||[],!0))},is:function(a){return!!w(this,"string"==typeof a&&t.test(a)?m(a):a||[],!1).length}});var x,y=a.document,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=m.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||x).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof m?b[0]:b,m.merge(this,m.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:y,!0)),u.test(c[1])&&m.isPlainObject(b))for(c in b)m.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=y.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return x.find(a);this.length=1,this[0]=d}return this.context=y,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):m.isFunction(a)?"undefined"!=typeof x.ready?x.ready(a):a(m):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),m.makeArray(a,this))};A.prototype=m.fn,x=m(y);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};m.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!m(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),m.fn.extend({has:function(a){var b,c=m(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(m.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=t.test(a)||"string"!=typeof a?m(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&m.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?m.unique(f):f)},index:function(a){return a?"string"==typeof a?m.inArray(this[0],m(a)):m.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(m.unique(m.merge(this.get(),m(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}m.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return m.dir(a,"parentNode")},parentsUntil:function(a,b,c){return m.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return m.dir(a,"nextSibling")},prevAll:function(a){return m.dir(a,"previousSibling")},nextUntil:function(a,b,c){return m.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return m.dir(a,"previousSibling",c)},siblings:function(a){return m.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return m.sibling(a.firstChild)},contents:function(a){return m.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:m.merge([],a.childNodes)}},function(a,b){m.fn[a]=function(c,d){var e=m.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=m.filter(d,e)),this.length>1&&(C[a]||(e=m.unique(e)),B.test(a)&&(e=e.reverse())),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return m.each(a.match(E)||[],function(a,c){b[c]=!0}),b}m.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):m.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){m.each(b,function(b,c){var d=m.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&m.each(arguments,function(a,c){var d;while((d=m.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?m.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},m.extend({Deferred:function(a){var b=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return m.Deferred(function(c){m.each(b,function(b,f){var g=m.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&m.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?m.extend(a,d):d}},e={};return d.pipe=d.then,m.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&m.isFunction(a.promise)?e:0,g=1===f?a:m.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&m.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;m.fn.ready=function(a){return m.ready.promise().done(a),this},m.extend({isReady:!1,readyWait:1,holdReady:function(a){a?m.readyWait++:m.ready(!0)},ready:function(a){if(a===!0?!--m.readyWait:!m.isReady){if(!y.body)return setTimeout(m.ready);m.isReady=!0,a!==!0&&--m.readyWait>0||(H.resolveWith(y,[m]),m.fn.triggerHandler&&(m(y).triggerHandler("ready"),m(y).off("ready")))}}});function I(){y.addEventListener?(y.removeEventListener("DOMContentLoaded",J,!1),a.removeEventListener("load",J,!1)):(y.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(y.addEventListener||"load"===event.type||"complete"===y.readyState)&&(I(),m.ready())}m.ready.promise=function(b){if(!H)if(H=m.Deferred(),"complete"===y.readyState)setTimeout(m.ready);else if(y.addEventListener)y.addEventListener("DOMContentLoaded",J,!1),a.addEventListener("load",J,!1);else{y.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&y.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!m.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}I(),m.ready()}}()}return H.promise(b)};var K="undefined",L;for(L in m(k))break;k.ownLast="0"!==L,k.inlineBlockNeedsLayout=!1,m(function(){var a,b,c,d;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",k.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(d))}),function(){var a=y.createElement("div");if(null==k.deleteExpando){k.deleteExpando=!0;try{delete a.test}catch(b){k.deleteExpando=!1}}a=null}(),m.acceptData=function(a){var b=m.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:M.test(c)?m.parseJSON(c):c}catch(e){}m.data(a,b,c)}else c=void 0}return c}function P(a){var b;for(b in a)if(("data"!==b||!m.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function Q(a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h; +if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}function R(a,b,c){if(m.acceptData(a)){var d,e,f=a.nodeType,g=f?m.cache:a,h=f?a[m.expando]:m.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){m.isArray(b)?b=b.concat(m.map(b,m.camelCase)):b in d?b=[b]:(b=m.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!m.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?m.cleanData([a],!0):k.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}m.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?m.cache[a[m.expando]]:a[m.expando],!!a&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),m.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=m.data(f),1===f.nodeType&&!m._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=m.camelCase(d.slice(5)),O(f,d,e[d])));m._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){m.data(this,a)}):arguments.length>1?this.each(function(){m.data(this,a,b)}):f?O(f,a,m.data(f,a)):void 0},removeData:function(a){return this.each(function(){m.removeData(this,a)})}}),m.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=m._data(a,b),c&&(!d||m.isArray(c)?d=m._data(a,b,m.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=m.queue(a,b),d=c.length,e=c.shift(),f=m._queueHooks(a,b),g=function(){m.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return m._data(a,c)||m._data(a,c,{empty:m.Callbacks("once memory").add(function(){m._removeData(a,b+"queue"),m._removeData(a,c)})})}}),m.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthh;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},W=/^(?:checkbox|radio)$/i;!function(){var a=y.createElement("input"),b=y.createElement("div"),c=y.createDocumentFragment();if(b.innerHTML="
a",k.leadingWhitespace=3===b.firstChild.nodeType,k.tbody=!b.getElementsByTagName("tbody").length,k.htmlSerialize=!!b.getElementsByTagName("link").length,k.html5Clone="<:nav>"!==y.createElement("nav").cloneNode(!0).outerHTML,a.type="checkbox",a.checked=!0,c.appendChild(a),k.appendChecked=a.checked,b.innerHTML="",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,c.appendChild(b),b.innerHTML="",k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,k.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){k.noCloneEvent=!1}),b.cloneNode(!0).click()),null==k.deleteExpando){k.deleteExpando=!0;try{delete b.test}catch(d){k.deleteExpando=!1}}}(),function(){var b,c,d=y.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(k[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),k[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var X=/^(?:input|select|textarea)$/i,Y=/^key/,Z=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=/^([^.]*)(?:\.(.+)|)$/;function ab(){return!0}function bb(){return!1}function cb(){try{return y.activeElement}catch(a){}}m.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=m.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof m===K||a&&m.event.triggered===a.type?void 0:m.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(E)||[""],h=b.length;while(h--)f=_.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=m.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=m.event.special[o]||{},l=m.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&m.expr.match.needsContext.test(e),namespace:p.join(".")},i),(n=g[o])||(n=g[o]=[],n.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?n.splice(n.delegateCount++,0,l):n.push(l),m.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m.hasData(a)&&m._data(a);if(r&&(k=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=_.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=m.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,n=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=n.length;while(f--)g=n[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(n.splice(f,1),g.selector&&n.delegateCount--,l.remove&&l.remove.call(a,g));i&&!n.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||m.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)m.event.remove(a,o+b[j],c,d,!0);m.isEmptyObject(k)&&(delete r.handle,m._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,o=[d||y],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||y,3!==d.nodeType&&8!==d.nodeType&&!$.test(p+m.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[m.expando]?b:new m.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:m.makeArray(c,[b]),k=m.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!m.isWindow(d)){for(i=k.delegateType||p,$.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||y)&&o.push(l.defaultView||l.parentWindow||a)}n=0;while((h=o[n++])&&!b.isPropagationStopped())b.type=n>1?i:k.bindType||p,f=(m._data(h,"events")||{})[b.type]&&m._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&m.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&m.acceptData(d)&&g&&d[p]&&!m.isWindow(d)){l=d[g],l&&(d[g]=null),m.event.triggered=p;try{d[p]()}catch(r){}m.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?m(c,this).index(i)>=0:m.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h]","i"),hb=/^\s+/,ib=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,jb=/<([\w:]+)/,kb=/\s*$/g,rb={option:[1,""],legend:[1,"
","
"],area:[1,"",""],param:[1,"",""],thead:[1,"","
"],tr:[2,"","
"],col:[2,"","
"],td:[3,"","
"],_default:k.htmlSerialize?[0,"",""]:[1,"X
","
"]},sb=db(y),tb=sb.appendChild(y.createElement("div"));rb.optgroup=rb.option,rb.tbody=rb.tfoot=rb.colgroup=rb.caption=rb.thead,rb.th=rb.td;function ub(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==K?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==K?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||m.nodeName(d,b)?f.push(d):m.merge(f,ub(d,b));return void 0===b||b&&m.nodeName(a,b)?m.merge([a],f):f}function vb(a){W.test(a.type)&&(a.defaultChecked=a.checked)}function wb(a,b){return m.nodeName(a,"table")&&m.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function xb(a){return a.type=(null!==m.find.attr(a,"type"))+"/"+a.type,a}function yb(a){var b=pb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function zb(a,b){for(var c,d=0;null!=(c=a[d]);d++)m._data(c,"globalEval",!b||m._data(b[d],"globalEval"))}function Ab(a,b){if(1===b.nodeType&&m.hasData(a)){var c,d,e,f=m._data(a),g=m._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)m.event.add(b,c,h[c][d])}g.data&&(g.data=m.extend({},g.data))}}function Bb(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!k.noCloneEvent&&b[m.expando]){e=m._data(b);for(d in e.events)m.removeEvent(b,d,e.handle);b.removeAttribute(m.expando)}"script"===c&&b.text!==a.text?(xb(b).text=a.text,yb(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),k.html5Clone&&a.innerHTML&&!m.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&W.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}m.extend({clone:function(a,b,c){var d,e,f,g,h,i=m.contains(a.ownerDocument,a);if(k.html5Clone||m.isXMLDoc(a)||!gb.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(tb.innerHTML=a.outerHTML,tb.removeChild(f=tb.firstChild)),!(k.noCloneEvent&&k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||m.isXMLDoc(a)))for(d=ub(f),h=ub(a),g=0;null!=(e=h[g]);++g)d[g]&&Bb(e,d[g]);if(b)if(c)for(h=h||ub(a),d=d||ub(f),g=0;null!=(e=h[g]);g++)Ab(e,d[g]);else Ab(a,f);return d=ub(f,"script"),d.length>0&&zb(d,!i&&ub(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,l,n=a.length,o=db(b),p=[],q=0;n>q;q++)if(f=a[q],f||0===f)if("object"===m.type(f))m.merge(p,f.nodeType?[f]:f);else if(lb.test(f)){h=h||o.appendChild(b.createElement("div")),i=(jb.exec(f)||["",""])[1].toLowerCase(),l=rb[i]||rb._default,h.innerHTML=l[1]+f.replace(ib,"<$1>")+l[2],e=l[0];while(e--)h=h.lastChild;if(!k.leadingWhitespace&&hb.test(f)&&p.push(b.createTextNode(hb.exec(f)[0])),!k.tbody){f="table"!==i||kb.test(f)?""!==l[1]||kb.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)m.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}m.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),k.appendChecked||m.grep(ub(p,"input"),vb),q=0;while(f=p[q++])if((!d||-1===m.inArray(f,d))&&(g=m.contains(f.ownerDocument,f),h=ub(o.appendChild(f),"script"),g&&zb(h),c)){e=0;while(f=h[e++])ob.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=m.expando,j=m.cache,l=k.deleteExpando,n=m.event.special;null!=(d=a[h]);h++)if((b||m.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)n[e]?m.event.remove(d,e):m.removeEvent(d,e,g.handle);j[f]&&(delete j[f],l?delete d[i]:typeof d.removeAttribute!==K?d.removeAttribute(i):d[i]=null,c.push(f))}}}),m.fn.extend({text:function(a){return V(this,function(a){return void 0===a?m.text(this):this.empty().append((this[0]&&this[0].ownerDocument||y).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?m.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||m.cleanData(ub(c)),c.parentNode&&(b&&m.contains(c.ownerDocument,c)&&zb(ub(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&m.cleanData(ub(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&m.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return m.clone(this,a,b)})},html:function(a){return V(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(fb,""):void 0;if(!("string"!=typeof a||mb.test(a)||!k.htmlSerialize&&gb.test(a)||!k.leadingWhitespace&&hb.test(a)||rb[(jb.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(ib,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(m.cleanData(ub(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,m.cleanData(ub(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,n=this,o=l-1,p=a[0],q=m.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&nb.test(p))return this.each(function(c){var d=n.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(i=m.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=m.map(ub(i,"script"),xb),f=g.length;l>j;j++)d=i,j!==o&&(d=m.clone(d,!0,!0),f&&m.merge(g,ub(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,m.map(g,yb),j=0;f>j;j++)d=g[j],ob.test(d.type||"")&&!m._data(d,"globalEval")&&m.contains(h,d)&&(d.src?m._evalUrl&&m._evalUrl(d.src):m.globalEval((d.text||d.textContent||d.innerHTML||"").replace(qb,"")));i=c=null}return this}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){m.fn[a]=function(a){for(var c,d=0,e=[],g=m(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),m(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Cb,Db={};function Eb(b,c){var d,e=m(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:m.css(e[0],"display");return e.detach(),f}function Fb(a){var b=y,c=Db[a];return c||(c=Eb(a,b),"none"!==c&&c||(Cb=(Cb||m("