mirror of
https://github.com/transatoshi-mw/grin-web-wallet.git
synced 2025-10-06 15:52:47 +00:00
23 lines
564 B
CSS
Executable File
23 lines
564 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: "GRIN";
|
|
src: url("../.<?= escapeString(getResource("./fonts/grin/grin.woff2")); ?>") format("woff2"), url("../.<?= escapeString(getResource("./fonts/grin/grin.woff")); ?>") format("woff");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: block;
|
|
}
|