debian-mirror-gitlab/app/assets/stylesheets/fontawesome_custom.scss

44 lines
682 B
SCSS
Raw Normal View History

2021-02-22 17:27:13 +05:30
// 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;
2020-10-24 23:57:45 +05:30
}
2021-02-22 17:27:13 +05:30
.fa-2x {
font-size: 2em;
2020-10-24 23:57:45 +05:30
}
2021-02-22 17:27:13 +05:30
.fa-exclamation-triangle::before {
content: '';
2020-10-24 23:57:45 +05:30
}
2021-02-22 17:27:13 +05:30
.fa-exclamation-circle::before {
content: '';
2020-10-24 23:57:45 +05:30
}
2021-02-22 17:27:13 +05:30
.fa-lightbulb-o::before {
content: '💡';
}
2020-10-24 23:57:45 +05:30
2021-02-22 17:27:13 +05:30
.fa-thumb-tack::before {
content: '📌';
}
2021-01-29 00:20:46 +05:30
2021-02-22 17:27:13 +05:30
.fa-fire::before {
content: '🔥';
}
2021-01-29 00:20:46 +05:30
2021-02-22 17:27:13 +05:30
.fa-square-o::before {
content: '\2610';
}
2020-10-24 23:57:45 +05:30
2021-02-22 17:27:13 +05:30
.fa-check-square-o::before {
content: '\2611';
}
2020-10-24 23:57:45 +05:30
}