BigW Consortium Gitlab

wells.scss 896 Bytes
.info-well {
  background: $background-color;
  color: $gl-gray;
  border: 1px solid $border-color;
  border-radius: $border-radius-default;

  .well-segment {
    padding: $gl-padding;

    &:not(:last-of-type) {
      border-bottom: 1px solid $well-inner-border;
    }

    &.branch-info {
      .monospace,
      .commit-info {
        margin-left: 4px;
      }
    }
  }

  .icon-container {
    display: inline-block;
    margin-right: 8px;

    svg {
      position: relative;
      top: 2px;
      height: 16px;
      width: 16px;
    }

    &.commit-icon {
      svg {
        path {
          fill: $gl-text-color;
        }
      }
    }
  }

  .label.label-gray {
    background-color: $well-expand-item;
  }
}

.light-well {
  background-color: $background-color;
  padding: 15px;
}

.well-centered {
  h1 {
    font-weight: normal;
    text-align: center;
    font-size: 48px;
  }
}