@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');
$bg-color: #333;
$bl-color: #22BAD9;


body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  padding: 25px 50px;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1;
  font-weight: normal;
}

:not(pre) > code {
  padding: 2px;
  font-size: 90%;
  color: $bl-color;
  border-radius: 2px;
  background-color: #ddd;
}

.demo {
  a {
    color: inherit;
    &:hover {
      background-color: $bl-color;
      color: white;
      text-decoration: none;
    }
  }
  .demo__header {
    margin-top: 5%;
    margin-bottom: 10%;
    // text-align: center;
    font-size: 3em;
    cursor: pointer;
    color: $bl-color;

    h1, p {
      margin: 0;
      line-height: 1;
    }
  }
  
  .demo__section {
    margin-bottom: 48px;
  }

  .demo__section-header {
    border-bottom: 1px solid #ddd;
    margin-bottom: 24px;
    padding-bottom: 3px;
    h2 {
      font-size: 1.5em;
      font-weight: normal;
      line-height: 1;
    }
  }
  
  .demo__table-header {
    margin: 12px 0 6px;
  }

  .demo__item {
    border: 1px solid #ddd;
  }

  .demo__example {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
  }

  .table {
    width: 100%;
    border-collapse: collapse;

    .table__head {
      background-color: #ddd;
      border: 1px solid #ddd;
    }

    td {
      border: 1px solid #ddd;
      padding: 6px 12px;
    }
  }
}
