profile.scss 1.49 KB
Newer Older
1
.update-notifications {
2
  .radio-inline {
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
3
    margin-right: 9%;
4 5
  }
}
6 7 8 9 10 11 12 13 14 15 16 17 18

.account-page {
  fieldset {
    margin-bottom: 15px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 15px;

    &:last-child {
      border: none;
    }

    legend {
      border: none;
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
19
      margin-bottom: 10px;
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
    }
  }
}

.oauth_select_holder {
  img {
    padding: 2px;
    margin-right: 10px;
  }
  .active {
    img {
      border: 1px solid #4BD;
      background: $hover;
      @include border-radius(5px);
    }
  }
}

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

44 45 46 47
.profile-avatar-form-option {
  hr {
    margin: 10px 0;
  }
48
}
49 50 51 52 53

.user-show-username {
  font-weight: 200;
  color: #666;
}
54 55 56 57 58 59 60 61 62 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 99 100 101 102 103 104 105 106 107

/*
 * Appearance settings
 *
 */
.themes_opts {
  label {
    margin-right: 20px;
    text-align: center;

    .prev {
      @extend .thumbnail;
      height: 30px;
      width: 175px;
      margin-bottom: 10px;

      &.classic {
        background: #31363e;
      }

      &.default {
        background: #f1f1f1;
      }

      &.modern {
        background: #345;
      }

      &.gray {
        background: #373737;
      }

      &.violet {
        background: #547;
      }
    }
  }
}

.code_highlight_opts {
  margin-top: 10px;

  label {
    margin-right: 20px;
    text-align: center;

    .prev {
      @extend .thumbnail;
      height: 151px;
      width: 220px;
      margin-bottom: 10px;
    }
  }
}
108 109 110 111 112 113 114 115 116

.profile-groups-avatars {
  margin: 0 5px 10px 0;

  img {
    width: 50px;
    height: 50px;
  }
}