From 720176d791425eacb777979a5041f63ade48eae5 Mon Sep 17 00:00:00 2001 From: makefu Date: Wed, 21 May 2014 18:26:18 +0200 Subject: add theme --- .gitignore | 2 + Makefile | 8 +- content/posts/a-usable-vim-undo-tree.rst | 35 + content/posts/wps-and-openwrt.rst | 10 +- pelican-themes/gum/LICENSE | 7 + pelican-themes/gum/README.md | 45 + pelican-themes/gum/screenshot.png | Bin 0 -> 138260 bytes pelican-themes/gum/static/fonts/icons/entypo.eot | Bin 0 -> 76038 bytes pelican-themes/gum/static/fonts/icons/entypo.ttf | Bin 0 -> 75800 bytes pelican-themes/gum/static/fonts/icons/entypo.woff | Bin 0 -> 45152 bytes pelican-themes/gum/static/gumby.css | 7097 ++++++++++++++++++++ pelican-themes/gum/static/js/libs/gumby.init.js | 27 + pelican-themes/gum/static/js/libs/gumby.js | 145 + pelican-themes/gum/static/js/libs/gumby.min.js | 1 + .../gum/static/js/libs/jquery-1.9.1.min.js | 5 + .../gum/static/js/libs/jquery.mobile.custom.min.js | 3 + .../gum/static/js/libs/modernizr-2.6.2.min.js | 4 + .../gum/static/js/libs/ui/gumby.navbar.js | 69 + pelican-themes/gum/static/js/plugins.js | 8 + pelican-themes/gum/static/pygment.css | 205 + pelican-themes/gum/static/style.css | 201 + pelican-themes/gum/templates/archives.html | 11 + pelican-themes/gum/templates/article.html | 53 + pelican-themes/gum/templates/author.html | 7 + pelican-themes/gum/templates/base.html | 155 + pelican-themes/gum/templates/categories.html | 8 + pelican-themes/gum/templates/category.html | 5 + pelican-themes/gum/templates/disqus_script.html | 11 + pelican-themes/gum/templates/index.html | 49 + pelican-themes/gum/templates/page.html | 9 + pelican-themes/gum/templates/pagination.html | 15 + pelican-themes/gum/templates/piwik.html | 16 + pelican-themes/gum/templates/sidebar.html | 53 + pelican-themes/gum/templates/tag.html | 2 + pelican-themes/gum/templates/tags.html | 13 + pelican-themes/gum/typography.png | Bin 0 -> 95335 bytes pelicanconf.py | 18 +- publishconf.py | 11 +- 38 files changed, 8287 insertions(+), 21 deletions(-) create mode 100644 .gitignore create mode 100644 content/posts/a-usable-vim-undo-tree.rst create mode 100644 pelican-themes/gum/LICENSE create mode 100644 pelican-themes/gum/README.md create mode 100644 pelican-themes/gum/screenshot.png create mode 100644 pelican-themes/gum/static/fonts/icons/entypo.eot create mode 100644 pelican-themes/gum/static/fonts/icons/entypo.ttf create mode 100644 pelican-themes/gum/static/fonts/icons/entypo.woff create mode 100644 pelican-themes/gum/static/gumby.css create mode 100644 pelican-themes/gum/static/js/libs/gumby.init.js create mode 100644 pelican-themes/gum/static/js/libs/gumby.js create mode 100644 pelican-themes/gum/static/js/libs/gumby.min.js create mode 100644 pelican-themes/gum/static/js/libs/jquery-1.9.1.min.js create mode 100644 pelican-themes/gum/static/js/libs/jquery.mobile.custom.min.js create mode 100644 pelican-themes/gum/static/js/libs/modernizr-2.6.2.min.js create mode 100644 pelican-themes/gum/static/js/libs/ui/gumby.navbar.js create mode 100644 pelican-themes/gum/static/js/plugins.js create mode 100644 pelican-themes/gum/static/pygment.css create mode 100644 pelican-themes/gum/static/style.css create mode 100644 pelican-themes/gum/templates/archives.html create mode 100644 pelican-themes/gum/templates/article.html create mode 100644 pelican-themes/gum/templates/author.html create mode 100644 pelican-themes/gum/templates/base.html create mode 100644 pelican-themes/gum/templates/categories.html create mode 100644 pelican-themes/gum/templates/category.html create mode 100644 pelican-themes/gum/templates/disqus_script.html create mode 100644 pelican-themes/gum/templates/index.html create mode 100644 pelican-themes/gum/templates/page.html create mode 100644 pelican-themes/gum/templates/pagination.html create mode 100644 pelican-themes/gum/templates/piwik.html create mode 100644 pelican-themes/gum/templates/sidebar.html create mode 100644 pelican-themes/gum/templates/tag.html create mode 100644 pelican-themes/gum/templates/tags.html create mode 100644 pelican-themes/gum/typography.png diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..923ae3f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +output +__pycache__ diff --git a/Makefile b/Makefile index 907c499..9785de3 100644 --- a/Makefile +++ b/Makefile @@ -12,10 +12,10 @@ FTP_HOST=syntax-fehler.de FTP_USER=syntax-fehler FTP_TARGET_DIR=httpdocs -SSH_HOST=localhost +SSH_HOST=pigstarter.krebsco.de SSH_PORT=22 -SSH_USER=root -SSH_TARGET_DIR=/var/www +SSH_USER=makefu +SSH_TARGET_DIR=/var/www/euer.krebsco.de S3_BUCKET=my_s3_bucket @@ -84,7 +84,7 @@ publish: $(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(PUBLISHCONF) $(PELICANOPTS) ssh_upload: publish - scp -P $(SSH_PORT) -r $(OUTPUTDIR)/* $(SSH_USER)@$(SSH_HOST):$(SSH_TARGET_DIR) + rsync -a $(OUTPUTDIR)/* $(SSH_USER)@$(SSH_HOST):$(SSH_TARGET_DIR) rsync_upload: publish rsync -e "ssh -p $(SSH_PORT)" -P -rvz --delete $(OUTPUTDIR)/ $(SSH_USER)@$(SSH_HOST):$(SSH_TARGET_DIR) --cvs-exclude diff --git a/content/posts/a-usable-vim-undo-tree.rst b/content/posts/a-usable-vim-undo-tree.rst new file mode 100644 index 0000000..931f30d --- /dev/null +++ b/content/posts/a-usable-vim-undo-tree.rst @@ -0,0 +1,35 @@ +A usable VIM Undo tree +################################## +:date: 2014-04-15 14:20 +:tags: vim, undo + + +As some may have heard, vim stores your actions (and undos) as a tree, which is +great. With vim 7.3 there is even a option to persist these changes between +session. But with vanilla vim this tree is pretty much unusable. + +A friend showed me a great plugin which gives vim git-like super powers by +showing undos in a tree, together with a patch view with the `gundo plugin `_. + +This plugin, together with persistent undo files feels almost like when i have used ctrl-r for the shell the first time! + +Configuration +------------- + +Grab vundle for VIM, `install it +`_. + +Add these lines to your vimrc: + +.. code-block:: vim + + Bundle 'sjl/gundo.vim' + nnoremap :GundoToggle + set undodir=~/.vim/undo + set undofile + "maximum number of changes that can be undone + set undolevels=1000000 + "maximum number lines to save for undo on a buffer reload + set undoreload=10000000 + +In vim run **:BundleInstall** , you can now toggle the undo bar with ****. diff --git a/content/posts/wps-and-openwrt.rst b/content/posts/wps-and-openwrt.rst index 21815bc..429b510 100644 --- a/content/posts/wps-and-openwrt.rst +++ b/content/posts/wps-and-openwrt.rst @@ -3,7 +3,7 @@ WPS and OpenWRT :date: 2014-04-09 22:40 :tags: wps, openwrt -When hearing WPS_ i always think of the worst idea in network security. *'Hey, +When hearing WPS(Wifi Protected Setup) i always think of the worst idea in network security. *'Hey, how about changing a long key with a minimum length of 8 characters to something like... 4 numbers! And with that number you get the original password! GENIUS'* . But WPS consists of more than this shitty idea. It also @@ -12,7 +12,7 @@ button'[#]_. That is why quite a lot of current routers have the WPS-Button to easily connect such devices (namely wifi printers and scanners). It **just works** with stock firmware but of course i am running a -Frickelsystem_ on my TP-Link router. On OpenWRT it *might* work out of the box +Frickelsystem [#]_ on my TP-Link router. On OpenWRT [#]_ it *might* work out of the box with the latest and greatest unstable release but in my case i needed to replace some packages to make it work. @@ -36,7 +36,5 @@ The WPS button on your router should now also be working if the stars are alligned correctly. .. [#] http://en.wikipedia.org/wiki/Wi-Fi_Protected_Setup#Methods -.. _WPS: Wifi Protected Setup -.. _Frickelsystem: Systems not made for end-users. see Openwrt -.. _Openwrt: Alternative router firmware without the official router vendor - backdoors (safety not guaranteed). Also the mother of all Frickelsystemen +.. [#] Systems not made for end-users. see Openwrt +.. [#] Alternative router firmware without the official router vendor backdoors (safety not guaranteed). Also the mother of all Frickelsystemen diff --git a/pelican-themes/gum/LICENSE b/pelican-themes/gum/LICENSE new file mode 100644 index 0000000..316394b --- /dev/null +++ b/pelican-themes/gum/LICENSE @@ -0,0 +1,7 @@ +MIT Open Source License + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/pelican-themes/gum/README.md b/pelican-themes/gum/README.md new file mode 100644 index 0000000..41db49d --- /dev/null +++ b/pelican-themes/gum/README.md @@ -0,0 +1,45 @@ +### What is Gum? + +Gum is a clean and responsive theme for [Pelican](https://github.com/getpelican/pelican), based on the [Gumby Framework](http://gumbyframework.com/docs). + +### Requirements + +* [Pelican](https://github.com/getpelican/pelican) + +### Configuration + +* Edit your settings file to include the following if desired (any values left blank won't show up in the theme): + +``` +GITHUB_URL = '' +TWITTER_URL = '' +FACEBOOK_URL = '' +GOOGLEPLUS_URL = '' +``` + +This theme uses the latest Google Analytics code, which will be included when the following values are filled out appropriately. + +``` +GOOGLE_ANALYTICS_ID = '' +GOOGLE_ANALYTICS_SITENAME = '' +``` + + +### Screenshot ### + +![screenshot](screenshot.png) + +### Credits / Thanks + + * Alexis Metaireau / Pelican + * Digital Surgeons / Gumby Framework + * Twitter Bootstrap + * traeblain for his [makefile](https://gist.github.com/traeblain/4252511) gist for building Pelican on Windows + +**MIT Open Source License** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/pelican-themes/gum/screenshot.png b/pelican-themes/gum/screenshot.png new file mode 100644 index 0000000..ce635a8 Binary files /dev/null and b/pelican-themes/gum/screenshot.png differ diff --git a/pelican-themes/gum/static/fonts/icons/entypo.eot b/pelican-themes/gum/static/fonts/icons/entypo.eot new file mode 100644 index 0000000..41f223e Binary files /dev/null and b/pelican-themes/gum/static/fonts/icons/entypo.eot differ diff --git a/pelican-themes/gum/static/fonts/icons/entypo.ttf b/pelican-themes/gum/static/fonts/icons/entypo.ttf new file mode 100644 index 0000000..331ea3a Binary files /dev/null and b/pelican-themes/gum/static/fonts/icons/entypo.ttf differ diff --git a/pelican-themes/gum/static/fonts/icons/entypo.woff b/pelican-themes/gum/static/fonts/icons/entypo.woff new file mode 100644 index 0000000..b0771de Binary files /dev/null and b/pelican-themes/gum/static/fonts/icons/entypo.woff differ diff --git a/pelican-themes/gum/static/gumby.css b/pelican-themes/gum/static/gumby.css new file mode 100644 index 0000000..65e74ec --- /dev/null +++ b/pelican-themes/gum/static/gumby.css @@ -0,0 +1,7097 @@ +@charset "UTF-8"; +@import url(//fonts.googleapis.com/css?family=Open+Sans:400,300,600,700); +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: inherit; + font-size: 100%; + vertical-align: baseline; +} + +html { + line-height: 1; +} + +ol, ul { + list-style: none; +} + +table { + border-collapse: collapse; + border-spacing: 0; +} + +caption, th, td { + text-align: left; + font-weight: normal; + vertical-align: middle; +} + +q, blockquote { + quotes: none; +} +q:before, q:after, blockquote:before, blockquote:after { + content: ""; + content: none; +} + +a img { + border: none; +} + +article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { + display: block; +} + +* html { + font-size: 100%; +} + +html { + font-size: 16px; + line-height: 1.625em; +} + +html * { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +body { + background: white; + font-family: "Open Sans"; + font-weight: 400; + color: #555555; + position: relative; + -webkit-font-smoothing: antialiased; + -webkit-backface-visibility: hidden; +} +@media only screen and (max-width: 767px) { + body { + -webkit-text-size-adjust: none; + -ms-text-size-adjust: none; + width: 100%; + min-width: 0; + } +} + +html, body { + height: 100%; +} + +.ie9 { + font-family: "Open Sans"; +} +.ie9 * { + font-family: "Open Sans"; +} + +.hide { + display: none; +} + +.hide.active, .show { + display: block; +} + +.fixed { + position: fixed; +} +@media only screen and (max-width: 768px) { + .fixed { + position: relative !important; + } +} + +.center-text { + text-align: center; +} + + +/* Fonts */ +@font-face { + font-family: "entypo"; + font-style: normal; + font-weight: 400; + src: url(fonts/icons/entypo.eot); + src: url("fonts/icons/entypo.eot?#iefix") format("ie9-skip-eot"), url("fonts/icons/entypo.woff") format("woff"), url("fonts/icons/entypo.ttf") format("truetype"); +} + +h1, h2, h3, h4, h5, h6 { + font-family: "Open Sans"; + font-weight: 300; + color: #444444; + text-rendering: optimizeLegibility; + padding-top: 0.273em; + line-height: 1.15538em; + padding-bottom: 0.273em; +} +h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { + color: #d04526; +} + +@media only screen and (max-width: 767px) { + h1, h2, h3, h4, h5, h6 { + word-wrap: break-word; + } +} +h1 { + font-size: 68px; + font-size: 4.25rem; +} +h1.xlarge { + font-size: 110px; + font-size: 6.875rem; +} +h1.xxlarge { + font-size: 126px; + font-size: 7.875rem; +} +h1.absurd { + font-size: 177px; + font-size: 11.0625rem; +} + +h2 { + font-size: 42px; + font-size: 2.625rem; +} + +h3 { + font-size: 30px; + font-size: 1.875rem; +} + +h4 { + font-size: 26px; + font-size: 1.625rem; +} + +h5 { + font-size: 18px; + font-size: 1.125rem; +} + +h6 { + font-size: 16px; + font-size: 1rem; +} + +@media only screen and (max-width: 767px) { + h1 { + font-size: 42px; + font-size: 2.625rem; + } + + h2 { + font-size: 36px; + font-size: 2.25rem; + } +} +.subhead { + color: #777; + font-weight: normal; + margin-bottom: 20px; +} + +/*===================================================== + + Links & Paragraph styles + + ======================================================*/ +p { + font-family: "Open Sans"; + font-weight: 400; + font-size: 16px; + font-size: 1rem; + margin-bottom: 13px; + line-height: 1.625em; +} +p.lead { + font-size: 20px; + font-size: 1.25rem; + margin-bottom: 18px; +} +@media only screen and (max-width: 768px) { + p { + font-size: 17.6px; + font-size: 1.1rem; + line-height: 1.625em; + } +} + +a { + color: #d04526; + text-decoration: none; + outline: 0; + line-height: inherit; +} +a:hover { + color: #c03d20; +} + +/*===================================================== + + Lists + + ======================================================*/ +ul, ol { + margin-bottom: 0.273em; +} + +ul { + list-style: none outside; +} + +ol { + list-style: decimal; + margin-left: 30px; +} + +ul.square, ul.circle, ul.disc { + margin-left: 25px; +} +ul.square { + list-style: square outside; +} +ul.circle { + list-style: circle outside; +} +ul.disc { + list-style: disc outside; +} +ul ul { + margin: 4px 0 5px 25px; +} + +ol ol { + margin: 4px 0 5px 30px; +} + +li { + padding-bottom: 0.273em; +} + +ul.large li { + line-height: 21px; +} + +dl dt { + font-weight: bold; + font-size: 16px; + font-size: 1rem; +} + +@media only screen and (max-width: 768px) { + ul, ol, dl, p { + text-align: left; + } +} +/* Mobile */ +em { + font-style: italic; + line-height: inherit; +} + +strong { + font-weight: 700; + line-height: inherit; +} + +small { + font-size: 56.4%; + line-height: inherit; +} + +h1 small, h2 small, h3 small, h4 small, h5 small { + color: #777; +} + +/* Blockquotes */ +blockquote { + line-height: 20px; + color: #777; + margin: 0 0 18px; + padding: 9px 20px 0 19px; + border-left: 5px solid #cccccc; +} +blockquote p { + line-height: 20px; + color: #777; +} +blockquote cite { + display: block; + font-size: 12px; + font-size: 1.2rem; + color: #555555; +} +blockquote cite:before { + content: "\2014 \0020"; +} +blockquote cite a { + color: #555555; +} +blockquote cite a:visited { + color: #555555; +} + +hr { + border: 1px solid #cccccc; + clear: both; + margin: 16px 0 18px; + height: 0; +} + +abbr, acronym { + text-transform: uppercase; + font-size: 90%; + color: #222; + border-bottom: 1px solid #cccccc; + cursor: help; +} + +abbr { + text-transform: none; +} + +/** + * Print styles. + * + * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/ + * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com) + */ +@media print { + * { + background: transparent !important; + color: black !important; + text-shadow: none !important; + filter: none !important; + -ms-filter: none !important; + } + + /* Black prints faster: sanbeiji.com/archives/953 */ + p a { + color: #555555 !important; + text-decoration: underline; + } + p a:visited { + color: #555555 !important; + text-decoration: underline; + } + p a[href]:after { + content: " (" attr(href) ")"; + } + + abbr[title]:after { + content: " (" attr(title) ")"; + } + + .ir a:after { + content: ""; + } + + a[href^="javascript:"]:after, a[href^="#"]:after { + content: ""; + } + + /* Don't show links for images, or javascript/internal links */ + pre, blockquote { + border: 1px solid #999999; + page-break-inside: avoid; + } + + thead { + display: table-header-group; + } + + /* css-discuss.incutio.com/wiki/Printing_Tables */ + tr, img { + page-break-inside: avoid; + } + + @page { + margin: 0.5cm; +} + + p, h2, h3 { + orphans: 3; + widows: 3; + } + + h2, h3 { + page-break-after: avoid; + } +} +/*================================================= + + +++ LE GRID +++ + A Responsive Grid -- Gumby defaults to a standard 960 grid, + but you can change it to whatever you'd like. + + ==================================================*/ +/*.container { + padding: 0px $gutter-in-px; +}*/ +.row { + width: 100%; + max-width: 1100px; + min-width: 320px; + margin: 0 auto; +} +@media only screen and (max-width: 1120px) { + .row { + padding: 0 20px; + } +} +.row .row { + min-width: 0px; +} +@media only screen and (max-width: 1120px) { + .row .row { + padding: 0; + } +} + +/* To fix the grid into a different size, set max-width to your desired width */ +.column, .columns { + margin-left: 1.81818%; + float: left; + min-height: 1px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +.column:first-child, .columns:first-child, .alpha { + margin-left: 0px; +} + +.column.omega, .columns.omega { + float: right; +} + +/* Column Classes */ +.row .one.column, .row .one.columns, .sixteen.colgrid .row .one.columns { + width: 5.45455%; +} +.row .two.columns { + width: 12.72727%; +} +.row .three.columns { + width: 20%; +} +.row .four.columns { + width: 27.27273%; +} +.row .five.columns { + width: 34.54545%; +} +.row .six.columns { + width: 41.81818%; +} +.row .seven.columns { + width: 49.09091%; +} +.row .eight.columns { + width: 56.36364%; +} +.row .nine.columns { + width: 63.63636%; +} +.row .ten.columns { + width: 70.90909%; +} +.row .eleven.columns { + width: 78.18182%; +} +.row .twelve.columns { + width: 85.45455%; +} +.row .thirteen.columns { + width: 92.72727%; +} +.row .fourteen.columns { + width: 100%; +} + +/* Push Classes */ +.row .push_one { + margin-left: 9.09091%; +} +.row .push_one:first-child { + margin-left: 7.27273%; +} +.row .push_two { + margin-left: 16.36364%; +} +.row .push_two:first-child { + margin-left: 14.54545%; +} +.row .push_three { + margin-left: 23.63636%; +} +.row .push_three:first-child { + margin-left: 21.81818%; +} +.row .push_four { + margin-left: 30.90909%; +} +.row .push_four:first-child { + margin-left: 29.09091%; +} +.row .push_five { + margin-left: 38.18182%; +} +.row .push_five:first-child { + margin-left: 36.36364%; +} +.row .push_six { + margin-left: 45.45455%; +} +.row .push_six:first-child { + margin-left: 43.63636%; +} +.row .push_seven { + margin-left: 52.72727%; +} +.row .push_seven:first-child { + margin-left: 50.90909%; +} +.row .push_eight { + margin-left: 60.0%; +} +.row .push_eight:first-child { + margin-left: 58.18182%; +} +.row .push_nine { + margin-left: 67.27273%; +} +.row .push_nine:first-child { + margin-left: 65.45455%; +} +.row .push_ten { + margin-left: 74.54545%; +} +.row .push_ten:first-child { + margin-left: 72.72727%; +} +.row .push_eleven { + margin-left: 81.81818%; +} +.row .push_eleven:first-child { + margin-left: 80.0%; +} +.row .push_twelve { + margin-left: 89.09091%; +} +.row .push_twelve:first-child { + margin-left: 87.27273%; +} +.row .push_thirteen { + margin-left: 96.36364%; +} +.row .push_thirteen:first-child { + margin-left: 94.54545%; +} + +/* Centered Classes */ +.row .one.centered { + margin-left: 47.27273%; +} +.row .two.centered { + margin-left: 43.63636%; +} +.row .three.centered { + margin-left: 40%; +} +.row .four.centered { + margin-left: 36.36364%; +} +.row .five.centered { + margin-left: 32.72727%; +} +.row .six.centered { + margin-left: 29.09091%; +} +.row .seven.centered { + margin-left: 25.45455%; +} +.row .eight.centered { + margin-left: 21.81818%; +} +.row .nine.centered { + margin-left: 18.18182%; +} +.row .ten.centered { + margin-left: 14.54545%; +} +.row .eleven.centered { + margin-left: 10.90909%; +} +.row .twelve.centered { + margin-left: 7.27273%; +} +.row .thirteen.centered { + margin-left: 3.63636%; +} + +/* Hybrid Grid Columns */ +.sixteen.colgrid .row .one.column, .sixteen.colgrid .row .one.columns { + width: 4.54545%; +} +.sixteen.colgrid .row .two.columns { + width: 10.90909%; +} +.sixteen.colgrid .row .three.columns { + width: 17.27273%; +} +.sixteen.colgrid .row .four.columns { + width: 23.63636%; +} +.sixteen.colgrid .row .five.columns { + width: 30%; +} +.sixteen.colgrid .row .six.columns { + width: 36.36364%; +} +.sixteen.colgrid .row .seven.columns { + width: 42.72727%; +} +.sixteen.colgrid .row .eight.columns { + width: 49.09091%; +} +.sixteen.colgrid .row .nine.columns { + width: 55.45455%; +} +.sixteen.colgrid .row .ten.columns { + width: 61.81818%; +} +.sixteen.colgrid .row .eleven.columns { + width: 68.18182%; +} +.sixteen.colgrid .row .twelve.columns { + width: 74.54545%; +} +.sixteen.colgrid .row .thirteen.columns { + width: 80.90909%; +} +.sixteen.colgrid .row .fourteen.columns { + width: 87.27273%; +} +.sixteen.colgrid .row .fifteen.columns { + width: 93.63636%; +} +.sixteen.colgrid .row .sixteen.columns { + width: 100%; +} + +/* Hybrid Push Classes */ +.sixteen.colgrid .row .push_one { + margin-left: 8.18182%; +} +.sixteen.colgrid .row .push_one:first-child { + margin-left: 6.36364%; +} +.sixteen.colgrid .row .push_two { + margin-left: 14.54545%; +} +.sixteen.colgrid .row .push_two:first-child { + margin-left: 12.72727%; +} +.sixteen.colgrid .row .push_three { + margin-left: 20.90909%; +} +.sixteen.colgrid .row .push_three:first-child { + margin-left: 19.09091%; +} +.sixteen.colgrid .row .push_four { + margin-left: 27.27273%; +} +.sixteen.colgrid .row .push_four:first-child { + margin-left: 25.45455%; +} +.sixteen.colgrid .row .push_five { + margin-left: 33.63636%; +} +.sixteen.colgrid .row .push_five:first-child { + margin-left: 31.81818%; +} +.sixteen.colgrid .row .push_six { + margin-left: 40.0%; +} +.sixteen.colgrid .row .push_six:first-child { + margin-left: 38.18182%; +} +.sixteen.colgrid .row .push_seven { + margin-left: 46.36364%; +} +.sixteen.colgrid .row .push_seven:first-child { + margin-left: 44.54545%; +} +.sixteen.colgrid .row .push_eight { + margin-left: 52.72727%; +} +.sixteen.colgrid .row .push_eight:first-child { + margin-left: 50.90909%; +} +.sixteen.colgrid .row .push_nine { + margin-left: 59.09091%; +} +.sixteen.colgrid .row .push_nine:first-child { + margin-left: 57.27273%; +} +.sixteen.colgrid .row .push_ten { + margin-left: 65.45455%; +} +.sixteen.colgrid .row .push_ten:first-child { + margin-left: 63.63636%; +} +.sixteen.colgrid .row .push_eleven { + margin-left: 71.81818%; +} +.sixteen.colgrid .row .push_eleven:first-child { + margin-left: 70.0%; +} +.sixteen.colgrid .row .push_twelve { + margin-left: 78.18182%; +} +.sixteen.colgrid .row .push_twelve:first-child { + margin-left: 76.36364%; +} +.sixteen.colgrid .row .push_thirteen { + margin-left: 84.54545%; +} +.sixteen.colgrid .row .push_thirteen:first-child { + margin-left: 82.72727%; +} +.sixteen.colgrid .row .push_fourteen { + margin-left: 90.90909%; +} +.sixteen.colgrid .row .push_fourteen:first-child { + margin-left: 89.09091%; +} +.sixteen.colgrid .row .push_fifteen { + margin-left: 97.27273%; +} +.sixteen.colgrid .row .push_fifteen:first-child { + margin-left: 95.45455%; +} + +/* Hybrid Centered Classes */ +.sixteen.colgrid .row .one.centered { + margin-left: 47.72727%; +} +.sixteen.colgrid .row .two.centered { + margin-left: 44.54545%; +} +.sixteen.colgrid .row .three.centered { + margin-left: 41.36364%; +} +.sixteen.colgrid .row .four.centered { + margin-left: 38.18182%; +} +.sixteen.colgrid .row .five.centered { + margin-left: 35%; +} +.sixteen.colgrid .row .six.centered { + margin-left: 31.81818%; +} +.sixteen.colgrid .row .seven.centered { + margin-left: 28.63636%; +} +.sixteen.colgrid .row .eight.centered { + margin-left: 25.45455%; +} +.sixteen.colgrid .row .nine.centered { + margin-left: 22.27273%; +} +.sixteen.colgrid .row .ten.centered { + margin-left: 19.09091%; +} +.sixteen.colgrid .row .eleven.centered { + margin-left: 15.90909%; +} +.sixteen.colgrid .row .twelve.centered { + margin-left: 12.72727%; +} +.sixteen.colgrid .row .thirteen.centered { + margin-left: 9.54545%; +} +.sixteen.colgrid .row .fourteen.centered { + margin-left: 6.36364%; +} +.sixteen.colgrid .row .fifteen.centered { + margin-left: 3.18182%; +} + +.pull_right { + float: right; +} + +.pull_left { + float: left; +} + +img, object, embed { + max-width: 100%; + height: auto; +} + +img { + -ms-interpolation-mode: bicubic; +} + +#map_canvas img, .map_canvas img { + max-width: none !important; +} + +/* Tile Grid */ +.tiles { + display: block; + overflow: hidden; +} +.tiles > li { + display: block; + height: auto; + float: left; + padding-bottom: 0; +} +.tiles.two_up { + margin-left: -4%; +} +.tiles.two_up > li { + margin-left: 4%; + width: 46%; +} +.tiles.three_up, .tiles.four_up { + margin-left: -2%; +} +.tiles.three_up > li { + margin-left: 2%; + width: 31.3%; +} +.tiles.four_up > li { + margin-left: 2%; + width: 23%; +} +.tiles.five_up { + margin-left: -1.5%; +} +.tiles.five_up > li { + margin-left: 1.5%; + width: 18.5%; +} + +/* Nicolas Gallagher's micro clearfix */ +.clearfix { + *zoom: 1; +} +.clearfix:before, .clearfix:after { + content: ""; + display: table; +} +.clearfix:after { + clear: both; +} + +.row { + *zoom: 1; +} +.row:before, .row:after { + content: ""; + display: table; +} +.row:after { + clear: both; +} + +.valign { + display: table; + width: 100%; +} +.valign > div { + display: table-cell; + vertical-align: middle; +} +.valign ​ +> article { + display: table-cell; + vertical-align: middle; +} + +/* Mobile */ +@media only screen and (max-width: 767px) { + body { + -webkit-text-size-adjust: none; + -ms-text-size-adjust: none; + width: 100%; + min-width: 0; + } + + .container { + min-width: 0; + margin-left: 0; + margin-right: 0; + } + + .row { + width: 100%; + min-width: 0; + margin-left: 0; + margin-right: 0; + } + .row .row .column, .row .row .columns { + padding: 0; + } + .row .centered { + margin: 0 !important; + } + + .column, .columns { + width: auto !important; + float: none; + margin-left: 0; + margin-right: 0; + } + + .column:last-child, .columns:last-child { + margin-right: 0; + float: none; + } + + [class*="column"] + [class*="column"]:last-child { + float: none; + } + [class*="column"]:before { + display: table; + } + [class*="column"]:after { + display: table; + clear: both; + } + + [class^="push_"], + [class*="push_"] { + margin-left: 0 !important; + } +} +/*===================================================== + + Navigation (with dropdowns) + + ======================================================*/ +.navbar { + width: 100%; + min-height: 60px; + display: block; + margin-bottom: 20px; + background: #4a4d50; +} +@media only screen and (max-width: 767px) { + .navbar { + position: relative; + border: none; + } + .navbar .column, .navbar .columns { + min-height: 0; + } +} +.navbar.fixed { + top: 0; + left: 0; + z-index: 99999; +} +.navbar a.toggle { + display: none; +} +@media only screen and (max-width: 767px) { + .navbar a.toggle { + top: 18%; + right: 4%; + width: 46px; + position: absolute; + text-align: center; + display: inline-block; + color: white; + background: #4a4d50; + height: 40px; + line-height: 38px; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -ms-border-radius: 4px; + -o-border-radius: 4px; + border-radius: 4px; + font-size: 30px; + font-size: 1.875rem; + } + .navbar a.toggle:hover { + background: #565a5d; + } + .navbar a.toggle:active, .navbar a.toggle.active { + background: #3e4043; + } +} +.navbar .logo { + display: inline-block; + margin: 0 1.81818% 0 0; + padding: 0; + height: 60px; + line-height: 58px; +} +.navbar .logo a { + display: block; + padding: 0 0 0 16px; + overflow: hidden; + height: 60px; + line-height: 58px; +} +@media only screen and (max-width: 767px) { + .navbar .logo { + float: left; + display: inline; + } + .navbar .logo a { + padding: 0; + } + .navbar .logo a img { + width: auto; + height: auto; + max-width: 100%; + } +} +.navbar ul { + display: table; + vertical-align: middle; + margin: 0; + float: none; +} +@media only screen and (max-width: 767px) { + .navbar ul { + position: absolute; + display: block; + width: 100% !important; + height: 0; + max-height: 0; + top: 60px; + left: 0; + overflow: hidden; + text-align: center; + background: #3e4043; + } + .navbar ul.active { + height: auto; + max-height: 600px; + z-index: 999999; + -webkit-transition-duration: 0.5s; + -moz-transition-duration: 0.5s; + -o-transition-duration: 0.5s; + transition-duration: 0.5s; + -webkit-box-shadow: 0 2px 2px #252728; + -moz-box-shadow: 0 2px 2px #252728; + box-shadow: 0 2px 2px #252728; + } +} +.navbar ul li { + display: table-cell; + text-align: center; + padding-bottom: 0; + margin: 0; + height: 60px; + line-height: 58px; +} +@media only screen and (max-width: 767px) { + .navbar ul li { + display: block; + position: relative; + min-height: 50px; + max-height: 320px; + height: auto; + width: 100%; + border-right: 0 !important; + -webkit-box-shadow: none; + box-shadow: none; + -webkit-transition-duration: 0.5s; + -moz-transition-duration: 0.5s; + -o-transition-duration: 0.5s; + transition-duration: 0.5s; + } +} +.navbar ul li > a { + display: block; + padding: 0 16px; + white-space: nowrap; + color: white; + text-shadow: 0 1px 2px #191a1b, 0 1px 0 #191a1b; + height: 60px; + line-height: 58px; + font-size: 16px; + font-size: 1rem; +} +.navbar ul li .btn { + border-color: #000101 !important; +} +.navbar ul li.field { + margin-bottom: 0 !important; + margin-right: 0; +} +@media only screen and (max-width: 767px) { + .navbar ul li.field { + padding: 0 20px; + } +} +.navbar ul li.field input.search { + background: #191a1b; + border: none; + color: #f2f2f2; +} +.navbar ul li .dropdown { + width: auto; + min-width: 0px; + max-width: 320px; + height: 0; + position: absolute; + background: #fafafa; + overflow: hidden; + z-index: 999; +} +@media only screen and (max-width: 767px) { + .navbar ul li .dropdown { + width: 100%; + max-width: 100%; + position: relative; + -webkit-box-shadow: none !important; + -moz-box-shadow: none !important; + box-shadow: none !important; + } + .navbar ul li.active .dropdown { + border-bottom: 1px solid #313436; + } + .navbar ul li.active .dropdown ul { + position: relative; + top: 0; + background: #36393b; + min-height: 50px; + max-height: 250px; + height: auto; + overflow: auto; + -webkit-box-shadow: none !important; + -moz-box-shadow: none !important; + box-shadow: none !important; + } + .navbar ul li.active .dropdown ul li { + min-height: 50px; + border-bottom: #3e4043; + } + .navbar ul li.active .dropdown ul li a { + color: white; + border-bottom: 1px solid #313436; + } + .navbar ul li.active .dropdown ul li a:hover { + color: #d04526; + } +} +@media only screen and (min-width: 768px) and (max-width: 1099px) { + .navbar > ul > li > .btn a { + padding: 0 10px 0 10px !important; + } + .navbar ul > li .dropdown ul li.active .dropdown { + left: -320px; + } +} + +/**** Navbar positioning for Microsoft's browser who deserves not to be mentioned ****/ +.ie7 .navbar > ul { + width: auto; +} + +.ie7 .navbar, .ie7 .navbar > ul > li > a { + display: block; +} + +.ie7 .navbar .logo, .ie7 .navbar ul, .ie7 .navbar ul li { + float: left; + display: inline-block; +} + +.ie7 .navbar .logo a { + display: block; + overflow: hidden; +} + +.ie7 .navbar > ul > li .field { + display: block; + padding: 12px 18px 0; + width: 80%; +} + +.pretty.navbar { + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7b8085), color-stop(100%, #313436)); + background-image: -webkit-linear-gradient(#7b8085, #313436); + background-image: -moz-linear-gradient(#7b8085, #313436); + background-image: -o-linear-gradient(#7b8085, #313436); + background-image: linear-gradient(#7b8085, #313436); + -webkit-box-shadow: inset 0 1px 1px #7b8085, 0 1px 2px rgba(0, 0, 0, 0.8) !important; + /* Remove this line if you dont want a dropshadow on your navigation*/ + box-shadow: inset 0 1px 1px #7b8085, 0 1px 2px rgba(0, 0, 0, 0.8) !important; + /* Remove this line if you dont want a dropshadow on your navigation*/ +} +@media only screen and (max-width: 767px) { + .pretty.navbar a.toggle { + border: 1px solid #3e4043; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7b8085), color-stop(100%, #4a4d50)); + background-image: -webkit-linear-gradient(#7b8085, #4a4d50); + background-image: -moz-linear-gradient(#7b8085, #4a4d50); + background-image: -o-linear-gradient(#7b8085, #4a4d50); + background-image: linear-gradient(#7b8085, #4a4d50); + -webkit-box-shadow: inset 0 1px 2px #888d91, inset 0 -1px 1px #565a5d, inset 1px 0 1px #565a5d, inset -1px 0 1px #565a5d, 0 1px 1px #63676a; + -moz-box-shadow: inset 0 1px 2px #888d91, inset 0 -1px 1px #565a5d, inset 1px 0 1px #565a5d, inset -1px 0 1px #565a5d, 0 1px 1px #63676a; + box-shadow: inset 0 1px 2px #888d91, inset 0 -1px 1px #565a5d, inset 1px 0 1px #565a5d, inset -1px 0 1px #565a5d, 0 1px 1px #63676a; + } + .pretty.navbar a.toggle i { + text-shadow: 0 1px 1px #191a1b; + } + .pretty.navbar a.toggle:hover { + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #888d91), color-stop(100%, #565a5d)); + background-image: -webkit-linear-gradient(#888d91, #565a5d); + background-image: -moz-linear-gradient(#888d91, #565a5d); + background-image: -o-linear-gradient(#888d91, #565a5d); + background-image: linear-gradient(#888d91, #565a5d); + } + .pretty.navbar a.toggle:active, .pretty.navbar a.toggle.active { + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3e4043), color-stop(100%, #4a4d50)); + background-image: -webkit-linear-gradient(#3e4043, #4a4d50); + background-image: -moz-linear-gradient(#3e4043, #4a4d50); + background-image: -o-linear-gradient(#3e4043, #4a4d50); + background-image: linear-gradient(#3e4043, #4a4d50); + -webkit-box-shadow: 0 1px 1px #63676a; + -moz-box-shadow: 0 1px 1px #63676a; + box-shadow: 0 1px 1px #63676a; + } +} +.pretty.navbar.row { + border-radius: 4px; +} +@media only screen and (max-width: 767px) { + .pretty.navbar.row { + -webkit-border-radius: 0; + -moz-border-radius: 0; + -ms-border-radius: 0; + -o-border-radius: 0; + border-radius: 0; + } +} +.pretty.navbar ul li.field input.search { + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #191a1b), color-stop(100%, #4f5255)); + background-image: -webkit-linear-gradient(#191a1b, #4f5255); + background-image: -moz-linear-gradient(#191a1b, #4f5255); + background-image: -o-linear-gradient(#191a1b, #4f5255); + background-image: linear-gradient(#191a1b, #4f5255); + border: none; + box-shadow: 0 1px 2px #888d91 !important; + /* Remove this line if you dont want a dropshadow on your navigation*/ +} +.pretty.navbar > ul > li:first-child, .pretty.navbar .pretty.navbar > ul > li:first-child a:hover { + box-shadow: none; +} + +.navbar li .dropdown ul { + margin: 0; + display: block; +} +.navbar li .dropdown ul > li { + position: relative; + display: block; + width: 100%; + float: left; + text-align: left; + height: auto; + border-radius: none; +} +@media only screen and (min-width: 768px) and (max-width: 1099px) { + .navbar li .dropdown ul > li { + max-width: 320px; + word-wrap: break-word; + } +} +.navbar li .dropdown ul > li a { + display: block; + padding: 0 20px; + color: #d04526; + border-bottom: 1px solid #cccccc; + text-shadow: none; + height: 51px; + line-height: 49px; +} +@media only screen and (max-width: 767px) { + .navbar li .dropdown ul > li a { + padding: 0 20px; + } +} +.navbar li .dropdown ul > li .dropdown { + display: none; + background: white; +} +.navbar li .dropdown ul li:first-child a { + border-radius: 0; +} + +.no-touch .navbar ul li:hover > a { + position: relative; + background: #868d92; + z-index: 1000; +} + +.no-touch .navbar ul li:hover .dropdown, +.touch .navbar ul li.active .dropdown { + min-height: 50px; + max-height: 561px; + overflow: visible; + height: auto; + width: 100%; + padding: 0; + border-top: 1px solid #3e4043; + -webkit-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3); + box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3); +} + +.no-touch .navbar ul li:hover .dropdown ul { + position: relative; + top: 0; + min-height: 50px; + max-height: 250px; + height: auto; + -webkit-box-shadow: none !important; + -moz-box-shadow: none !important; + box-shadow: none !important; + -webkit-transition-duration: 0.5s; + -moz-transition-duration: 0.5s; + -o-transition-duration: 0.5s; + transition-duration: 0.5s; +} +@media only screen and (max-width: 767px) { + .no-touch .navbar ul li:hover .dropdown ul { + overflow: auto; + background: #36393b; + } + .no-touch .navbar ul li:hover .dropdown ul li { + border-bottom: #3e4043; + } + .no-touch .navbar ul li:hover .dropdown ul li a { + color: white; + border-bottom: 1px solid #313436; + } + .no-touch .navbar ul li:hover .dropdown ul li a:hover { + color: #d04526; + } +} +.no-touch .navbar ul li:hover .dropdown ul li { + min-height: 50px; +} + +.no-touch .navbar li .dropdown ul > li:hover .dropdown, +.touch .navbar li .dropdown ul > li.active .dropdown { + border-top: none; + display: block; + position: absolute; + z-index: 9999; + left: 100%; + top: 0px; + margin-top: 0; +} +@media only screen and (max-width: 767px) { + .no-touch .navbar li .dropdown ul > li:hover .dropdown, + .touch .navbar li .dropdown ul > li.active .dropdown { + position: relative; + left: 0; + } + .no-touch .navbar li .dropdown ul > li:hover .dropdown ul, + .touch .navbar li .dropdown ul > li.active .dropdown ul { + background: #252728 !important; + } +} + +.no-touch .navbar li .dropdown ul li a:hover { + background: #f2f2f2; +} + +.touch .navbar a:hover { + color: white !important; +} + +.subnav { + display: block; + width: auto; + overflow: hidden; + margin: 0 0 18px 0; + padding-top: 4px; +} +.subnav li, .subnav dt, .subnav dd { + float: left; + display: inline; + margin-left: 9px; + margin-bottom: 4px; +} +.subnav li:first-child, .subnav dt:first-child, .subnav dd:first-child { + margin-left: 0; +} +.subnav dt { + color: #999; + font-weight: normal; +} +.subnav li a, .subnav dd a { + color: #05390a; + font-size: 15px; + text-decoration: none; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} +.subnav li.active a, .subnav dd.active a { + background: #5dbb73; + padding: 5px 9px; + text-shadow: 0 1px 1px #77d58e; +} + +/* Buttons */ +.btn, .skiplink { + display: inline-block; + width: auto; + background: #f2f2f2; + -webkit-appearance: none; + font-family: "Open Sans"; + font-weight: 600; + padding: 0 !important; + text-align: center; +} +.btn > a, .btn input, .btn button, .skiplink > a, .skiplink input, .skiplink button { + display: block; + padding: 0 18px; + color: white; + height: 100%; +} +.btn input, .btn button, .skiplink input, .skiplink button { + background: none; + border: none; + width: 100%; + font-size: 100%; + cursor: pointer; + font-weight: 400; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} +.btn.xlarge, .skiplink.xlarge { + font-size: 30px; + font-size: 1.875rem; + height: 66px; + line-height: 64px; +} +.btn.xlarge a, .skiplink.xlarge a { + position: relative; + padding: 0 30px; +} +.btn.xlarge.icon-left a, .skiplink.xlarge.icon-left a { + padding-left: 66px; +} +.btn.xlarge.icon-left a:before, .skiplink.xlarge.icon-left a:before { + left: 20px; +} +.btn.xlarge.icon-right a, .skiplink.xlarge.icon-right a { + padding-right: 66px; +} +.btn.xlarge.icon-right a:after, .skiplink.xlarge.icon-right a:after { + right: 20px; +} +.btn.large, .skiplink.large { + font-size: 26px; + font-size: 1.625rem; + height: 58px; + line-height: 56px; +} +.btn.large a, .skiplink.large a { + position: relative; + padding: 0 26px; +} +.btn.large.icon-left a, .skiplink.large.icon-left a { + padding-left: 58px; +} +.btn.large.icon-left a:before, .skiplink.large.icon-left a:before { + left: 17.33333px; +} +.btn.large.icon-right a, .skiplink.large.icon-right a { + padding-right: 58px; +} +.btn.large.icon-right a:after, .skiplink.large.icon-right a:after { + right: 17.33333px; +} +.btn.medium, .skiplink.medium { + font-size: 16px; + font-size: 1rem; + height: 36px; + line-height: 34px; +} +.btn.medium a, .skiplink.medium a { + position: relative; + padding: 0 16px; +} +.btn.medium.icon-left a, .skiplink.medium.icon-left a { + padding-left: 36px; +} +.btn.medium.icon-left a:before, .skiplink.medium.icon-left a:before { + left: 10.66667px; +} +.btn.medium.icon-right a, .skiplink.medium.icon-right a { + padding-right: 36px; +} +.btn.medium.icon-right a:after, .skiplink.medium.icon-right a:after { + right: 10.66667px; +} +.btn.medium a, .skiplink.medium a { + padding: 0 18px; +} +.btn.small, .skiplink.small { + font-size: 10px; + font-size: 0.625rem; + height: 23px; + line-height: 21px; +} +.btn.small a, .skiplink.small a { + position: relative; + padding: 0 10px; +} +.btn.small.icon-left a, .skiplink.small.icon-left a { + padding-left: 23px; +} +.btn.small.icon-left a:before, .skiplink.small.icon-left a:before { + left: 6.66667px; +} +.btn.small.icon-right a, .skiplink.small.icon-right a { + padding-right: 23px; +} +.btn.small.icon-right a:after, .skiplink.small.icon-right a:after { + right: 6.66667px; +} +.btn.small a, .skiplink.small a { + padding: 0 10px; +} +.btn.oval, .skiplink.oval { + -webkit-border-radius: 1000px; + -moz-border-radius: 1000px; + -ms-border-radius: 1000px; + -o-border-radius: 1000px; + border-radius: 1000px; +} +.btn.pill-left, .skiplink.pill-left { + -webkit-border-radius: 500px 0 0 500px; + -moz-border-radius: 500px 0 0 500px; + -ms-border-radius: 500px 0 0 500px; + -o-border-radius: 500px 0 0 500px; + border-radius: 500px 0 0 500px; +} +.btn.pill-right, .skiplink.pill-right { + -webkit-border-radius: 0 500px 500px 0; + -moz-border-radius: 0 500px 500px 0; + -ms-border-radius: 0 500px 500px 0; + -o-border-radius: 0 500px 500px 0; + border-radius: 0 500px 500px 0; +} +.btn.primary, .skiplink.primary { + background: #3085d6; + border: 1px solid #3085d6; +} +.btn.primary:hover, .skiplink.primary:hover { + background: #5b9ede; +} +.btn.primary:active, .skiplink.primary:active { + background: #236bb0; +} +.btn.secondary, .skiplink.secondary { + background: #42a35a; + border: 1px solid #42a35a; +} +.btn.secondary:hover, .skiplink.secondary:hover { + background: #5bbd73; +} +.btn.secondary:active, .skiplink.secondary:active { + background: #337f46; +} +.btn.default, .skiplink.default { + background: #f2f2f2; + border: 1px solid #f2f2f2; + color: #555555; + border: 1px solid #f2f2f2; +} +.btn.default:hover, .skiplink.default:hover { + background: white; +} +.btn.default:active, .skiplink.default:active { + background: #d8d8d8; +} +.btn.default:hover, .skiplink.default:hover { + border: 1px solid #e5e5e5; +} +.btn.default a, .btn.default input, .btn.default button, .skiplink.default a, .skiplink.default input, .skiplink.default button { + color: #555555; +} +.btn.info, .skiplink.info { + background: #4a4d50; + border: 1px solid #4a4d50; +} +.btn.info:hover, .skiplink.info:hover { + background: #63676a; +} +.btn.info:active, .skiplink.info:active { + background: #313436; +} +.btn.danger, .skiplink.danger { + background: #ca3838; + border: 1px solid #ca3838; +} +.btn.danger:hover, .skiplink.danger:hover { + background: #d56060; +} +.btn.danger:active, .skiplink.danger:active { + background: #a32c2c; +} +.btn.warning, .skiplink.warning { + background: #f6b83f; + border: 1px solid #f6b83f; + color: #644405; +} +.btn.warning:hover, .skiplink.warning:hover { + background: #f8ca70; +} +.btn.warning:active, .skiplink.warning:active { + background: #f4a60e; +} +.btn.warning a, .btn.warning input, .btn.warning button, .skiplink.warning a, .skiplink.warning input, .skiplink.warning button { + color: #644405; +} +.btn.success, .skiplink.success { + background: #58c026; + border: 1px solid #58c026; +} +.btn.success:hover, .skiplink.success:hover { + background: #72d940; +} +.btn.success:active, .skiplink.success:active { + background: #44951e; +} +.btn.twitter, .skiplink.twitter { + background: #00aced; + border: 1px solid #00aced; +} +.btn.twitter:hover, .skiplink.twitter:hover { + background: #21c2ff; +} +.btn.twitter:active, .skiplink.twitter:active { + background: #0087ba; +} +.btn.facebook, .skiplink.facebook { + background: #3b5998; + border: 1px solid #3b5998; +} +.btn.facebook:hover, .skiplink.facebook:hover { + background: #4c70ba; +} +.btn.facebook:active, .skiplink.facebook:active { + background: #2d4373; +} +.btn.metro, .metro .btn, .metro .skiplink, .btn.metro:hover, .metro .btn:hover, .metro .skiplink:hover, .skiplink.metro:hover, .btn.metro:active, .metro .btn:active, .metro .skiplink:active, .skiplink.metro:active, .skiplink.metro { + -webkit-border-radius: 0; + -moz-border-radius: 0; + -ms-border-radius: 0; + -o-border-radius: 0; + border-radius: 0; +} +.btn.metro.rounded, .metro .rounded.btn, .metro .rounded.skiplink, .metro .rounded.btn:hover, .metro .rounded.skiplink:hover, .rounded.skiplink.metro:hover, .metro .rounded.btn:active, .metro .rounded.skiplink:active, .rounded.skiplink.metro:active, .skiplink.metro.rounded { + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -ms-border-radius: 4px; + -o-border-radius: 4px; + border-radius: 4px; +} +.btn.pretty, .pretty .btn, .pretty .skiplink, .btn.pretty:hover, .pretty .btn:hover, .pretty .skiplink:hover, .skiplink.pretty:hover, .btn.pretty:active, .pretty .btn:active, .pretty .skiplink:active, .skiplink.pretty:active, .skiplink.pretty { + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -ms-border-radius: 4px; + -o-border-radius: 4px; + border-radius: 4px; +} +.btn.pretty.squared, .pretty .squared.btn, .pretty .squared.skiplink, .pretty .squared.btn:hover, .pretty .squared.skiplink:hover, .squared.skiplink.pretty:hover, .pretty .squared.btn:active, .pretty .squared.skiplink:active, .squared.skiplink.pretty:active, .skiplink.pretty.squared { + -webkit-border-radius: 0; + -moz-border-radius: 0; + -ms-border-radius: 0; + -o-border-radius: 0; + border-radius: 0; +} +.btn.pretty.primary, .pretty .primary.btn, .pretty .primary.skiplink, .pretty .primary.btn:hover, .pretty .primary.skiplink:hover, .primary.skiplink.pretty:hover, .pretty .primary.btn:active, .pretty .primary.skiplink:active, .primary.skiplink.pretty:active, .skiplink.pretty.primary { + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #85b7e7), color-stop(100%, #2a85dc)); + background-image: -webkit-linear-gradient(#85b7e7, #2a85dc); + background-image: -moz-linear-gradient(#85b7e7, #2a85dc); + background-image: -o-linear-gradient(#85b7e7, #2a85dc); + background-image: linear-gradient(#85b7e7, #2a85dc); + box-shadow: inset 0 0 3px #f0f6fc; + border: 1px solid #1f5e9b; +} +.pretty .primary.btn:hover, .pretty .primary.skiplink:hover, .primary.btn.pretty:hover, .primary.skiplink.pretty:hover, .pretty .primary.btn:hover:active, .pretty .primary.skiplink:hover:active, .skiplink.pretty.primary:hover { + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a2d4fc), color-stop(100%, #54b2fe)); + background-image: -webkit-linear-gradient(#a2d4fc, #54b2fe); + background-image: -moz-linear-gradient(#a2d4fc, #54b2fe); + background-image: -o-linear-gradient(#a2d4fc, #54b2fe); + background-image: linear-gradient(#a2d4fc, #54b2fe); + box-shadow: inset 0 0 3px white; + border: 1px solid #0e90f8; +} +.pretty .primary.btn:active, .pretty .primary.skiplink:active, .pretty .primary.btn:active:hover, .pretty .primary.skiplink:active:hover, .primary.btn.pretty:active, .primary.skiplink.pretty:active, .skiplink.pretty.primary:active { + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2a85dc), color-stop(100%, #85b7e7)); + background-image: -webkit-linear-gradient(#2a85dc, #85b7e7); + background-image: -moz-linear-gradient(#2a85dc, #85b7e7); + background-image: -o-linear-gradient(#2a85dc, #85b7e7); + background-image: linear-gradient(#2a85dc, #85b7e7); + box-shadow: inset 0 0 3px white; +} +.btn.pretty.primary a, .pretty .primary.btn a, .pretty .primary.skiplink a, .pretty .primary.btn:hover a, .pretty .primary.skiplink:hover a, .primary.skiplink.pretty:hover a, .pretty .primary.btn:active a, .pretty .primary.skiplink:active a, .primary.skiplink.pretty:active a, .btn.pretty.primary input, .pretty .primary.btn input, .pretty .primary.skiplink input, .pretty .primary.btn:hover input, .pretty .primary.skiplink:hover input, .primary.skiplink.pretty:hover input, .pretty .primary.btn:active input, .pretty .primary.skiplink:active input, .primary.skiplink.pretty:active input, .btn.pretty.primary button, .pretty .primary.btn button, .pretty .primary.skiplink button, .pretty .primary.btn:hover button, .pretty .primary.skiplink:hover button, .primary.skiplink.pretty:hover button, .pretty .primary.btn:active button, .pretty .primary.skiplink:active button, .primary.skiplink.pretty:active button, .skiplink.pretty.primary a, .skiplink.pretty.primary input, .skiplink.pretty.primary button { + text-shadow: 0 1px 1px #1a5186; +} +.btn.pretty.secondary, .pretty .secondary.btn, .pretty .secondary.skiplink, .pretty .secondary.btn:hover, .pretty .secondary.skiplink:hover, .secondary.skiplink.pretty:hover, .pretty .secondary.btn:active, .pretty .secondary.skiplink:active, .secondary.skiplink.pretty:active, .skiplink.pretty.secondary { + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #80cb92), color-stop(100%, #3ca957)); + background-image: -webkit-linear-gradient(#80cb92, #3ca957); + background-image: -moz-linear-gradient(#80cb92, #3ca957); + background-image: -o-linear-gradient(#80cb92, #3ca957); + background-image: linear-gradient(#80cb92, #3ca957); + box-shadow: inset 0 0 3px #daf0e0; + border: 1px solid #2c6d3c; +} +.pretty .secondary.btn:hover, .pretty .secondary.skiplink:hover, .secondary.btn.pretty:hover, .secondary.skiplink.pretty:hover, .pretty .secondary.btn:hover:active, .pretty .secondary.skiplink:hover:active, .skiplink.pretty.secondary:hover { + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a1d3ad), color-stop(100%, #68c07d)); + background-image: -webkit-linear-gradient(#a1d3ad, #68c07d); + background-image: -moz-linear-gradient(#a1d3ad, #68c07d); + background-image: -o-linear-gradient(#a1d3ad, #68c07d); + background-image: linear-gradient(#a1d3ad, #68c07d); + box-shadow: inset 0 0 3px #f8fcf9; + border: 1px solid #469659; +} +.pretty .secondary.btn:active, .pretty .secondary.skiplink:active, .pretty .secondary.btn:active:hover, .pretty .secondary.skiplink:active:hover, .secondary.btn.pretty:active, .secondary.skiplink.pretty:active, .skiplink.pretty.secondary:active { + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3ca957), color-stop(100%, #80cb92)); + background-image: -webkit-linear-gradient(#3ca957, #80cb92); + background-image: -moz-linear-gradient(#3ca957, #80cb92); + background-image: -o-linear-gradient(#3ca957, #80cb92); + background-image: linear-gradient(#3ca957, #80cb92); + box-shadow: inset 0 0 3px #ecf8ef; +} +.btn.pretty.secondary a, .pretty .secondary.btn a, .pretty .secondary.skiplink a, .pretty .secondary.btn:hover a, .pretty .secondary.skiplink:hover a, .secondary.skiplink.pretty:hover a, .pretty .secondary.btn:active a, .pretty .secondary.skiplink:active a, .secondary.skiplink.pretty:active a, .btn.pretty.secondary input, .pretty .secondary.btn input, .pretty .secondary.skiplink input, .pretty .secondary.btn:hover input, .pretty .secondary.skiplink:hover input, .secondary.skiplink.pretty:hover input, .pretty .secondary.btn:active input, .pretty .secondary.skiplink:active input, .secondary.skiplink.pretty:active input, .btn.pretty.secondary button, .pretty .secondary.btn button, .pretty .secondary.skiplink button, .pretty .secondary.btn:hover button, .pretty .secondary.skiplink:hover button, .secondary.skiplink.pretty:hover button, .pretty .secondary.btn:active button, .pretty .secondary.skiplink:active button, .secondary.skiplink.pretty:active button, .skiplink.pretty.secondary a, .skiplink.pretty.secondary input, .skiplink.pretty.secondary button { + text-shadow: 0 1px 1px #255a32; +} +.btn.pretty.default, .pretty .default.btn, .pretty .default.skiplink, .pretty .default.btn:hover, .pretty .default.skiplink:hover, .default.skiplink.pretty:hover, .pretty .default.btn:active, .pretty .default.skiplink:active, .default.skiplink.pretty:active, .skiplink.pretty.default { + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #f3f1f1)); + background-image: -webkit-linear-gradient(#ffffff, #f3f1f1); + background-image: -moz-linear-gradient(#ffffff, #f3f1f1); + background-image: -o-linear-gradient(#ffffff, #f3f1f1); + background-image: linear-gradient(#ffffff, #f3f1f1); + box-shadow: inset 0 0 3px white; + border: 1px solid #cccccc; +} +.pretty .default.btn:hover, .pretty .default.skiplink:hover, .default.btn.pretty:hover, .default.skiplink.pretty:hover, .pretty .default.btn:hover:active, .pretty .default.skiplink:hover:active, .skiplink.pretty.default:hover { + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #ffffff)); + background-image: -webkit-linear-gradient(#ffffff, #ffffff); + background-image: -moz-linear-gradient(#ffffff, #ffffff); + background-image: -o-linear-gradient(#ffffff, #ffffff); + background-image: linear-gradient(#ffffff, #ffffff); + box-shadow: inset 0 0 3px white; + border: 1px solid #d9d9d9; +} +.pretty .default.btn:active, .pretty .default.skiplink:active, .pretty .default.btn:active:hover, .pretty .default.skiplink:active:hover, .default.btn.pretty:active, .default.skiplink.pretty:active, .skiplink.pretty.default:active { + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f3f1f1), color-stop(100%, #ffffff)); + background-image: -webkit-linear-gradient(#f3f1f1, #ffffff); + background-image: -moz-linear-gradient(#f3f1f1, #ffffff); + background-image: -o-linear-gradient(#f3f1f1, #ffffff); + background-image: linear-gradient(#f3f1f1, #ffffff); + box-shadow: inset 0 0 3px white; +} +.btn.pretty.default a, .pretty .default.btn a, .pretty .default.skiplink a, .pretty .default.btn:hover a, .pretty .default.skiplink:hover a, .default.skiplink.pretty:hover a, .pretty .default.btn:active a, .pretty .default.skiplink:active a, .default.skiplink.pretty:active a, .btn.pretty.default input, .pretty .default.btn input, .pretty .default.skiplink input, .pretty .default.btn:hover input, .pretty .default.skiplink:hover input, .default.skiplink.pretty:hover input, .pretty .default.btn:active input, .pretty .default.skiplink:active input, .default.skiplink.pretty:active input, .btn.pretty.default button, .pretty .default.btn button, .pretty .default.skiplink button, .pretty .default.btn:hover button, .pretty .default.skiplink:hover button, .default.skiplink.pretty:hover button, .pretty .default.btn:active button, .pretty .default.skiplink:active button, .default.skiplink.pretty:active button, .skiplink.pretty.default a, .skiplink.pretty.default input, .skiplink.pretty.default button { + text-shadow: 0 1px 1px white; +} +.btn.pretty.info, .pretty .info.btn, .pretty .info.skiplink, .pretty .info.btn:hover, .pretty .info.skiplink:hover, .info.skiplink.pretty:hover, .pretty .info.btn:active, .pretty .info.skiplink:active, .info.skiplink.pretty:active, .skiplink.pretty.info { + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7b8085), color-stop(100%, #464d54)); + background-image: -webkit-linear-gradient(#7b8085, #464d54); + background-image: -moz-linear-gradient(#7b8085, #464d54); + background-image: -o-linear-gradient(#7b8085, #464d54); + background-image: linear-gradient(#7b8085, #464d54); + box-shadow: inset 0 0 3px #bdc0c2; + border: 1px solid #252728; +} +.pretty .info.btn:hover, .pretty .info.skiplink:hover, .info.btn.pretty:hover, .info.skiplink.pretty:hover, .pretty .info.btn:hover:active, .pretty .info.skiplink:hover:active, .skiplink.pretty.info:hover { + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #aeb3b6), color-stop(100%, #808e98)); + background-image: -webkit-linear-gradient(#aeb3b6, #808e98); + background-image: -moz-linear-gradient(#aeb3b6, #808e98); + background-image: -o-linear-gradient(#aeb3b6, #808e98); + background-image: linear-gradient(#aeb3b6, #808e98); + box-shadow: inset 0 0 3px #f1f2f3; + border: 1px solid #60676b; +} +.pretty .info.btn:active, .pretty .info.skiplink:active, .pretty .info.btn:active:hover, .pretty .info.skiplink:active:hover, .info.btn.pretty:active, .info.skiplink.pretty:active, .skiplink.pretty.info:active { + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #464d54), color-stop(100%, #7b8085)); + background-image: -webkit-linear-gradient(#464d54, #7b8085); + background-image: -moz-linear-gradient(#464d54, #7b8085); + background-image: -o-linear-gradient(#464d54, #7b8085); + background-image: linear-gradient(#464d54, #7b8085); + box-shadow: inset 0 0 3px #cbcdce; +} +.btn.pretty.info a, .pretty .info.btn a, .pretty .info.skiplink a, .pretty .info.btn:hover a, .pretty .info.skiplink:hover a, .info.skiplink.pretty:hover a, .pretty .info.btn:active a, .pretty .info.skiplink:active a, .info.skiplink.pretty:active a, .btn.pretty.info input, .pretty .info.btn input, .pretty .info.skiplink input, .pretty .info.btn:hover input, .pretty .info.skiplink:hover input, .info.skiplink.pretty:hover input, .pretty .info.btn:active input, .pretty .info.skiplink:active input, .info.skiplink.pretty:active input, .btn.pretty.info button, .pretty .info.btn button, .pretty .info.skiplink button, .pretty .info.btn:hover button, .pretty .info.skiplink:hover button, .info.skiplink.pretty:hover button, .pretty .info.btn:active button, .pretty .info.skiplink:active button, .info.skiplink.pretty:active button, .skiplink.pretty.info a, .skiplink.pretty.info input, .skiplink.pretty.info button { + text-shadow: 0 1px 1px #191a1b; +} +.btn.pretty.danger, .pretty .danger.btn, .pretty .danger.skiplink, .pretty .danger.btn:hover, .pretty .danger.skiplink:hover, .danger.skiplink.pretty:hover, .pretty .danger.btn:active, .pretty .danger.skiplink:active, .danger.skiplink.pretty:active, .skiplink.pretty.danger { + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #df8989), color-stop(100%, #d03232)); + background-image: -webkit-linear-gradient(#df8989, #d03232); + background-image: -moz-linear-gradient(#df8989, #d03232); + background-image: -o-linear-gradient(#df8989, #d03232); + background-image: linear-gradient(#df8989, #d03232); + box-shadow: inset 0 0 3px #faeded; + border: 1px solid #8f2626; +} +.pretty .danger.btn:hover, .pretty .danger.skiplink:hover, .danger.btn.pretty:hover, .danger.skiplink.pretty:hover, .pretty .danger.btn:hover:active, .pretty .danger.skiplink:hover:active, .skiplink.pretty.danger:hover { + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f79696), color-stop(100%, #f64a4a)); + background-image: -webkit-linear-gradient(#f79696, #f64a4a); + background-image: -moz-