Welcome to mirror list, hosted at ThFree Co, Russian Federation.

asciidoctor.scss « framework « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 62493c3283312c17c8e0f1913b0b3ffcb8d53e44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
.admonitionblock td.icon {
  width: 1%;

  [class^="fa icon-"] {
    @extend .fa-2x;
  }

  .icon-note {
    @extend .fa-thumb-tack;
  }

  .icon-tip {
    @extend .fa-lightbulb-o;
  }

  .icon-warning {
    @extend .fa-exclamation-triangle;
  }

  .icon-caution {
    @extend .fa-fire;
  }

  .icon-important {
    @extend .fa-exclamation-circle;
  }
}