summaryrefslogtreecommitdiffstats
path: root/pelican-themes
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2014-05-21 18:26:18 +0200
committermakefu <github@syntax-fehler.de>2014-05-21 18:26:18 +0200
commit720176d791425eacb777979a5041f63ade48eae5 (patch)
treef9972b0347f23297183c9811efc5427106a1fd0b /pelican-themes
parentb58fa13180981afce4f17b4d59b739d79a5873f5 (diff)
add theme
Diffstat (limited to 'pelican-themes')
-rw-r--r--pelican-themes/gum/LICENSE7
-rw-r--r--pelican-themes/gum/README.md45
-rw-r--r--pelican-themes/gum/screenshot.pngbin0 -> 138260 bytes
-rw-r--r--pelican-themes/gum/static/fonts/icons/entypo.eotbin0 -> 76038 bytes
-rw-r--r--pelican-themes/gum/static/fonts/icons/entypo.ttfbin0 -> 75800 bytes
-rw-r--r--pelican-themes/gum/static/fonts/icons/entypo.woffbin0 -> 45152 bytes
-rw-r--r--pelican-themes/gum/static/gumby.css7097
-rw-r--r--pelican-themes/gum/static/js/libs/gumby.init.js27
-rw-r--r--pelican-themes/gum/static/js/libs/gumby.js145
-rw-r--r--pelican-themes/gum/static/js/libs/gumby.min.js1
-rw-r--r--pelican-themes/gum/static/js/libs/jquery-1.9.1.min.js5
-rw-r--r--pelican-themes/gum/static/js/libs/jquery.mobile.custom.min.js3
-rw-r--r--pelican-themes/gum/static/js/libs/modernizr-2.6.2.min.js4
-rw-r--r--pelican-themes/gum/static/js/libs/ui/gumby.navbar.js69
-rw-r--r--pelican-themes/gum/static/js/plugins.js8
-rw-r--r--pelican-themes/gum/static/pygment.css205
-rw-r--r--pelican-themes/gum/static/style.css201
-rw-r--r--pelican-themes/gum/templates/archives.html11
-rw-r--r--pelican-themes/gum/templates/article.html53
-rw-r--r--pelican-themes/gum/templates/author.html7
-rw-r--r--pelican-themes/gum/templates/base.html155
-rw-r--r--pelican-themes/gum/templates/categories.html8
-rw-r--r--pelican-themes/gum/templates/category.html5
-rw-r--r--pelican-themes/gum/templates/disqus_script.html11
-rw-r--r--pelican-themes/gum/templates/index.html49
-rw-r--r--pelican-themes/gum/templates/page.html9
-rw-r--r--pelican-themes/gum/templates/pagination.html15
-rw-r--r--pelican-themes/gum/templates/piwik.html16
-rw-r--r--pelican-themes/gum/templates/sidebar.html53
-rw-r--r--pelican-themes/gum/templates/tag.html2
-rw-r--r--pelican-themes/gum/templates/tags.html13
-rw-r--r--pelican-themes/gum/typography.pngbin0 -> 95335 bytes
32 files changed, 8224 insertions, 0 deletions
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
--- /dev/null
+++ b/pelican-themes/gum/screenshot.png
Binary files 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
--- /dev/null
+++ b/pelican-themes/gum/static/fonts/icons/entypo.eot
Binary files 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
--- /dev/null
+++ b/pelican-themes/gum/static/fonts/icons/entypo.ttf
Binary files 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
--- /dev/null
+++ b/pelican-themes/gum/static/fonts/icons/entypo.woff
Binary files 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-