mirror of
https://github.com/transatoshi-mw/grin-web-wallet.git
synced 2025-10-06 15:52:47 +00:00
31 lines
967 B
CSS
Executable File
31 lines
967 B
CSS
Executable File
<?php
|
|
|
|
// Included files
|
|
require_once __DIR__ . "/../../backend/common.php";
|
|
require_once __DIR__ . "/../../backend/resources.php";
|
|
|
|
|
|
// Main function
|
|
|
|
// Set content type header
|
|
header("Content-Type: text/css; charset=" . mb_internal_encoding());
|
|
|
|
?>@charset "UTF-8";
|
|
|
|
|
|
@font-face {
|
|
font-family: "Font Awesome";
|
|
src: url("../.<?= escapeString(getResource("./fonts/font_awesome/font_awesome-5.15.4.woff2")); ?>") format("woff2"), url("../.<?= escapeString(getResource("./fonts/font_awesome/font_awesome-5.15.4.woff")); ?>") format("woff");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: block;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Font Awesome";
|
|
src: url("../.<?= escapeString(getResource("./fonts/font_awesome/font_awesome_solid-5.15.4.woff2")); ?>") format("woff2"), url("../.<?= escapeString(getResource("./fonts/font_awesome/font_awesome_solid-5.15.4.woff")); ?>") format("woff");
|
|
font-weight: bold;
|
|
font-style: normal;
|
|
font-display: block;
|
|
}
|