summaryrefslogtreecommitdiffstats
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
parentb58fa13180981afce4f17b4d59b739d79a5873f5 (diff)
add theme
-rw-r--r--.gitignore2
-rw-r--r--Makefile8
-rw-r--r--content/posts/a-usable-vim-undo-tree.rst35
-rw-r--r--content/posts/wps-and-openwrt.rst10
-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
-rw-r--r--pelicanconf.py18
-rw-r--r--publishconf.py11
38 files changed, 8287 insertions, 21 deletions
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 <https://github.com/sjl/gundo.vim>`_.
+
+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
+<https://github.com/gmarik/Vundle.vim>`_.
+
+Add these lines to your vimrc:
+
+.. code-block:: vim
+
+ Bundle 'sjl/gundo.vim'
+ nnoremap <F5> :GundoToggle<CR>
+ 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 **<F5>**.
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
--- /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.c