:root {
  --baseFontSize: 18px;
  --mediumFontSize: 16px;
  --smallFontSize: 12px;
  --fontFamilySans: Roboto, sans-serif,
    "Segoe UI Emoji", "Segoe UI Symbol";
  --fontFamilyMono: "Roboto Mono", monospace;
  --textColor: rgba(14, 30, 37, 0.87);
  --borderColor: #e9ebeb;
  --accentColor: #00ad9f;
}

body {
  font-family: var(--fontFamilySans);
  font-size: var(--baseFontSize);
  line-height: 1.5;
  max-width: 40em;
  padding: 1em;
  margin: auto;
  background: white;
  color: var(--textColor);
  counter-reset: example;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: #9ab;
   color: white;
   text-align: center;
   font-weight: 300;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 1.5em;
  margin-bottom: 0;
  font-weight: 500;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.375em;
  margin-top: 3em;
}

h3 {
  font-size: 1.125em;
}

p {
  margin: 1em 0 1.5em;
}

a {
  color: inherit;
  text-decoration: underline;
}

article {
  counter-increment: example;
}

article h2::before {
  content: counter(example) ". ";
}

ul {
  padding-left: 1.25em;
  list-style: disc outside;
}

ol {
  list-style: none;
  padding-left: 0;
  counter-reset: step;
}

ol li::before {
  counter-increment: step;
  content: counter(step) ". ";
  float: left;
  margin-right: 0.3em;
}

input {
  box-sizing: border-box;
  width: 100%;
  margin-top: 0.5em;
  padding: 0 0.5em;
  height: 2.5em;
  line-height: 2.5;
  border: 2px solid var(--borderColor);
  border-radius: 4px;
  font-weight: bold;
}

button,
.button {
  box-sizing: border-box;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.08);
  border: 0;
  background: var(--accentColor);
  color: white;
  border-radius: 4px;
  font-size: 1em;
  font-weight: 500;
  height: 2.5em;
  line-height: 2.5;
  padding: 0 1em;
  min-width: 10em;
  text-align: center;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  transform: translateY(0);
  transition: all .15s ease;
}
.smallbutton {
  font-size: .75em;
  font-weight: 400;
  height: 2em;
  line-height: 2;
}

button:focus,
button:hover {
  box-shadow: 0 7px 14px rgba(0,0,0,.1), 0 3px 6px rgba(0,0,0,.08);
  transform: translateY(-1px);
}

form {
  max-width: 20em;
}

pre,
code {
/*  font-family: var(--fontFamilyMono); */
  font-size: 14px;
  background-color: #fafafa;
  border-radius: 4px;
}

code {
  padding: 0.2em 0.4em;
}

pre {
  padding: 1em;
  overflow: auto;
}

pre code {
  font-size: 100%;
  background: transparent;
  padding: 0;
  border: 0;
}

code .token {
  padding: 0;
  margin: 0;
}

.language-php .token.operator,
code .token.atrule,
code .token.keyword {
  color: #6772e5;
}

code.language-markup .token.namespace,
code .token.attr-name,
code .token.selector,
code .token.tag,
code .token.tag * {
  color: #0075d6;
}

code .token.attr-name {
  font-style: italic;
}

code .token.comment {
  color: #91a2b0;
}

code.language-url,
code .token.function,
code .token.url {
  color: #3297d3;
}

.language-ruby .token.constant + .token.punctuation,
.language-ruby .token.constant + .token.punctuation + .token.symbol,
code .token.boolean,
code .token.builtin,
code .token.class-name,
code .token.constant,
code .token.namespace {
  color: #2191ef;
}

code .token.number {
  color: #fa755a;
}

.language-bash .token.function,
code .token.curl,
code .token.option,
code .token.variable {
  color: teal;
}

.language-bash .token.option,
code.language-css .property,
code .token.parameter,
code .token.symbol {
  color: #d14;
}

code.language-html .token.attr-value > .punctuation:not(:first-child),
code.language-markup .token.attr-value > .punctuation:not(:first-child),
code .token.attr-value,
code .token.macro,
code .token.string,
code .token.value {
  color: #159570;
}

code .token.macro .keyword {
  color: #064508;
}

#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #285;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 19px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 3.5s;
  animation: fadein 0.5s, fadeout 0.5s 3.5s;
}

#slackthing {
  visibility: hidden;
  min-width: 70px;
  margin-left: -50px;
  background-color: #fff;
  color: #fff;
  padding: 6px;
  position: fixed;
  z-index: 1;
  left: 10%;
  bottom: 30px;
}

#slackthing.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.0s;
  animation: fadein 0.5s, fadeout 0.5s 2.0s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

.rotate-center {
	-webkit-animation: rotate-center 0.6s ease-in-out both;
	        animation: rotate-center 0.6s ease-in-out both;
}

/* ----------------------------------------------
 * Generated by Animista on 2019-4-30 7:30:7
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation rotate-center
 * ----------------------------------------
 */
@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
