@import '~@/styles/scss/_vars';

  //Regular
  @font-face {
    font-family: 'rapidoc';
    src: url($font_path + 'rapidoc-regular.woff2')format('woff2') ;
    font-weight: 400;
    font-style: normal;
  }
  //Bold
  @font-face {
    font-family: 'rapidoc';
    src: url($font_path + 'rapidoc-semi-bold.woff2')format('woff2') ;
    font-weight: 500;
    font-style: normal;
  }
  
  //Monospaced font
  //Regular
  @font-face {
    font-family: 'roboto-mono';
    src: url($font_path + 'roboto-mono-regular.woff2')format('woff2') ;
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'roboto-mono';
    src: url($font_path + 'roboto-mono-bold.woff2')format('woff2') ;
    font-weight: 500;
    font-style: normal;
  }

body, html{
  width:100%;
  height:100%;
  margin:0;
  padding:0;
  &::-webkit-scrollbar {width: 8px; height:8px}
  &::-webkit-scrollbar-track {background-color: transparent;}
  &::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.4);
    border-radius:3px;
  }
}