contents of zip

This commit is contained in:
transatoshi
2024-12-20 18:08:44 -08:00
parent aeb2b99db7
commit f03ed73d2b
261 changed files with 208197 additions and 0 deletions

30
fonts/open_sans/open_sans.css Executable file
View File

@@ -0,0 +1,30 @@
<?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: "Open Sans";
src: url("../.<?= escapeString(getResource("./fonts/open_sans/open_sans-1.10.woff2")); ?>") format("woff2"), url("../.<?= escapeString(getResource("./fonts/open_sans/open_sans-1.10.woff")); ?>") format("woff");
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Open Sans";
src: url("../.<?= escapeString(getResource("./fonts/open_sans/open_sans_semibold-1.10.woff2")); ?>") format("woff2"), url("../.<?= escapeString(getResource("./fonts/open_sans/open_sans_semibold-1.10.woff")); ?>") format("woff");
font-weight: bold;
font-style: normal;
font-display: swap;
}