/***************/
/* MEYER RESET */
/***************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/**************/
/* BASE RULES */
/**************/
html {
  font-size: 100%;
}

body {
  background: #fff;
  font: 16px/23px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #777;
  -webkit-font-smoothing: antialiased;
}

.container {
  margin: 0 auto;
  max-width: 980px;
  padding: 0 10px;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #555;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 640px) {
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
  }
}

h1 {
  font-size: 2em;
  margin: .5em 0;
}
h1 a {
  color: #d42;
}
h1 a:hover {
  color: #c30;
}

.key {
  background-color: #F0F0F0;
  border: 1px solid #B4B4B4;
  border-radius: 4px;
  line-height: 1.8em;
  padding: 0 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(255, 255, 255, 0.7) inset;
}

.post h1 {
  font-size: 2em;
  letter-spacing: -.03em;
  line-height: 1.1;
}

#home .post {
  width: 220px;
  float: left;
  vertical-align: top;
  margin: 0 20px 0 0;
  height: 360px;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  #home .post {
    margin: 0 20px;
    width: 300px;
  }
}

#home .post h1 {
  font-size: 24px;
  line-height: 1.2;
  min-height: 60px;
  margin: 0 0 12px;
  letter-spacing: normal;
  font-weight: 700;
}

h1.site-name {
  font-size: 40px;
  line-height: 42px;
  font-weight: 700;
  max-width: 6em;
  margin-bottom: 20px;
  letter-spacing: -.03em;
  display: inline-block;
}
h1.site-name a {
  color: #555;
}
@media screen and (max-width: 640px) {
  h1.site-name {
    margin: 0 20px;
  }
}

#home .site-description {
  margin-top: 20px;
}

h2 {
  font-size: 24px;
  margin: 48px 0 12px;
}

h3 {
  font-size: 20px;
  margin: 40px 0 10px;
}

h4 {
  font-size: 18px;
  color: #777;
  margin: 36px 0 9px;
}

p {
  margin: 15px 0;
}

a.huge {
  width: 40%;
  margin-left: 5%;
  margin-top: 20px;
  font-size: 30px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  padding: 20px;
  border-radius: 5px;
  background-color: #f57b00;
  color: white;
}

#home p.site-description {
  font-size: 30px;
  font-weight: 300;
  line-height: 40px;
}
@media screen and (max-width: 640px) {
  #home p.site-description {
    margin: 30px 20px 10px 20px;
  }
}

#home .entry p {
  color: #777;
}

a {
  color: #d42;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:active {
  color: #c30;
}

ul, ol {
  margin: 15px 0;
  padding-left: 30px;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

ol ul, ul ol, ul ul, ol ol {
  margin: 0;
}

ul ul, ol ul {
  list-style-type: circle;
}

em, i {
  font-style: italic;
}

strong, b {
  font-weight: bold;
  color: #555;
}

blockquote {
  margin: 1.8em .8em;
  padding: 0.1em 1em;
  background-color: #f2f2f2;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

img {
  max-width: 100%;
}

.date {
  font-size: 60%;
  color: #777;
}

::-moz-selection {
  color: #000;
  background: #ccc;
}

::selection {
  color: #000;
  background: #ccc;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

/*********************/
/* LAYOUT / SECTIONS */
/*********************/
.content-wrapper {
  min-height: 600px;
}

.masthead {
  padding: 20px 0 10px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 640px) {
  .masthead {
    text-align: center;
  }
}

.site-avatar {
  float: left;
  width: 50px;
  height: 50px;
  margin-right: 15px;
  margin-bottom: 15px;
}
.site-avatar img {
  border-radius: 26px;
}

.site-info {
  float: left;
}
@media screen and (max-width: 640px) {
  .site-info {
    float: none;
    display: block;
    margin: 0 auto;
  }
}

.site-name {
  margin: 0;
  color: #555;
  cursor: pointer;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 28px;
}

.site-description {
  margin: -5px 0 0 0;
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 640px) {
  .site-description {
    margin: 3px 0;
  }
}

a.brackets {
  padding-left: 35px;
  line-height: 35px;
  display: block;
  background: url(assets/brackets.svg) 0% 5px/32px auto no-repeat;
}

header nav {
  float: right;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  display: inline-block;
}
@media screen and (max-width: 640px) {
  header nav {
    float: none;
    margin-top: 20px;
    display: block;
  }
}
header nav a {
  margin-left: 20px;
  color: #777;
  display: block;
  float: left;
  line-height: 35px;
}
@media screen and (max-width: 640px) {
  header nav a {
    display: inline-block;
    float: none;
    margin: 0 20px;
    color: #555;
    text-align: left;
  }
}
header nav div.github {
  margin-left: 20px;
  color: black;
  display: block;
  float: none;
  line-height: 35px;
}
header nav div.github::before {
  content: "Github:";
}
header nav div.github a {
  float: right;
}
@media screen and (max-width: 640px) {
  header nav div.github {
    display: inline-block;
    float: none;
    margin: 20px 10px 0;
    color: black;
    text-align: left;
  }
}

nav.wiki-breadcrumbs ul {
  margin: 1em 0 0 0;
  padding: 0;
  border: 0;
}
nav.wiki-breadcrumbs li {
  display: inline-block;
  padding-left: 10px;
}
@media screen and (max-width: 640px) {
  nav.wiki-breadcrumbs li {
    display: block;
    line-height: 35px;
  }
}
nav.wiki-breadcrumbs a.current {
  background: #777;
  border-radius: 5px;
  color: #fff;
  padding: 5px;
}

.origin a {
  float: right;
}

@media screen and (max-width: 640px) {
  article {
    margin: 0 20px;
  }
}

.post blockquote {
  margin: 1.8em .8em;
  border-left: 1px dotted #777;
  padding: 0.1em 1em;
  color: #777;
}
.post .eyebrow {
  font-size: 12px;
  line-height: 30px;
  color: #777;
  padding-top: 6px;
  margin-bottom: 6px;
  border-top: 1px solid #999;
}
.post .comments {
  margin-top: 10px;
}
.post .small-link {
  font-size: 11px;
  color: #999;
  display: block;
}
.post .small-link:hover {
  color: #d42;
}
.post .large-link {
  font-size: 20px;
  color: #555;
  font-weight: 500;
}
.post .primary-link {
  color: #000;
  font-size: 13px;
  font-weight: 500;
}
.post .spacer {
  padding-right: 8px;
  margin-right: 8px;
  border-right: 1px solid #ccc;
}

.wrapper-footer {
  margin-top: 50px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #ccc;
}

footer {
  padding: 20px 0;
  text-align: center;
}

#screenshot-slider {
  height: 461px;
  margin-bottom: 30px;
}
#screenshot-slider .iis-slide {
  background-size: auto 461px;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.videoWrapper.ViewEE-QuickLook {
  padding-bottom: 53.3%;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.terminal {
  background-color: #333;
  padding: 5px 10px;
  margin: 20px 0;
}

.terminal pre {
  /* overflow: scroll; Prefer no word wrap? Uncomment this line and comment out the 2 lines below. */
  word-break: break-all;
  word-wrap: break-word;
  font-family: Consolas, monospace;
}

.terminal {
  white-space: pre;
  overflow: auto;
  word-wrap: normal;
  /* horizontal scrolling */
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 20px;
  background: #343642;
  color: #C1C2C3;
  color: #eee;
}
.terminal .cuwire {
  color: lime;
}
.terminal .yellow {
  color: yellow;
}
.terminal .cmd {
  color: white;
}
.terminal .err {
  color: red;
  background-color: #eee;
}
.terminal .path {
  color: deepskyblue;
}

/***********************/
/* SYNTAX HIGHLIGHTING */
/***********************/
.highlight {
  background-color: #333;
  padding: 5px 10px;
  margin: 20px 0;
}

.highlight pre {
  /* overflow: scroll; Prefer no word wrap? Uncomment this line and comment out the 2 lines below. */
  word-break: break-all;
  word-wrap: break-word;
}

code {
  font-family: 'Courier', monospace;
  color: #999;
}

.highlight {
  /* Comment */
  /* Error */
  /* Generic */
  /* Keyword */
  /* Literal */
  /* Name */
  /* Operator */
  /* Other */
  /* Punctuation */
  /* Comment.Multiline */
  /* Comment.Preproc */
  /* Comment.Single */
  /* Comment.Special */
  /* Generic.Deleted */
  /* Generic.Emph */
  /* Generic.Error */
  /* Generic.Heading */
  /* Generic.Inserted */
  /* Generic.Output */
  /* Generic.Prompt */
  /* Generic.Strong */
  /* Generic.Subheading */
  /* Generic.Traceback */
  /* Keyword.Constant */
  /* Keyword.Declaration */
  /* Keyword.Namespace */
  /* Keyword.Pseudo */
  /* Keyword.Reserved */
  /* Keyword.Type */
  /* Literal.Date */
  /* Literal.Number */
  /* Literal.String */
  /* Name.Attribute */
  /* Name.Builtin */
  /* Name.Class */
  /* Name.Constant */
  /* Name.Decorator */
  /* Name.Entity */
  /* Name.Exception */
  /* Name.Function */
  /* Name.Label */
  /* Name.Namespace */
  /* Name.Other */
  /* Name.Property */
  /* Name.Tag */
  /* Name.Variable */
  /* Operator.Word */
  /* Text.Whitespace */
  /* Literal.Number.Float */
  /* Literal.Number.Hex */
  /* Literal.Number.Integer */
  /* Literal.Number.Oct */
  /* Literal.String.Backtick */
  /* Literal.String.Char */
  /* Literal.String.Doc */
  /* Literal.String.Double */
  /* Literal.String.Escape */
  /* Literal.String.Heredoc */
  /* Literal.String.Interpol */
  /* Literal.String.Other */
  /* Literal.String.Regex */
  /* Literal.String.Single */
  /* Literal.String.Symbol */
  /* Name.Builtin.Pseudo */
  /* Name.Variable.Class */
  /* Name.Variable.Global */
  /* Name.Variable.Instance */
  /* Literal.Number.Integer.Long */
}
.highlight code, .highlight pre {
  color: #fdce93;
  background-color: #3f3f3f;
}
.highlight .hll {
  background-color: #222;
}
.highlight .c, .highlight .c1 {
  color: #7f9f7f;
}
.highlight .err {
  color: #e37170;
  background-color: #3d3535;
}
.highlight .g {
  color: #7f9f7f;
}
.highlight .k {
  color: #f0dfaf;
}
.highlight .l {
  color: #ccc;
}
.highlight .n {
  color: #dcdccc;
}
.highlight .o {
  color: #f0efd0;
}
.highlight .x {
  color: #ccc;
}
.highlight .p {
  color: #41706f;
}
.highlight .cm {
  color: #7f9f7f;
}
.highlight .cp {
  color: #7f9f7f;
}
.highlight .c1 {
  color: #7f9f7f;
}
.highlight .cs {
  color: #cd0000;
  font-weight: bold;
}
.highlight .gd {
  color: #cd0000;
}
.highlight .ge {
  color: #ccc;
  font-style: italic;
}
.highlight .gr {
  color: red;
}
.highlight .gh {
  color: #dcdccc;
  font-weight: bold;
}
.highlight .gi {
  color: #00cd00;
}
.highlight .go {
  color: gray;
}
.highlight .gp {
  color: #dcdccc;
  font-weight: bold;
}
.highlight .gs {
  color: #ccc;
  font-weight: bold;
}
.highlight .gu {
  color: purple;
  font-weight: bold;
}
.highlight .gt {
  color: #0040D0;
}
.highlight .kc {
  color: #dca3a3;
}
.highlight .kd {
  color: #ffff86;
}
.highlight .kn {
  color: #dfaf8f;
  font-weight: bold;
}
.highlight .kp {
  color: #cdcf99;
}
.highlight .kr {
  color: #cdcd00;
}
.highlight .kt {
  color: #00cd00;
}
.highlight .ld {
  color: #cc9393;
}
.highlight .m {
  color: #8cd0d3;
}
.highlight .s {
  color: #cc9393;
}
.highlight .na {
  color: #9ac39f;
}
.highlight .nb {
  color: #efef8f;
}
.highlight .nc {
  color: #efef8f;
}
.highlight .no {
  color: #ccc;
}
.highlight .nd {
  color: #ccc;
}
.highlight .ni {
  color: #c28182;
}
.highlight .ne {
  color: #c3bf9f;
  font-weight: bold;
}
.highlight .nf {
  color: #efef8f;
}
.highlight .nl {
  color: #ccc;
}
.highlight .nn {
  color: #8fbede;
}
.highlight .nx {
  color: #ccc;
}
.highlight .py {
  color: #ccc;
}
.highlight .nt {
  color: #9ac39f;
}
.highlight .nv {
  color: #dcdccc;
}
.highlight .ow {
  color: #f0efd0;
}
.highlight .w {
  color: #ccc;
}
.highlight .mf {
  color: #8cd0d3;
}
.highlight .mh {
  color: #8cd0d3;
}
.highlight .mi {
  color: #8cd0d3;
}
.highlight .mo {
  color: #8cd0d3;
}
.highlight .sb {
  color: #cc9393;
}
.highlight .sc {
  color: #cc9393;
}
.highlight .sd {
  color: #cc9393;
}
.highlight .s2 {
  color: #cc9393;
}
.highlight .se {
  color: #cc9393;
}
.highlight .sh {
  color: #cc9393;
}
.highlight .si {
  color: #cc9393;
}
.highlight .sx {
  color: #cc9393;
}
.highlight .sr {
  color: #cc9393;
}
.highlight .s1 {
  color: #cc9393;
}
.highlight .ss {
  color: #cc9393;
}
.highlight .bp {
  color: #efef8f;
}
.highlight .vc {
  color: #efef8f;
}
.highlight .vg {
  color: #dcdccc;
}
.highlight .vi {
  color: #ffffc7;
}
.highlight .il {
  color: #8cd0d3;
}
