blocks.scss 1.8 KB
Newer Older
1
.light-well {
D
Dmitriy Zaporozhets 已提交
2
  background-color: #f8fafc;
3 4
  padding: 15px;
}
D
Dmitriy Zaporozhets 已提交
5 6 7

.centered-light-block {
  text-align: center;
D
Dmitriy Zaporozhets 已提交
8
  color: $gl-gray;
D
Dmitriy Zaporozhets 已提交
9 10 11 12 13 14
  margin: 20px;
}

.nothing-here-block {
  text-align: center;
  padding: 20px;
D
Dmitriy Zaporozhets 已提交
15
  color: $gl-gray;
D
Dmitriy Zaporozhets 已提交
16 17 18 19
  font-weight: normal;
  font-size: 16px;
  line-height: 36px;
}
20

21
.content-block,
22
.gray-content-block {
D
Dmitriy Zaporozhets 已提交
23
  margin: -$gl-padding;
24
  background-color: $background-color;
D
Dmitriy Zaporozhets 已提交
25
  padding: $gl-padding;
26
  margin-bottom: 0px;
27 28
  border-top: 1px solid $border-color;
  border-bottom: 1px solid $border-color;
D
Dmitriy Zaporozhets 已提交
29 30
  color: $gl-gray;

31 32 33 34
  &.oneline-block {
    line-height: 42px;
  }

35 36 37 38
  &.white {
    background-color: white;
  }

39 40 41 42
  &.top-block {
    border-top: none;
  }

43 44 45 46 47
  &.middle-block {
    margin-top: 0;
    margin-bottom: 0;
  }

D
Dmitriy Zaporozhets 已提交
48 49 50 51 52
  &.clear-block {
    margin-bottom: $gl-padding - 1px;
    padding-bottom: $gl-padding;
  }

53 54 55 56 57
  &.second-block {
    margin-top: -1px;
    margin-bottom: 0;
  }

D
Dmitriy Zaporozhets 已提交
58 59
  &.footer-block {
    margin-top: 0;
60
    border-bottom: none;
D
Dmitriy Zaporozhets 已提交
61 62 63
    margin-bottom: -$gl-padding;
  }

D
Dmitriy Zaporozhets 已提交
64 65 66
  .title {
    color: $gl-text-color;
  }
67 68

  .oneline {
69
    line-height: 42px;
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

.cover-block {
  text-align: center;
  background: #f7f8fa;
  margin: -$gl-padding;
  margin-bottom: 0;
  padding: 44px $gl-padding;
  border-bottom: 1px solid $border-color;
  position: relative;

  .avatar-holder {
    margin-bottom: 16px;

    .avatar, .identicon {
      margin: 0 auto;
      float: none;
    }

    .identicon {
      @include border-radius(50%);
    }
  }

  .cover-title {
    color: $gl-header-color;
    margin: 0;
    font-size: 23px;
    font-weight: normal;
    margin: 16px 0 5px 0;
    color: #4c4e54;
    font-size: 23px;
    line-height: 1.1;
  }

  .cover-desc {
107
    padding: 0 $gl-padding 3px;
108 109 110 111 112 113 114 115 116
    color: $gl-text-color;
  }

  .cover-controls {
    position: absolute;
    top: 10px;
    right: 10px;
  }
}