@import './var.less';

:root {
  --glm-index-anchor-z-index: @index-anchor-z-index;
  --glm-index-anchor-padding: @index-anchor-padding;
  --glm-index-anchor-text-color: @index-anchor-text-color;
  --glm-index-anchor-font-weight: @index-anchor-font-weight;
  --glm-index-anchor-font-size: @index-anchor-font-size;
  --glm-index-anchor-line-height: @index-anchor-line-height;
  --glm-index-anchor-background-color: @index-anchor-background-color;
  --glm-index-anchor-sticky-text-color: @index-anchor-sticky-text-color;
  --glm-index-anchor-sticky-background-color: @index-anchor-sticky-background-color;
}

.glm-index-anchor {
  z-index: var(--glm-index-anchor-z-index);
  box-sizing: border-box;
  padding: var(--glm-index-anchor-padding);
  color: var(--glm-index-anchor-text-color);
  font-weight: var(--glm-index-anchor-font-weight);
  font-size: var(--glm-index-anchor-font-size);
  line-height: var(--glm-index-anchor-line-height);
  background: var(--glm-index-anchor-background-color);

  &--sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    color: var(--glm-index-anchor-sticky-text-color);
    background: var(--glm-index-anchor-sticky-background-color);
  }
}
