@charset "UTF-8";
*, :after, :before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, html {
  margin: 0;
  width: auto;
  height: 100%;
}

html {
  background-color: #eee;
  color: #222;
  font-family: Source Sans Pro, sans-serif;
  text-rendering: optimizeLegibility;
}

h1 {
  margin: 0;
  text-align: center;
  padding: 5px;
}

nav {
  position: relative;
  width: 100%;
  background-color: #f3f3f3;
  margin: 0;
}

@media screen and (min-width: 900px) {
  nav {
    overflow-y: scroll;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 17%;
  }
}

nav h1 {
  font-size: 1.1em;
  color: #bbb;
  text-transform: uppercase;
  font-weight: normal;
  text-align: center;
  cursor: default;
}

nav hr {
  margin: 5px 20px;
  background-color: #ddd;
  color: #ddd;
  border: none;
  border-bottom: 1px solid #ddd;
}

nav ul {
  margin: 0;
  padding: 0;
}

nav ul li a {
  display: block;
  padding: 7px 20px;
  text-decoration: none;
  color: #888;
  font-weight: bold;
}

nav ul li a:hover {
  background-color: #f8f8f8;
  color: #222;
}

.content {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 900px) {
  .content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 83%;
    overflow-y: scroll;
  }
}

.content h1 {
  font-size: 2em;
  font-family: monospace;
  background-color: #000;
  color: #eee;
  margin-bottom: 30px;
}

.content h2 {
  margin: 0 30px;
  font-size: 1.4em;
  color: #bbb;
  text-transform: uppercase;
  font-weight: normal;
  cursor: default;
}

.content .theme {
  margin: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.content .theme:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.content .theme .theme-title {
  font-size: 1.6em;
  margin-bottom: 7px;
}

.content .theme .biglink {
  font-size: 1.2em;
  background-color: #f3f3f3;
  font-weight: bold;
  padding: 5px 10px;
  display: inline-block;
  text-decoration: none;
  border: 1px solid #ddd;
  color: #3c3c3c;
  margin-bottom: 3px;
}

.content .theme .biglink:hover {
  border: 1px solid #888;
  color: #222;
}

.content .theme .biglink:before {
  content: "➡ ";
}

.content .theme ul {
  margin: 0;
}
