CMSgov/dpc-app

View on GitHub
dpc-admin/app/assets/stylesheets/components/_cards.scss

Summary

Maintainability
Test Coverage
.card {
  background-color: $color-white;
  box-shadow: 0 0 0 rbga(0,0,0, .5);
  padding: $spacer-3 $spacer-4;
}

.card--border-top {
  border-top: 4px solid $color-success-light;
}

.card--border-top--red {
  border-top: 4px solid $color-error-dark;
}

.card--shadow {
  box-shadow: 0px 0px 50px rgba(0,0,0,0.5);
}

// Icons

.icon {
  max-width: 17px;
  max-height: 15px;
  display: inline;
  fill: currentColor;
}

// Card modules on portal dashboard
.module-container {
  background-color: $color-white;
  border: 1px solid $color-gray-light;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  margin: $spacer-2 0;

  @media (min-width: $width-sm) {
    flex-direction: row;
  }
}

.module-container__button {
  padding: $spacer-1 $spacer-2;
}

.module-container__id {
  background-color: $color-gray-dark;
  color: $color-white;
  padding: $spacer-1 $spacer-2;

  @media (min-width: $width-sm) {
    background-color: $color-gray-lightest;
    color: $color-gray;
    padding: $spacer-2;
  }
}

.module-container__primary {
  display: flex;
  flex: 1;
  flex-direction: column;

  @media (min-width: $width-sm) {
    flex-direction: row;
    justify-content: space-between;
  }
}

.module-container__secondary {
  @media (min-width: $width-sm) {
    border-left: 1px solid $color-gray-light;
    flex: .61803398875;
  }
}

.module-container__heading {
  font-size: $h4-font-size;
  font-weight: $font-bold;
  margin: 0;
  padding: $spacer-2 $spacer-2 $spacer-1;

  a,
  a:visited {
    color: $color-primary;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }
}

.module-container__primary__footer {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding: $spacer-2;
}

.module-container__notes-summary {
  .icon {
    position: relative;
    top: 2px;
  }
}

.module-container__content-wrap {
  padding: $spacer-2;
}

.module-container__indicator {
  padding: $spacer-2;
}

.module-container__indicator--warn {
  background-color: $color-warn-alt-light;
  color: $color-warn-alt;
  font-weight: $font-bold;
}

.module-container__indicator--success {
  background-color: $color-success-alt-lightest;
  color: $color-success;
  font-weight: $font-bold;
}

.module-list-container {
  border: 1px solid $color-gray-lighter;
  list-style: none;
  max-width: 850px;
  max-height: 500px;
  overflow: auto;
  padding: 0;

  ul {
    padding: 0;
  }
}