profile.scss 1022 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
.account-page {
  fieldset {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}

.btn-build-token {
  float: left;
  padding: 6px 20px;
  margin-right: 12px;
}

14 15 16 17
.profile-avatar-form-option {
  hr {
    margin: 10px 0;
  }
18
}
19

20 21 22 23 24 25
.oauth-buttons {
  .btn-group {
    margin-right: 10px;
  }

  .btn {
26 27 28
    line-height: 40px;
    height: 42px;
    padding: 0px 12px;
29 30 31 32 33 34 35

    img {
      width: 32px;
      height: 32px;
    }
  }
}
36 37 38 39 40 41 42 43 44 45 46 47 48 49

// Profile > Account > Two Factor Authentication
.two-factor-new {
  .manual-instructions {
    h3 {
      margin-top: 0;
    }

    // Slightly increase the size of the details so they're easier to read
    dl {
      font-size: 1.1em;
    }
  }
}
50 51 52 53 54 55

.calendar-hint {
  margin-top: -12px;
  float: right;
  font-size: 12px;
}
D
Dmitriy Zaporozhets 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77

.profile-link-holder {
  display: inline;

  &:after {
    content: "\00B7";
    padding: 0px 6px;
    font-weight: bold;
  }

  &:last-child {
    &:after {
      content: "";
      padding: 0;
    }
  }

  a {
    color: $blue-dark;
    text-decoration: none;
  }
}