<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* the container for the entire editor */
.gradient-editor-container {
  background-color: #666;
}

/* the area that contains the gradient */
.gradient-editor-gradient {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* the color stop draggable area. Should not by styled */
.gradient-editor-color-stop {
}

/* the color inside a color stop */
.gradient-editor-color {
  border: 1px solid hsla(0, 0%, 30%, 0.8);
  border-top: 0;
}
.gradient-editor-color::before {
  border-color: transparent transparent hsla(0,0%, 100%, 0.8) transparent;
  border-style: solid;
  border-width: 6px;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  left: 1px;
  content: '';
}

/* the area the contains the color stops */
.gradient-editor-colors {
  background: gray;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* the instruction area */
.gradient-editor-instructions {
  font-size: x-small;
  color: #aaa;
}

</pre></body></html>