Skip to content
Snippets Groups Projects
notes.scss 550 B
Newer Older
$white: #fff;
chris's avatar
chris committed
$light-blue: #e4f0ff;
.notes-container {
  background-color: $white;
  bottom: 0;
  counter-reset: note-footer;
  height: 135px;
chris's avatar
chris committed
  left: 15%;
  max-height: 700px;
  min-height: 10px;
  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, #000 30%, rgba(255, 255, 255, 0) 0%);
    background-position: top;
    background-size: 10px 1px;
    background-repeat: repeat-x;
    cursor: row-resize;
chris's avatar
chris committed
    height: 3px;
    position: absolute;
chris's avatar
chris committed
    top: -14px;
    width: 100%;
   }
  }