@font-face {
  font-family: 'Rubik';
  src: url('../../fonts/Rubik-Light.woff');
  font-weight: 400;
  font-style: 'normal';
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
::selection {
  background: rgba(114, 182, 255, 0.25);
}
::-moz-selection {
  background: rgba(114, 182, 255, 0.25);
}
html {
  height: 100%;
  font-size: 16px;
  font-family: 'Rubik', sans-serif;
}
body {
  position: relative;
  width: 100%;
  height: 100%;
  display: table;
  line-height: 1.4;
  padding: 8px;
}
body:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#a872ff, #72B6FF);
}
.main {
  position: relative;
  display: table-row;
  height: 100%;
}
.main .background {
  height: 100%;
  background: #fff;
  border-radius: 1em 1em 0 0;
}
.main .content {
  padding-top: 2em;
}
.preview-header {
  text-align: center;
  color: #fff;
  font-size: 3rem;
  margin: 1em 0;
}
.preview-header h1 {
  line-height: 1;
  margin-bottom: .3em;
}
.preview-header p {
  font-size: .7em;
  line-height: 1.2;
}
.preview-header span {
  font-size: inherit;
  color: #b9dbff;
}
.content {
  display: block;
  padding: 0 2rem 0;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.content h2 {
  text-align: center;
  font-size: 2rem;
  color: #a872ff;
  margin-bottom: .3em;
}
.content a:not(.button) {
  display: inline-block;
  line-height: 1.2;
  font-size: inherit;
  text-decoration: none;
  color: #8d94ff;
  border-bottom: 1px solid #8d94ff;
  transition: border-bottom-color 0.35s;
}
.content a:not(.button):hover {
  border-bottom-color: transparent;
}
.content.footer {
  padding-bottom: 1em;
}
.styling {
  list-style: none;
  text-align: center;
  margin-bottom: 1em;
}
.styling li {
  display: inline-block;
  margin-right: 1em;
  vertical-align: bottom;
}
.styling label {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  line-height: 16px;
  color: #a872ff;
  font-weight: bold;
}
.styling label:before,
.styling label:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
}
.styling label:before {
  background: linear-gradient(#72B6FF, #a872ff);
  border-radius: 50%;
  width: 16px;
  height: 16px;
}
.styling label:after {
  background: #fff;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin-top: 2px;
  margin-left: 2px;
  transition: background 0.35s;
}
.styling input {
  position: absolute;
  left: -9999px;
}
.styling input[type=radio]:checked + label:after {
  background: radial-gradient(circle closest-side, transparent 4px, transparent 1px, #fff 6px);
}
.text {
  margin-bottom: 1em;
}
.text.warning {
  font-weight: bold;
  font-size: 1.5rem;
  color: #72B6FF;
}
.text.info {
  padding: .6em 1em;
  text-align: center;
  font-size: 1.2rem;
  color: #a872ff;
  background: rgba(168, 114, 255, 0.05);
  border: 1px dashed rgba(168, 114, 255, 0.1);
  border-radius: .3em;
}
.text span {
  font-size: inherit;
  color: #8ec5ff;
}
.button-outer {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1em;
}
.button {
  position: relative;
  z-index: 1;
  font-weight: normal;
  display: inline-block;
  padding: .6em 1em;
  text-decoration: none;
  color: #fff;
  border-radius: .3em;
  margin: .3em 1em;
}
.button:after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(#72B6FF, #a872ff);
  opacity: 1;
  transition: opacity 0.35s;
}
.button:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 1px;
  top: 1px;
  right: 1px;
  bottom: 1px;
  border-radius: inherit;
  background: #72B6FF;
}
.button:hover:after {
  opacity: 0;
}
.code,
.code_html {
  background: rgba(114, 182, 255, 0.1);
  border: 1px dashed rgba(114, 182, 255, 0.2);
  padding: .6em 1em;
  border-radius: 1em;
  margin-bottom: 1em;
  white-space: pre-wrap;
}
.code {
  color: #a872ff;
}
.code .func {
  color: #72B6FF;
}
.code .gly,
.code .S {
  color: #444;
}
.table {
  background: linear-gradient(#72B6FF, #a872ff);
  border-radius: .3em;
  overflow: hidden;
  margin-bottom: 2em;
}
.table .type {
  color: #a872ff;
}
.table .default {
  color: #7d9fc4;
}
.table .default span {
  font-weight: bold;
  color: #72B6FF;
}
.table table {
  table-layout: fixed;
  width: 100%;
  border-spacing: 1px;
}
.table table th,
.table table td {
  padding: .6em 1em;
  background: #fff;
}
.table table td {
  vertical-align: top;
}
.table table td:first-child {
  font-weight: bold;
}
.table table tr:first-child th:first-child,
.table table tr:first-child td:first-child {
  width: 30%;
  border-radius: .3em 0 0 0;
}
.table table tr:first-child th:last-child,
.table table tr:first-child td:last-child {
  border-radius: 0 .3em 0 0;
}
.table table tr:last-child th:first-child,
.table table tr:last-child td:first-child {
  border-radius: 0 0 0 .3em;
}
.table table tr:last-child th:last-child,
.table table tr:last-child td:last-child {
  border-radius: 0 0 .3em 0;
}
.code_html {
  color: #888;
}
.code_html span {
  color: #a872ff;
}
.code_html span.class {
  color: #72B6FF;
}
.code_html span.comment {
  color: #ccc;
}
.code_html span.comment:before {
  content: '\003C!-- ';
}
.code_html span.comment:after {
  content: ' --\003E';
}
.github-fork-ribbon {
  position: fixed !important;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 12px;
  }
  .preview-header {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  html {
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 16px;
  }
}
