88 lines
1.5 KiB
CSS
88 lines
1.5 KiB
CSS
@font-face {
|
|
font-family: 'Font Awesome 6 Free';
|
|
src: url('/css/webfonts/fa-solid-900.ttf') format("truetype");
|
|
/* Path to your downloaded font */
|
|
font-weight: 900;
|
|
font-style: normal;
|
|
}
|
|
|
|
.fa-solid {
|
|
font-family: 'Font Awesome 6 Free';
|
|
/* Make sure this matches the font-family defined above */
|
|
font-weight: 900;
|
|
/* Solid icons */
|
|
display: inline-block;
|
|
text-rendering: auto;
|
|
font-style: normal;
|
|
}
|
|
|
|
/* Font Awesome icon classes with their respective Unicode values */
|
|
.fa-copy::before {
|
|
content: '\f0c5';
|
|
/* Unicode for copy icon */
|
|
}
|
|
|
|
.fa-delete-left::before {
|
|
content: '\f55a';
|
|
/* Unicode for delete-left icon */
|
|
}
|
|
|
|
.fa-right-from-bracket::before {
|
|
content: '\f090';
|
|
/* Unicode for right-from-bracket icon */
|
|
}
|
|
|
|
.fa-floppy-disk::before {
|
|
content: '\f0c7';
|
|
/* Unicode for floppy-disk icon */
|
|
}
|
|
|
|
.fa-upload::before {
|
|
content: '\f093';
|
|
/* Unicode for upload icon */
|
|
}
|
|
|
|
.fa-user:before {
|
|
content: "\f007";
|
|
}
|
|
|
|
.fa-gear::before {
|
|
content: "\f013";
|
|
}
|
|
|
|
.fa-list-check::before {
|
|
content: "\f0ae";
|
|
}
|
|
|
|
.fa-xmark::before {
|
|
content: "\f00d";
|
|
}
|
|
|
|
.fa-download::before {
|
|
content: "\f019";
|
|
}
|
|
|
|
.fa-close::before {
|
|
content: "\f00d";
|
|
}
|
|
|
|
|
|
.fa-thumbs-up::before {
|
|
content: "\f164";
|
|
}
|
|
|
|
.fa-thumbs-down::before {
|
|
content: "\f165";
|
|
}
|
|
|
|
.fa-circle-info::before {
|
|
content: "\f05a";
|
|
}
|
|
|
|
.fa-circle-xmark::before {
|
|
content: "\f057";
|
|
}
|
|
|
|
.fa-circle-check::before {
|
|
content: "\f058";
|
|
} |