/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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; }

/* HTML5 display-role reset for older browsers */
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 {
  content: '';
  content: none; }

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

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

* {
  box-sizing: border-box; }

body {
  padding: 0;
  margin: 0;
  color: #212121;
  background: white; }

body,
input,
button,
textarea,
select {
  font-family: Inconsolata, Monaco, "Andale Mono", "Lucida Console", monospace;
  font-size: 12px;
  font-weight: 400; }

a {
  color: #8582f8;
  cursor: pointer; }

p {
  line-height: 1.4em; }

code {
  line-height: 1.6em; }

button {
  display: block;
  padding: 4px 8px;
  text-align: left;
  color: #8582f8;
  background: transparent;
  border: none;
  outline: none; }
  button:hover {
    background-color: #e3e3fd;
    cursor: pointer; }
  button.on {
    color: white;
    background-color: #8582f8;
    outline: none; }

.content {
  display: flex;
  min-height: 100%; }

.demo-and-props {
  width: 70%; }

.code {
  width: 30%;
  padding: 16px;
  color: #eee;
  background-color: #4f5362; }

.demo {
  height: 360px;
  background: white;
  border-bottom: 1px solid #e0e0e0; }

.container {
  display: flex;
  height: 360px; }

.item {
  width: 60px;
  padding: 8px 12px;
  color: white;
  background: #8582f8;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  text-align: center;
  font-size: 16px;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }

.options {
  position: relative;
  padding: 16px 8px; }
  .options::after {
    clear: both;
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 16px;
    width: calc(100% - 32px);
    border-bottom: 1px solid #e0e0e0; }
  .options:last-of-type::after {
    display: none; }

.props {
  display: flex; }

.heading {
  padding-left: 8px;
  margin-bottom: 8px;
  font-size: 16px; }

.prop {
  margin-right: 16px; }

.name {
  padding: 4px 8px;
  font-weight: bold; }

.value {
  width: 100%; }
