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

fontawesome_custom.scss « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b9bb3edaaab5c4f3168c92d7052b94658503777b (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Custom Font Awesome styles that render emojis in asciidoc
.md {
  .fa {
    display: inline-block;
    font-style: normal;
    font-size: 14px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .fa-2x {
    font-size: 2em;
  }

  .fa-exclamation-triangle::before {
    content: '⚠';
  }

  .fa-exclamation-circle::before {
    content: '❗';
  }

  .fa-lightbulb-o::before {
    content: '💡';
  }

  .fa-thumb-tack::before {
    content: '📌';
  }

  .fa-fire::before {
    content: '🔥';
  }

  .fa-square-o::before {
    content: '\2610';
  }

  .fa-check-square-o::before {
    content: '\2611';
  }
}