Skip to content
Snippets Groups Projects
sideNav.scss 1.87 KiB
Newer Older
chris's avatar
chris committed
$black: #000;
$heading: #979797;
$option: #4a4a4a;
$toolbar-bg: #fafafa;
chris's avatar
chris committed
  height: 60%;
chris's avatar
chris committed
  left: 3%;
  margin-top: 197px;
  overflow-x: hidden;
  position: fixed;
  top: 0;
  user-select: none;
chris's avatar
chris committed
  width: 9%;
  z-index: 100;

  .sc-toolbar {
chris's avatar
chris committed
    background-color: $toolbar-bg !important;
chris's avatar
chris committed
    width: 100%;

    .sc-tool-group.sm-target-text.sm-layout-horizontal {
      width: 100%;
    }
chris's avatar
chris committed
    ul {
     margin: 0;
     padding: 0;
chris's avatar
chris committed
    li.se-option  {
        padding: 3px;
      }
    }

    .sc-switch-text-type {
      bottom: 0;
chris's avatar
chris committed
      font-size: 14px;
      margin: 0;
      padding: 0;
chris's avatar
chris committed
      width: 100%;
chris's avatar
chris committed

chris's avatar
chris committed
    .sm-target-default {
chris's avatar
chris committed
      width: 71%;
chris's avatar
chris committed
//
chris's avatar
chris committed
      &:before {
        border-bottom: 1px solid $heading;
        color: $heading;
        content: 'List Types';
        display: block;
        font: 'FiraSans-Bold';
        font-family: 'FiraSans-Bold';
        font-size: 15px;
        font-weight: 900;
        letter-spacing: .6px;
        margin-top: -5px;
        text-align: left;
      }
    }

chris's avatar
chris committed
  }
chris's avatar
chris committed

chris's avatar
chris committed
  .sc-toolbar ul li.heading {
    border-bottom: 1px solid $heading;
    color: $heading;
    font-family: 'FiraSans-Bold';
    font-size: 15px;
    letter-spacing: .6px;
    text-align: left;
chris's avatar
chris committed
    width: 71%;
chris's avatar
chris committed
  }

  .sc-toolbar ul li.se-option {
    color: $option;
    cursor: pointer;
    font-size: 14px;
    font-weight: normal;
  }

  .sc-toolbar ul li.se-option.active {
    color: $black;
    font-size: 14px;
    font-weight: 900;
chris's avatar
chris committed

  .sc-insert-list-tool {
      left: -14px;
      .fa {
        color: $option;
        cursor: pointer;
        font: inherit;
        font-size: 14px;
        font-weight: normal;
      }
  }

  .fa-list-ul::before {
    content: 'Unordered list';
  }

  .fa-list-ol::before {
    content: 'Ordered list';
  }

  .fa-quora::before {
    content: 'Q & A';
  }

  .fa-bars::before {
    content: 'Unstyled list';
  }