gitlabhq/gitlab-ci

View on GitHub
app/assets/stylesheets/generic/typography.scss

Summary

Maintainability
Test Coverage
h6 {
  color: #888;
  text-transform: uppercase;
}

pre {
  font-family: $monospace_font;

  &.dark {
    background: #333;
    color: #f5f5f5;
  }
}

/**
 * Links
 *
 */
a {
  outline: none;
  color: $link_color;
  &:hover {
    text-decoration: none;
    color: $primary_color;
  }

  &:focus {
    text-decoration: underline;
  }

  &.dark {
    color: $style_color;
  }

  &.lined {
    text-decoration: underline;
    &:hover { text-decoration: underline; }
  }

  &.gray {
    color: gray;
  }

  &.supp_diff_link {
    text-align: center;
    padding: 20px 0;
    background: #f1f1f1;
    width: 100%;
    float: left;
  }

  &.neib  {
    margin-right: 15px;
  }
}

a:focus {
  outline: none;
}

.monospace {
  font-family: $monospace_font;
}