sccs - Vertical text style.

by Rodwyn Moreno

HTML

<div class="vertical-text-container">
      <div class="vertical-text">
        <span class="title">VIGILADo</span>
        <span class="subtitle">superintendencia finaciera de Colombia</span>
      </div>
    </div>

SCSS

.vertical-text-container {
  float: left;
  height: 285px;
  margin-right: 30px;
  min-width: 34px;
  position: relative;
  text-transform: uppercase;
  white-space: nowrap;
}

.vertical-text {
  height: 32px;
  left: 0;
  line-height: 32px;
  padding: 0 1em;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transform: rotate(-90deg) translateX(-100%);


  .subtitle {
    display: inline-block;
    font-size: 10px;
    height: 36px;
    line-height: 15px;
    margin-left: 22px;
    text-align: center;
    white-space: normal;
    width: 150px;
  }

  .title {
    border: 2px solid #fff;
    border-left: none;
    border-right: none;
    font-family: rockwell;
    line-height: 36px;
    padding: 6px 0;
    vertical-align: top;
  }
}