blob: f820c52a03e5e3bad1345e3993c4fb18368201f4 (
plain) (
blame)
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
|
@font-face {
font-family: "bootstrap-icons";
src: url("/fonts/bootstrap-icons.woff") format("woff"), url("/fonts/bootstrap-icons.woff2") format("woff2");
}
[class^="bi-"]::before,
[class*=" bi-"]::before {
display: inline-block;
font-family: "bootstrap-icons" !important;
font-style: normal;
font-weight: normal !important;
font-variant: normal;
text-transform: none;
line-height: 1;
vertical-align: text-bottom;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.bi-bag-plus::before { content: "\f16e"; }
.bi-trash2::before { content: "\f56d"; }
.bi-bag-plus::before { content: "\f16e"; }
.bi-pencil-square::before { content: "\f478"; }
.bi-three-dots-vertical::before { content: "\f561"; }
.bi-eye::before { content: "\f30b"; }
.bi-file-earmark-person::before { content: "\f342"; }
.bi-list::before { content: "\f435"; }
.bi-cloud-upload::before { content: "\f292"; }
|