JSFiddle - React, Tailwind, and code Playground

by Christian Unigarro

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<div class="container">
  <div class="row">
    <div class="col-xs-6 recuadro">
      <p class="textcolor">fewge</p>
    </div>
    <div class="col-xs-6 recuadro">
      <p>egr</p>
    </div>
  </div>
</div>

SCSS

.colorbonito {
  color: purple;
}

$big-font: 40px;

.recuadro {
  border: thin solid #eee;
  @extend .colorbonito;
  .textcolor {
    font-size: $big-font;
    color: red;
    cursor: pointer;
    background-color: #fff;
    &:hover {
      color: blue;
      font: {
        size: 20px;
        weight: bold;
      }
    }
  }
}

@media and screen (max-width: 300px)