/*
Theme Name: socket.io-website
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0-wpcom
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: socket-io-website
Domain Path: /languages/
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

 socket.io-website is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
4.0 - Forms
5.0 - Navigation
    5.1 - Links
    5.2 - Menus
6.0 - Accessibility
7.0 - Alignments
8.0 - Clearings
9.0 - Widgets
10.0 - Content
    10.1 - Posts and pages
    10.2 - Asides
    10.3 - Comments
11.0 - Infinite scroll
12.0 - Media
    12.1 - Captions
    12.2 - Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - 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, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}
html {
  font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
  overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
  -webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}
*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
  -webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
  -moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
  box-sizing:         border-box;
}
body {
  background: #fff;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}
ol, ul {
  list-style: none;
}
table { /* tables still need 'cellspacing="0"' in the markup */
  border-collapse: separate;
  border-spacing: 0;
}
caption, th, td {
  font-weight: normal;
  text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
}
blockquote, q {
  quotes: "" "";
}
a:focus {
  outline: thin dotted;
}
a:hover,
a:active {
  outline: 0;
}
a img {
  border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #404040;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
  clear: both;
  line-height: 2.5;
}
p {
  margin-bottom: 1.5em;
}
b, strong {
  font-weight: bold;
}
dfn, cite, em, i {
  font-style: italic;
}
blockquote {
  margin: 0 1.5em;
}
address {
  margin: 0 0 1.5em;
}
pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}
code, kbd, tt, var {
  font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
mark, ins {
  background: #fff9c0;
  text-decoration: none;
}
sup,
sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  bottom: 1ex;
}
sub {
  top: .5ex;
}
small {
  font-size: 75%;
}
big {
  font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}
ul, ol {
  margin: 0 0 1.5em 3em;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}
dt {
  font-weight: bold;
}
dd {
  margin: 0 1.5em 1.5em;
}
img {
  height: auto; /* Make sure images are scaled correctly. */
  max-width: 100%; /* Adhere to container width. */
}
figure {
  margin: 0;
}
table {
  margin: 0 0 1.5em;
  width: 100%;
}
th {
  font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
  font-size: 100%; /* Corrects font size not being inherited in all browsers */
  margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
  vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid #ccc;
  border-color: #ccc #ccc #bbb #ccc;
  border-radius: 3px;
  background: #e6e6e6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, .8);
  cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
  -webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  padding: .6em 1em .4em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa #bbb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  border-color: #aaa #bbb #bbb #bbb;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}
input[type="checkbox"],
input[type="radio"] {
  padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"] {
  -webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
  -webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
  -moz-box-sizing:    content-box;
  box-sizing:         content-box;
}
input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
  border: 0;
  padding: 0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
  padding: 3px;
}
textarea {
  overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
  padding-left: 3px;
  vertical-align: top; /* Improves readability and alignment in all browsers */
  width: 98%;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
  color: royalblue;
}
a:visited {
  color: purple;
}
a:hover,
a:focus,
a:active {
  color: midnightblue;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.main-navigation li {
  float: left;
  position: relative;
}
.main-navigation a {
  display: block;
  text-decoration: none;
}
.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  display: none;
  float: left;
  left: 0;
  position: absolute;
  top: 1.5em;
  z-index: 99999;
}
.main-navigation ul ul ul {
  left: 100%;
  top: 0;
}
.main-navigation ul ul a {
  width: 200px;
}
.main-navigation ul ul li {
}
.main-navigation li:hover > a {
}
.main-navigation ul ul :hover > a {
}
.main-navigation ul ul a:hover {
}
.main-navigation ul li:hover > ul {
  display: block;
}
.main-navigation .current_page_item a,
.main-navigation .current-menu-item a {
}
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}
.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: '';
  display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
  max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
  display: none;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
}
.hentry {
  margin: 0 0 1.5em;
}
.updated {
  display: none;
}
.single .byline,
.group-blog .byline {
  display: inline;
}
.page-content,
.entry-summary {
  margin: 1.5em 0 0;
}
.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}
.bypostauthor {
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
  display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin: 0 auto;
}
.wp-caption-text {
  text-align: center;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
.gallery-caption {}

/*--------------------------------------------------------------
Custom
--------------------------------------------------------------*/
/* Content styles */
div#page {
  background-color: white;
  height: 100%;

  max-width: 1200px;
  margin: auto;
}

div#page article header.entry-header {
  margin-bottom: 0px;
}

main {
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}

.home main {
  width: 90%;
}

@media screen and (max-width: 900px) {
  main {
    width: 90%;
  }
}

/* Body */
body {
  width: 100%;
  font-weight: normal;
  background-size: cover;
  background-position: fixed;
  overflow: hidden;

  animation-delay: 0.1s;
  animation-name: fontfix;
  animation-duration: 0.1s;
  animation-iteration-count: 1;
  animation-timing-function: linear;

  -webkit-animation-delay: 0.1s;
  -webkit-animation-name: fontfix;
  -webkit-animation-duration: 0.1s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
}

@-webkit-keyframes fontfix {
  from { opacity: 1; }
  to   { opacity: 1; }
}

#bar {
  background: url(../img/galaxy.jpg);
  height: 7px;
  background-size: cover;
  background-position: left 60%;
  position: fixed;
  top: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1000;
}

#bar .reflection {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 100%;
  margin-top: -20px;
  box-shadow: 0px 0px 32px 8px rgba(255, 255, 255, 0.76);
  -moz-box-shadow: 0px 0px 32px 8px rgba(255, 255, 255, 0.76);
  -webkit-box-shadow: 0px 0px 32px 8px rgba(255, 255, 255, 0.76);

  animation: move 1.3s infinite;
  animation-timing-function: linear;

  -webkit-animation: move 1.3s infinite;
  -webkit-animation-timing-function: linear;
}

body a {
  color: black;
  text-decoration: underline;
}

body a:visited {
  color: black;
}

/* Menu */
nav#site-navigation {
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 20px;
  margin-bottom: 100px;
}

nav #logo-container {
  float: left;
  font-weight: bold;
  font-size: 20px;
  margin-right: 20px;
}

nav #logo {
  float: left;
  background-image: url('../img/logo.svg');
  background-size: cover;
  display: inline-block;
  width: 140px;
  height: 42px;
  margin-right: 30px;
  margin-top: 6px;
  text-indent: -5000px;
}

li.menu-item {
  margin-top: 20px; /* To align with logo */
  margin-right: 25px;
  font-size: 12px;
}

li.menu-item a {
  color: rgb(54, 54, 54);
}

li.menu-item a:hover {
  color: rgb(0, 0, 0);
  font-weight: normal;
}

/* Page stuff */
div#page h1 {
  font-weight: normal;
  font-size: 20px;
  color: rgb(119, 119, 119)
}

div#page h2,
div#page .h2-like {
  font-size: 18px;
  font-weight: normal;
  color: black;
}

div#page h2.excerpt-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

div#page h2.excerpt-title a {
  text-decoration: none;
  color: black;
}

div#page h3 {
  font-size: 14px;
  font-weight: normal;
  color: #766F79;
}

div#page .posted-on,
div#page .byline {
  font-size: 14px;
  font-weight: lighter;
  color: rgb(158, 158, 158)
}

div#page .byline .twitter {
  text-decoration: none;
}

div#page .entry-title {
  text-align: center;
  font-size: 40px;
  font-weight: lighter;
  line-height: 1.2;
}

div#page .entry-title a {
  text-decoration: none;
}

div#page .entry-title {
  font-weight: lighter;
  line-height: 1.2;
}

div#page .entry-subtitle {
  text-align: center;
  font-size: 12px;
  font-weight: lighter;
  background: #fff;
  color: rgb(119, 119, 119)
}

/* Blog stuff */
body a.more-link {
  color: #3BA9D0 !important;
  text-decoration: none;
}

body .post-separator {
  margin-left: auto;
  margin-right:auto;
  margin-top: 20px;
  margin-bottom: 20px;

  width: 20%;
 
  border: solid rgba(155, 155, 155, .2275);
  border-width: 1px 0 0 0;
}

body .post-separator:last-child {
  border: none;
}

.single .entry-meta {
  margin-bottom: 50px;
}

/* Special classes */
.larger {
  font-size: 16px;
}

.centered {
  text-align: center;
}

.none {
  display: none;
}

div.empty {
  margin-top: 100px;
  margin-bottom: 100px;
}

/* Home stuff */
.home #entries {
}

.home #examples {
  overflow: auto;
  margin-top: 80px;
}

.home .example-entry {
  height: 170px;
}

.home .information-entry {
  height: 220px;
}

.home #information {
  overflow: auto;
  margin-top: 30px;
}

.home .repel {
  overflow: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}

.home #examples .left {
  margin-left: 100px;
}

.home .left {
  width: 40%;
  float: left;
}

.home .right {
  width: 40%;
  float: right;
}

.home .example-column {
  width: 30%;
}

.home #screen-fill {
  font-family: 'untitled-font-2';
  text-align: center;
  font-size: 40px;
  height: 1000px;
  vertical-align: top;
  padding-top: 60px;
}

.home #screen-fill .arrow {
  display: none;
}

.home #screen-fill .arrow > a {
  text-decoration: none;
}

@media screen and (min-height: 600px) {
  .home #screen-fill .arrow {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -20px;
  }
}

.window {
  border: 1px solid rgb(195, 195, 195);
  width: 400px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(50, 50, 50, 0.11);
  -moz-box-shadow: 0px 2px 3px 0px rgba(50, 50, 50, 0.11);
  box-shadow: 0px 2px 3px 0px rgba(50, 50, 50, 0.11);
  text-align: left;
  vertical-align: top;
  margin: 0 20px;
  animation: zoom 500ms;
  -webkit-animation: zoom 500ms;
}

.window {
  height: 245px;
  display: inline-block;
}

.window .header {
  padding: 0 9px;
  line-height: 30px;
  vertical-align: top;
  padding: 2px 9px 0;
}

.window .header .title {
  font: 11px "Myriad Pro", "Arial";
}

.editor .title {
  text-align: center;
  display: inline-block;
  width: 280px;
  color: #766F79;
  vertical-align: middle;
}

.editor .body {
  padding: 18px 10px;
}

.editor .code {
  font: 11px Monaco, Courier New;
  color: #ccc;
}

.editor .code .code {
  color: #777;
}

.editor .code li {
  padding: 3px 0;
}

.editor .code .fn {
  color: #4A90E2;
}

.editor .code .v {
  color: #7ED321;
}

.editor .code .io {
  color: #000;
}

.window .bullet {
  height: 11px;
  width: 11px;
  display: inline-block;
  background: #ccc;
  border-radius: 100%;
  vertical-align: middle;
  margin-right: 5px;
}

.window .bullet-red {
  background: #DF7065;
}

.window .bullet-yellow {
  background: #E6BB46;
}

.window .bullet-green {
  background: #5BCC8B;
}

.browser .header {
  background: #E8E8E8;
  border-radius: 4px 4px 0 0;
  padding-bottom: 3px;
}

.browser .header .title {
  background: #fff;
  display: inline-block;
  width: 320px;
  border-radius: 4px;
  padding: 6px 14px 4px;
  margin-left: 10px;
  vertical-align: middle;
}

.browser .header .title .scheme {
  color: #7ED321;
}

.browser .body {
  padding: 16px;
  font: 11px "Lucida Grande", "Open Sans";
}

.browser .tweets {
  margin: 0;
  height: 150px;
  overflow-y: auto;
}

.browser .tweets li {
  height: 27px;
  line-height: 27px;
  width: 350px;
  vertical-align: middle;
  color: #4B434D;
  list-style-type: none;
  margin-bottom: 14px;
}

.browser .tweets img {
  width: 27px;
  height: 27px;
  border-radius: 100%;
  float: left;
  margin-right: 10px;
}

.browser .tweets .tweet {
  max-width: 280px;
  overflow: hidden;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser .tweets .time {
  color: #9B9B9B;
  float: right;
}

.browser .tweets .new {
  animation: drop 500ms;
  -webkit-animation: drop 500ms;
}

@-webkit-keyframes zoom {
  0%   { opacity: 0; -webkit-transform: scale(1.15); }
  100% { opacity: 1; -webkit-transform: scale(1); }
}

@-webkit-keyframes drop {
  0%   { opacity: 0; -webkit-transform: translateY(-20px); }
  100% { opacity: 1; -webkit-transform: translateY(0px); }
}

@keyframes zoom {
  0%   { opacity: 0; transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes drop {
  0%   { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0px); }
}

.twitter-follow-button {
  position: relative;
  top: 6px;
  display: none;
}

iframe.twitter-follow-button {
  display: inline-block;
}

@media screen and (max-width: 950px) {
  .home .information-entry {
    height: 200px !important;
  }

  .home .example-entry {
    height: 200px !important;
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 1100px) {
  .home .window {
    width: 90% !important;
    height: 10%;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home .window.editor {
    margin-bottom: 20px;
  }

  .home .window.browser {
    margin-bottom: 60px !important;
  }

  .home .window .title {
    width: 70%;
    font-size: 22% !important;
  }

  .home .browser li img {
    margin-right: 2px;
  }

  .home .browser li .tweet {
    padding-left: 29px;
    width: 75%;
  }

  .home .browser .li a {
    width: 15%;
  }

  .home #screen-fill {
    height: auto !important;
    padding-top: 0;
  }

  .home #screen-fill .arrow {
    display: none;
  }

  header {
    margin-bottom: 120px;
  }
}

@media screen and (max-width: 600px) {
  .home .window .title {
    width: 60%;
  }
}

@media screen and (max-width: 900px) {
  div#page .entry-title {
    font-size: 24px !important;
  }

  .home .entry-subtitle span.row {
    display: block;
  }

  .home header.fading {
    opacity: 1.0 !important;
  }

  .home .left {
    float: none;
  }

  .home .right {
    float: none;
  }

  .home .information-column {
    width: 100%;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .home .example-column {
    width: 100%;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }


  .home #entries {
    margin-left: 0%;
    margin-top: 150px;
  }

  .home .example-entry {
    height: 190px;
    text-align: center;
  }

  .home .information-entry {
    height: 170px;
    text-align: center;
  }

  .home .icon:before {
    margin-left: -30px !important;
    margin-top: -70px !important;
    font-size: 50px !important;
  }

  .site-footer {
    text-align: center;
    font-size: 8px;
    margin-bottom: 100px !important;
  }

  .site-footer .footer-left {
    float: none !important;
  }

  .site-footer .footer-right {
    float: none !important;
  }

  .footer-right #a8c-image {
    float: none !important;
    display: inline-block !important;
    vertical-align: middle !important;
  }

  .site-info span {
    display: block;
  }
  
  .main-navigation {
    float: none !important;
    display: inline-block;
    text-align: center;
  }

  .main-navigation #logo-container {
    float: none !important;
    display: block;
  }

  .main-navigation #logo {
    float: none !important;
    
    position: absolute;
    top: 80px;
    left: 0px;
    right: 0px;

    margin-left: auto;
    margin-right: auto;
  }

  .main-navigation ul.menu {
    width: 100%;
    float: none !important;
    position: absolute;
    display: inline-block;
    text-align: center;
    left: 0px;
    right: 0px;
    top: 10px;

    margin-left: auto;
    margin-right: auto;
  }

  .main-navigation ul.menu li {
    float: none !important;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
  }
}

/* Home icons */
.home .icon:before {
  font-family: 'untitled-font-2';
  position: absolute;
  margin-left: -100px;
  font-size: 70px;
}

.home .analytics:before {
  content: "y";
}

.home .binary:before {
  content: "G";
}

.home .chat:before {
  content: "M";
}

.home .collab:before {
  content: "J";
}

/* Footer stuff */
.site-footer {
  font-size: 11px;
  margin: 20px;
  margin-bottom: 40px;
  height: 20px;
}

.site-footer .footer-left {
  float: left;
  line-height: 20px;
}

.site-footer .footer-right {
  float: right;
  line-height: 20px;
}

.site-footer .footer-right a {
  text-decoration: none;
}

.footer-right #a8c-image {
  float: right;
  margin-left: 5px;
  width: 20px;
  height: 20px;
  background-size: cover;
  background-image: url('http://cdn.socket.io/website/imgs/a8c.png');
}

#menu-item-43 {
  display: none;
}

#gh-watchers {
  display: none;
}

@media screen and (min-width: 900px) {
  #menu-item-43, #gh-watchers {
    display: block;
    float: right;
    padding: 0;
    margin: 15px 0 0 0;
  }

  #gh-watchers {
    margin-top: 18px;
  }

  #menu-item-43 a {
    display: inline-block;
    background: rgb(219, 122, 238);
    border: 0;
    padding: 4px 12px;
    vertical-align: middle;
    border-radius: 12px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
  }
}

/* Blog stuff */
body #primary {
  max-width: 800px;
  margin: auto;
}

body.home #primary {
  max-width: 1200px;
}

/* Codes */
pre, form {
  padding: 0.3em;
  padding-left: 0.8em;
  border-left: 0.5em solid #D8D8D8;
  background: white;
}

@media screen and (max-width: 900px) {
  form {
    width: 80%;
    margin-left: 20%;
  }
}

code {
  font-size: 11px;
  padding: 3px 5px;
  background: #eee;
  color: #666;
}

pre code {
  padding: 0 0;
  background: none;
}

pre code, form input {
  color: rgb(119, 119, 119);
  font-weight: lighter;
  font-size: 12px;
}

form input {
  background: none !important;
  border: none !important;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance:    none;
  appearance:         none;
}

/* Sidebar sub-theme */
.sidebar {
  float: left;
  position: fixed;
  width: 170px;

  font-size: 12px;
}

.sidebar li {
  list-style-type: none;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: right;
}

.sidebar li#parent {
  color: #4A4A4A;
  font-weight: bold;
}

.sidebar li.anchor {
  border-color: rgba(155, 155, 155, .2275);
  border-style: solid;
  border-width: 1px 0 0 0; 
}

.sidebar li a {
  text-decoration: none;
  color: #9B9B9B;
}

#primary.with-sidebar main {
  width: 90%;
}

@media screen and (max-width: 1100px) {
  .sidebar {
    float: none !important;
    position: static;
    width: 50%;
    margin: auto;
    padding-bottom: 50px;
    margin-top: -50px;

    font-size: 13px;
  }
  
  .sidebar ul {
    text-align: center;
    margin: auto;
  }

  .sidebar li {
    text-align: center;
  }

  #primary.with-sidebar main {
    float: none !important;
    width: 90%;
  }
}

.sidebar-right {
  right: 0;
  margin-right: 10px;
  margin-top: -40px;
  width: auto;
}

.sidebar-right .navigation-class {
  font-weight: bold;
}

.sidebar-right .class-details.hidden {
  height: 0;
  overflow: hidden;
}

.sidebar-right li {
  list-style-type: none;
  margin-top: 5px;
  margin-bottom: 5px;
  text-align: left;
}

@media screen and (max-width: 1280px) {
  .sidebar-right {
    display: none;
  }
}

/* Mailchimp overwrites and things it may cause */
.mc4wp-alert {
  font-size: 12px;
  padding-left: 3px;
  color: red;
}

.mc4wp-form p {
  margin-bottom: 0;
}

/* Getting started */
#extra-left,
#extra-right {
  width: 40%;
  font-size: 13px;
}

/* Anchor stuff */
a h1, a h2, a h3, a h4, a h5, a h6 {
  padding-top: 40px;
  margin-top: -40px;
  display: inline-block;
}

.deep-link {
  position: absolute;
  margin-left: -18px;
  text-decoration: none;
  color: #999;
  opacity: .05;
  padding-right: 10px;
}

.deeplink:hover,
h1:hover .deep-link,
h2:hover .deep-link,
h3:hover .deep-link,
h4:hover .deep-link,
h5:hover .deep-link,
h6:hover .deep-link {
  opacity: 1;
}

@font-face {
  font-family: "untitled-font-2";
  src:url("../fonts/untitled-font-2.eot");
  src:url("../fonts/untitled-font-2.eot?#iefix") format("embedded-opentype"),
    url("../fonts/untitled-font-2.woff") format("woff"),
    url("../fonts/untitled-font-2.ttf") format("truetype"),
    url("../fonts/untitled-font-2.svg#untitled-font-2") format("svg");
  font-weight: normal;
  font-style: normal;

}

[data-icon]:before {
  font-family: "untitled-font-2" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "untitled-font-2" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-budicon:before {
  content: "a";
}
.icon-budicon-1:before {
  content: "b";
}
.icon-budicon-2:before {
  content: "c";
}
.icon-budicon-3:before {
  content: "d";
}
.icon-budicon-4:before {
  content: "e";
}
.icon-budicon-5:before {
  content: "f";
}
.icon-budicon-7:before {
  content: "h";
}
.icon-budicon-8:before {
  content: "i";
}
.icon-budicon-9:before {
  content: "j";
}
.icon-budicon-10:before {
  content: "k";
}
.icon-budicon-11:before {
  content: "l";
}
.icon-budicon-12:before {
  content: "m";
}
.icon-budicon-13:before {
  content: "n";
}
.icon-budicon-14:before {
  content: "o";
}
.icon-budicon-15:before {
  content: "p";
}
.icon-budicon-16:before {
  content: "q";
}
.icon-budicon-17:before {
  content: "r";
}
.icon-budicon-18:before {
  content: "s";
}
.icon-budicon-19:before {
  content: "t";
}
.icon-budicon-20:before {
  content: "u";
}
.icon-budicon-21:before {
  content: "v";
}
.icon-budicon-22:before {
  content: "w";
}
.icon-budicon-23:before {
  content: "x";
}
.icon-budicon-24:before {
  content: "y";
}
.icon-budicon-25:before {
  content: "z";
}
.icon-budicon-26:before {
  content: "A";
}
.icon-budicon-27:before {
  content: "B";
}
.icon-budicon-6:before {
  content: "g";
}
.icon-budicon-28:before {
  content: "C";
}
.icon-budicon-29:before {
  content: "D";
}
.icon-budicon-30:before {
  content: "E";
}
.icon-budicon-31:before {
  content: "F";
}
.icon-budicon-32:before {
  content: "G";
}
.icon-budicon-33:before {
  content: "H";
}
.icon-budicon-34:before {
  content: "I";
}
.icon-budicon-35:before {
  content: "J";
}
.icon-budicon-36:before {
  content: "K";
}
.icon-budicon-37:before {
  content: "L";
}
.icon-budicon-38:before {
  content: "M";
}
.icon-budicon-39:before {
  content: "N";
}
.icon-budicon-40:before {
  content: "O";
}
.icon-budicon-41:before {
  content: "P";
}
.icon-budicon-42:before {
  content: "Q";
}

#content {
  min-height: 530px;
}

#slack-count {
  background: rgb(172, 135, 223);
  color: #fff;
  font-weight: bold;
  font-size: 11px;
  border-radius: 10px;
  padding: 1px 6px 2px;
  margin-left: 5px;
  min-width: 20px;
  text-align: center;
  display: inline-block;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.hinge{-webkit-animation-duration:2s;animation-duration:2s}@-webkit-keyframes bounce{0%,100%,20%,53%,80%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-transition-timing-function:cubic-bezier(0.755,.050,.855,.060);transition-timing-function:cubic-bezier(0.755,.050,.855,.060);-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}70%{-webkit-transition-timing-function:cubic-bezier(0.755,.050,.855,.060);transition-timing-function:cubic-bezier(0.755,.050,.855,.060);-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes bounce{0%,100%,20%,53%,80%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-transition-timing-function:cubic-bezier(0.755,.050,.855,.060);transition-timing-function:cubic-bezier(0.755,.050,.855,.060);-webkit-transform:translate3d(0,-20px,0);-ms-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}70%{-webkit-transition-timing-function:cubic-bezier(0.755,.050,.855,.060);transition-timing-function:cubic-bezier(0.755,.050,.855,.060);-webkit-transform:translate3d(0,-10px,0);-ms-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,-4px,0);-ms-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;-ms-transform-origin:center bottom;transform-origin:center bottom}
