snippets.scss 685 字节
Newer Older
D
Dmitriy Zaporozhets 已提交
1 2 3
.snippet-form-holder .file-holder .file-title {
  padding: 2px;
}
D
Dmitriy Zaporozhets 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27


.snippet-row {
  .snippet-title {
    font-size: 15px;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 2px;

    .monospace {
      font-weight: normal;
    }
  }

  .snippet-info {
    color: #888;
    font-size: 13px;
    line-height: 24px;

    a {
      color: #888;
    }
  }
}
28

D
Douwe Maan 已提交
29
.snippet-holder {
30
  margin-bottom: -$gl-padding;
31

D
Douwe Maan 已提交
32 33
  .file-holder {
    border-top: 0;
34 35 36 37 38 39
  }
}

.snippet-box {
  @include border-radius(2px);

40 41 42
  display: block;
  float: left;
  padding: 0 $gl-padding;
43 44 45
  font-weight: normal;
  margin-right: 10px;
  font-size: $gl-font-size;
H
Han Loong Liauw 已提交
46
  border: 1px solid;
47
  line-height: 40px;
48
}