members.scss 1.47 KB
Newer Older
Phil Hughes's avatar
Phil Hughes committed
1 2 3 4 5
.project-members-title {
  padding-bottom: 10px;
  border-bottom: 1px solid $border-color;
}

Phil Hughes's avatar
Phil Hughes committed
6
.member {
7
  .list-item-name {
Phil Hughes's avatar
Phil Hughes committed
8
    @media (min-width: $screen-sm-min) {
9 10 11
      float: left;
      width: 50%;
    }
12 13 14 15

    strong {
      font-weight: 600;
    }
16 17
  }

Phil Hughes's avatar
Phil Hughes committed
18
  .controls {
Phil Hughes's avatar
Phil Hughes committed
19
    @media (min-width: $screen-sm-min) {
Phil Hughes's avatar
Phil Hughes committed
20
      display: -webkit-flex;
Phil Hughes's avatar
Phil Hughes committed
21 22 23 24
      display: flex;
      width: 400px;
      max-width: 50%;
    }
Phil Hughes's avatar
Phil Hughes committed
25 26 27
  }

  .form-horizontal {
Phil Hughes's avatar
Phil Hughes committed
28 29 30
    margin-top: 5px;

    @media (min-width: $screen-sm-min) {
Phil Hughes's avatar
Phil Hughes committed
31
      display: -webkit-flex;
Phil Hughes's avatar
Phil Hughes committed
32
      display: flex;
Phil Hughes's avatar
Phil Hughes committed
33
      width: 100%;
Phil Hughes's avatar
Phil Hughes committed
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
      margin-top: 3px;
    }
  }

  .btn-remove {
    width: 100%;

    @media (min-width: $screen-sm-min) {
      width: auto;
    }
  }
}

.member-form-control {
  @media (max-width: $screen-xs-max) {
    padding: 5px 0;
    margin-left: 0;
    margin-right: 0;
Phil Hughes's avatar
Phil Hughes committed
52 53
  }

Phil Hughes's avatar
Phil Hughes committed
54
  @media (min-width: $screen-sm-min) {
Phil Hughes's avatar
Phil Hughes committed
55 56 57
    width: 50%;
  }
}
Phil Hughes's avatar
Phil Hughes committed
58 59 60 61 62

.member-access-text {
  margin-left: auto;
  line-height: 43px;
}
Phil Hughes's avatar
Phil Hughes committed
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98

.member.existing-title {
  @media (min-width: $screen-sm-min) {
    float: left;
  }
}

.member-search-form {
  position: relative;

  @media (min-width: $screen-sm-min) {
    float: right;
  }

  .form-control {
    width: 100%;
    padding-right: 35px;

    @media (min-width: $screen-sm-min) {
      width: 350px;
    }
  }
}

.member-search-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 35px;
  padding-left: 10px;
  padding-right: 10px;
  color: $gray-darkest;
  background: transparent;
  border: 0;
  outline: 0;
}