/**
 * Guitar String Background Styles
 * Styles for the interactive guitar string canvas on posts list page
 */

#guitar-string-background-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 35%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

@media screen and (max-width: 960px) {
  #guitar-string-background-canvas {
    width: 100%;
  }
}

/* Make entire playground area non-selectable on posts list, tags, and categories pages */
body#posts:not(.inner-post-page) .block-left {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
