Skip to content
Snippets Groups Projects
notes.scss 588 B
Newer Older
$white: #fff;
chris's avatar
chris committed
$light-blue: #e4f0ff;
chris's avatar
chris committed
$black: #000;
$bg-rgba: rgba(255, 255, 255, 0);
.notes-container {
  background-color: $white;
  bottom: 0;
  counter-reset: note-footer;
  height: 135px;
chris's avatar
chris committed
  left: 15%;
  max-height: 700px;
chris's avatar
chris committed
  min-height: 135px;
  position: fixed;
chris's avatar
chris committed
  width: 80%;
  z-index: 0;
chris's avatar
chris committed

  .resize-area {
chris's avatar
chris committed
    background-image: linear-gradient(to right, $black 30%, $bg-rgba  0%);
chris's avatar
chris committed
    background-position: top;
    background-repeat: repeat-x;
chris's avatar
chris committed
    background-size: 10px 1px;
    cursor: row-resize;
chris's avatar
chris committed
    height: 6px;
    position: absolute;
chris's avatar
chris committed
    top: -14px;
    width: 100%;
   }
  }