2024-10-10
This commit is contained in:
7
web/template/mdui/README.md
Normal file
7
web/template/mdui/README.md
Normal file
@@ -0,0 +1,7 @@
|
||||
# HUSTOJ Theme MDUI
|
||||
|
||||
## Author
|
||||
|
||||
**HUSTOJ Theme MDUI** © [Baoshuo](https://github.com/renbaoshuo), Released under the [GPL-2.0](https://github.com/zhblue/hustoj/blob/master/trunk/web/gpl-2.0.txt) License.<br>
|
||||
|
||||
> [Personal Website](https://baoshuo.ren) · [Blog](https://blog.baoshuo.ren) · GitHub [@renbaoshuo](https://github.com/renbaoshuo) · Twitter [@renbaoshuo](https://twitter.com/renbaoshuo)
|
||||
0
web/template/mdui/_includes/footer.php
Normal file
0
web/template/mdui/_includes/footer.php
Normal file
124
web/template/mdui/_includes/head.php
Normal file
124
web/template/mdui/_includes/head.php
Normal file
@@ -0,0 +1,124 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Ren Baoshuo">
|
||||
<meta name="generator" content="HUSTOJ">
|
||||
<link rel="icon" href="/favicon.ico">
|
||||
|
||||
<!-- Title -->
|
||||
<title><?php echo ($page_title?$page_title.' - ':'').$OJ_NAME; ?></title>
|
||||
|
||||
<!-- MDUI -->
|
||||
<?php if($MDUI_OFFLINE) { ?>
|
||||
<link rel="stylesheet" href="<?php echo $OJ_CDN_URL.$path_fix."template/$OJ_TEMPLATE"; ?>/assets/css/mdui.min.css">
|
||||
<script src="<?php echo $OJ_CDN_URL.$path_fix."template/$OJ_TEMPLATE"; ?>/assets/js/mdui.min.js"></script>
|
||||
<?php } else { ?>
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/mdui@1.0.1/dist/css/mdui.min.css">
|
||||
<script src="https://cdn.jsdelivr.net/npm/mdui@1.0.1/dist/js/mdui.min.js"></script>
|
||||
<?php } ?>
|
||||
<script>
|
||||
var $ = mdui.$;
|
||||
</script>
|
||||
<style>
|
||||
@media (min-width: 840px) {
|
||||
.mdui-container {
|
||||
padding-top: 80px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 480px) {
|
||||
.mdui-container {
|
||||
padding-top: 60px;
|
||||
}
|
||||
}
|
||||
|
||||
.mdui-container {
|
||||
padding-top: 40px;
|
||||
padding-bottom: 60px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.mdui-select-menu {
|
||||
min-height: 300px !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
<!-- Fonts -->
|
||||
<?php if(isset($MDUI_OFFLINE) && $MDUI_OFFLINE) { ?>
|
||||
<link rel="stylesheet" href="<?php echo $OJ_CDN_URL.$path_fix."template/$OJ_TEMPLATE"; ?>/assets/css/fonts.css">
|
||||
<?php } else { ?>
|
||||
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital@0;1&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap"
|
||||
as="style" onload="this.onload=null, this.rel='stylesheet'">
|
||||
<noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital@0;1&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap"></noscript>
|
||||
<?php } ?>
|
||||
|
||||
<!-- Styles -->
|
||||
<style>
|
||||
code {
|
||||
font-family: 'Roboto Mono', 'Consolas', monospace !important;
|
||||
}
|
||||
body {
|
||||
font-family: 'Open Sans', 'Roboto', 'Noto', 'Helvetica', 'Arial', sans-serif !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script>
|
||||
console.log('\n %c HUSTOJ %c https://github.com/zhblue/hustoj %c\n', 'color: #fadfa3; background: #000000; padding:5px 0;', 'background: #fadfa3; padding:5px 0;', '');
|
||||
console.log('\n %c Theme Author %c Baoshuo (@renbaoshuo) %c https://baoshuo.ren %c\n', 'color: #fadfa3; background: #000000; padding:5px 0;', 'background: #fadfa3; padding:5px 0;', 'background: #ffbf33; padding:5px 0;', '');
|
||||
console.log('\n %c MDUI v1.0.1 %c https://mdui.org %c\n', 'color: #ffffff; background: #030307; padding:5px 0;', 'background: #673ab7; padding:5px 0;', '');
|
||||
console.log('\n GitHub Homepage: https://github.com/zhblue/hustoj \n Document: https://zhblue.github.io/hustoj \n Bug report URL: https://github.com/zhblue/hustoj/issues \n \n%c ★ Please give us a star on GitHub! ★ %c \n', 'color: red;', '')
|
||||
</script>
|
||||
|
||||
<?php
|
||||
if(stripos($_SERVER['REQUEST_URI'],"template")!==false) exit();
|
||||
|
||||
$url = basename($_SERVER['REQUEST_URI']);
|
||||
$dir = basename(getcwd());
|
||||
|
||||
if($dir == "discuss3") $path_fix="../";
|
||||
else $path_fix="";
|
||||
|
||||
if(isset($OJ_NEED_LOGIN) && $OJ_NEED_LOGIN
|
||||
&& ($url!='loginpage.php' && $url!='lostpassword.php'
|
||||
&& $url!='lostpassword2.php' && $url!='registerpage.php')
|
||||
&& !isset($_SESSION[$OJ_NAME.'_'.'user_id'])) {
|
||||
header("location:".$path_fix."loginpage.php");
|
||||
exit();
|
||||
}
|
||||
|
||||
$_SESSION[$OJ_NAME.'_'.'profile_csrf'] = rand();
|
||||
|
||||
if($OJ_ONLINE){
|
||||
require_once($path_fix.'include/online.php');
|
||||
$on = new online();
|
||||
}
|
||||
?>
|
||||
|
||||
<!-- KaTeX -->
|
||||
<script> var katex_options = { delimiters: [ {left: '$$', right: '$$', display: true}, {left: '$', right: '$', display: false}, {left: '\\(', right: '\\)', display: false}, {left: '\\[', right: '\\]', display: true} ] }; </script>
|
||||
<?php if(isset($MDUI_OFFLINE) && $MDUI_OFFLINE) { ?>
|
||||
<link rel="stylesheet" href="<?php echo $OJ_CDN_URL.$path_fix."template/$OJ_TEMPLATE"; ?>/assets/css/katex.min.css"
|
||||
as="style" onload="this.onload=null, this.rel='stylesheet'">
|
||||
<script defer src="<?php echo $OJ_CDN_URL.$path_fix."template/$OJ_TEMPLATE"; ?>/assets/js/katex.min.js"></script>
|
||||
<script defer src="<?php echo $OJ_CDN_URL.$path_fix."template/$OJ_TEMPLATE"; ?>/assets/js/auto-render.min.js"
|
||||
onload="renderMathInElement(document.body, katex_options);"></script>
|
||||
<?php } else { ?>
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.css"
|
||||
as="style" onload="this.onload=null, this.rel='stylesheet'">
|
||||
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.js"></script>
|
||||
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/contrib/auto-render.min.js"
|
||||
onload="renderMathInElement(document.body, katex_options);"></script>
|
||||
<?php } ?>
|
||||
|
||||
<!-- Highlight.js -->
|
||||
<?php if(isset($MDUI_OFFLINE) && $MDUI_OFFLINE) { ?>
|
||||
<link rel="stylesheet" href="<?php echo $OJ_CDN_URL.$path_fix."template/$OJ_TEMPLATE"; ?>/assets/css/atom-one-light.min.css">
|
||||
<script src="<?php echo $OJ_CDN_URL.$path_fix."template/$OJ_TEMPLATE"; ?>/assets/js/highlight.pack.js"
|
||||
onload="hljs.initHighlightingOnLoad();"></script>
|
||||
<?php } else { ?>
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@highlightjs/cdn-assets@10.5.0/styles/atom-one-light.min.css">
|
||||
<script src="https://cdn.jsdelivr.net/npm/@highlightjs/cdn-assets@10.5.0/highlight.min.js"
|
||||
onload="hljs.initHighlightingOnLoad();"></script>
|
||||
<!-- Pascal --><script src="https://cdn.jsdelivr.net/npm/@highlightjs/cdn-assets@10.5.0/languages/delphi.min.js"></script>
|
||||
<?php } ?>
|
||||
42
web/template/mdui/_includes/header.php
Normal file
42
web/template/mdui/_includes/header.php
Normal file
@@ -0,0 +1,42 @@
|
||||
<header class="mdui-appbar mdui-appbar-fixed" style="z-index: 999;">
|
||||
<div class="mdui-toolbar mdui-color-theme">
|
||||
<a href="javascript:;" class="mdui-btn mdui-btn-icon" mdui-tooltip="{content: '菜单'}" mdui-drawer="{target: '#main-drawer', swipe: true}">
|
||||
<i class="mdui-icon material-icons">menu</i>
|
||||
</a>
|
||||
<a class="mdui-typo-title" href="<?php echo $OJ_HOME; ?>"><?php echo $OJ_NAME ?></a>
|
||||
<div class="mdui-toolbar-spacer"></div>
|
||||
<div class="mdui-btn" mdui-tooltip="{content: '账户'}" mdui-menu="{target: '#account-menu', position: 'bottom', fixed: true}">
|
||||
<i class="mdui-icon material-icons">account_circle</i>
|
||||
<?php if(isset($_SESSION[$OJ_NAME.'_'.'user_id'])) { ?>
|
||||
<?php echo $_SESSION[$OJ_NAME.'_'.'user_id']; ?>
|
||||
<?php } else { ?>
|
||||
请登录
|
||||
<?php } ?>
|
||||
</div>
|
||||
<ul class="mdui-menu mdui-menu-cascade" id="account-menu">
|
||||
<?php
|
||||
if(isset($_SESSION[$OJ_NAME.'_'.'user_id'])){
|
||||
$sid = $_SESSION[$OJ_NAME.'_'.'user_id']; ?>
|
||||
<li class="mdui-menu-item">
|
||||
<a href="<?php echo $path_fix; ?>userinfo.php?user=<?php echo $sid; ?>"
|
||||
class="mdui-ripple">我的信息</a>
|
||||
</li>
|
||||
<li class="mdui-menu-item">
|
||||
<a href="<?php echo $path_fix; ?>modifypage.php" class="mdui-ripple">修改信息</a>
|
||||
</li>
|
||||
<li class="mdui-menu-item">
|
||||
<a href="<?php echo $path_fix; ?>logout.php" class="mdui-ripple">退出登录</a>
|
||||
</li>
|
||||
<?php } else { ?>
|
||||
<li class="mdui-menu-item">
|
||||
<a href="<?php echo $path_fix; ?>loginpage.php" class="mdui-ripple">登录</a>
|
||||
</li>
|
||||
<?php if(isset($OJ_REGISTER) && $OJ_REGISTER){ ?>
|
||||
<li class="mdui-menu-item">
|
||||
<a href="<?php echo $path_fix; ?>registerpage.php" class="mdui-ripple">注册</a>
|
||||
</li>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
78
web/template/mdui/_includes/sidebar.php
Normal file
78
web/template/mdui/_includes/sidebar.php
Normal file
@@ -0,0 +1,78 @@
|
||||
<div class="mdui-drawer" id="main-drawer">
|
||||
<div class="mdui-list mdui-m-t-1 mdui-color-white">
|
||||
<!-- Menu -->
|
||||
<a class="mdui-list-item mdui-ripple <?php if (!$url || strpos($url, "index.php") !== false) echo "mdui-list-item-active"; ?>"
|
||||
href="<?php echo $path_fix; ?>index.php">
|
||||
<i class="mdui-list-item-icon mdui-icon material-icons">home</i>
|
||||
<div class="mdui-list-item-content">首页</div>
|
||||
</a>
|
||||
<a class="mdui-list-item mdui-ripple <?php if (strpos($url, "problemset.php") !== false || strpos($url, "problem.php") !== false) echo "mdui-list-item-active"; ?>"
|
||||
href="<?php echo $path_fix; ?>problemset.php">
|
||||
<i class="mdui-list-item-icon mdui-icon material-icons">book</i>
|
||||
<div class="mdui-list-item-content">题目</div>
|
||||
</a>
|
||||
<a class="mdui-list-item mdui-ripple <?php if (strpos($url, "category.php") !== false) echo "mdui-list-item-active"; ?>"
|
||||
href="<?php echo $path_fix; ?>category.php">
|
||||
<i class="mdui-list-item-icon mdui-icon material-icons">apps</i>
|
||||
<div class="mdui-list-item-content">分类</div>
|
||||
</a>
|
||||
<a class="mdui-list-item mdui-ripple <?php if (strpos($url, "status.php") !== false && strpos($url, "status.php?user_id=$sid") === false) echo "mdui-list-item-active"; ?>"
|
||||
href="<?php echo $path_fix; ?>status.php">
|
||||
<i class="mdui-list-item-icon mdui-icon material-icons">play_circle_outline</i>
|
||||
<div class="mdui-list-item-content">状态</div>
|
||||
</a>
|
||||
<a class="mdui-list-item mdui-ripple <?php if (strpos($url, "contest.php") !== false && $url !== "contest.php?my") echo "mdui-list-item-active"; ?>"
|
||||
href="<?php echo $path_fix; ?>contest.php">
|
||||
<i class="mdui-list-item-icon mdui-icon material-icons">layers</i>
|
||||
<div class="mdui-list-item-content">竞赛/作业</div>
|
||||
</a>
|
||||
<a class="mdui-list-item mdui-ripple <?php if (strpos($url, "ranklist.php") !== false) echo "mdui-list-item-active"; ?>"
|
||||
href="<?php echo $path_fix; ?>ranklist.php">
|
||||
<i class="mdui-list-item-icon mdui-icon material-icons">equalizer</i>
|
||||
<div class="mdui-list-item-content">排名</div>
|
||||
</a>
|
||||
<div class="mdui-divider"></div>
|
||||
|
||||
<!-- User -->
|
||||
<?php
|
||||
if(isset($_SESSION[$OJ_NAME.'_'.'user_id'])){
|
||||
$sid = $_SESSION[$OJ_NAME.'_'.'user_id']; ?>
|
||||
<a class="mdui-list-item mdui-ripple <?php if (strpos($url, "status.php?user_id=$sid") !== false) echo "mdui-list-item-active"; ?>"
|
||||
href="<?php echo $path_fix; ?>status.php?user_id=<?php echo $sid; ?>">
|
||||
<i class="mdui-list-item-icon mdui-icon material-icons">play_circle_outline</i>
|
||||
<div class="mdui-list-item-content">我的提交</div>
|
||||
</a>
|
||||
<a class="mdui-list-item mdui-ripple <?php if ($url === "contest.php?my") echo "mdui-list-item-active"; ?>"
|
||||
href="<?php echo $path_fix; ?>contest.php?my">
|
||||
<i class="mdui-list-item-icon mdui-icon material-icons">apps</i>
|
||||
<div class="mdui-list-item-content">我参加的竞赛/作业</div>
|
||||
</a>
|
||||
<?php if(isset($_SESSION[$OJ_NAME.'_'.'administrator'])
|
||||
|| isset($_SESSION[$OJ_NAME.'_'.'contest_creator'])
|
||||
|| isset($_SESSION[$OJ_NAME.'_'.'problem_editor'])
|
||||
|| isset($_SESSION[$OJ_NAME.'_'.'password_setter'])) { ?>
|
||||
<div class="mdui-divider"></div>
|
||||
|
||||
<!-- Admin -->
|
||||
<a class="mdui-list-item mdui-ripple" href="<?php echo $path_fix; ?>admin/">
|
||||
<i class="mdui-list-item-icon mdui-icon material-icons">settings</i>
|
||||
<div class="mdui-list-item-content">后台管理</div>
|
||||
</a>
|
||||
<?php } ?>
|
||||
<?php } else { ?>
|
||||
<a class="mdui-list-item mdui-ripple <?php if ($url == "loginpage.php") echo "mdui-list-item-active"; ?>"
|
||||
href="<?php echo $path_fix; ?>loginpage.php">
|
||||
<i class="mdui-list-item-icon mdui-icon material-icons">assignment_ind</i>
|
||||
<div class="mdui-list-item-content">登录</div>
|
||||
</a>
|
||||
<?php if(isset($OJ_REGISTER) && $OJ_REGISTER){ ?>
|
||||
<a class="mdui-list-item mdui-ripple <?php if ($url == "registerpage.php") echo "mdui-list-item-active"; ?>"
|
||||
href="<?php echo $path_fix; ?>registerpage.php">
|
||||
<i class="mdui-list-item-icon mdui-icon material-icons">person_add</i>
|
||||
<div class="mdui-list-item-content">注册</div>
|
||||
</a>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
0
web/template/mdui/assets/css/.gitkeep
Normal file
0
web/template/mdui/assets/css/.gitkeep
Normal file
96
web/template/mdui/assets/css/atom-one-light.css
Normal file
96
web/template/mdui/assets/css/atom-one-light.css
Normal file
@@ -0,0 +1,96 @@
|
||||
/*
|
||||
|
||||
Atom One Light by Daniel Gamage
|
||||
Original One Light Syntax theme from https://github.com/atom/one-light-syntax
|
||||
|
||||
base: #fafafa
|
||||
mono-1: #383a42
|
||||
mono-2: #686b77
|
||||
mono-3: #a0a1a7
|
||||
hue-1: #0184bb
|
||||
hue-2: #4078f2
|
||||
hue-3: #a626a4
|
||||
hue-4: #50a14f
|
||||
hue-5: #e45649
|
||||
hue-5-2: #c91243
|
||||
hue-6: #986801
|
||||
hue-6-2: #c18401
|
||||
|
||||
*/
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
overflow-x: auto;
|
||||
padding: 0.5em;
|
||||
color: #383a42;
|
||||
background: #fafafa;
|
||||
}
|
||||
|
||||
.hljs-comment,
|
||||
.hljs-quote {
|
||||
color: #a0a1a7;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.hljs-doctag,
|
||||
.hljs-keyword,
|
||||
.hljs-formula {
|
||||
color: #a626a4;
|
||||
}
|
||||
|
||||
.hljs-section,
|
||||
.hljs-name,
|
||||
.hljs-selector-tag,
|
||||
.hljs-deletion,
|
||||
.hljs-subst {
|
||||
color: #e45649;
|
||||
}
|
||||
|
||||
.hljs-literal {
|
||||
color: #0184bb;
|
||||
}
|
||||
|
||||
.hljs-string,
|
||||
.hljs-regexp,
|
||||
.hljs-addition,
|
||||
.hljs-attribute,
|
||||
.hljs-meta-string {
|
||||
color: #50a14f;
|
||||
}
|
||||
|
||||
.hljs-built_in,
|
||||
.hljs-class .hljs-title {
|
||||
color: #c18401;
|
||||
}
|
||||
|
||||
.hljs-attr,
|
||||
.hljs-variable,
|
||||
.hljs-template-variable,
|
||||
.hljs-type,
|
||||
.hljs-selector-class,
|
||||
.hljs-selector-attr,
|
||||
.hljs-selector-pseudo,
|
||||
.hljs-number {
|
||||
color: #986801;
|
||||
}
|
||||
|
||||
.hljs-symbol,
|
||||
.hljs-bullet,
|
||||
.hljs-link,
|
||||
.hljs-meta,
|
||||
.hljs-selector-id,
|
||||
.hljs-title {
|
||||
color: #4078f2;
|
||||
}
|
||||
|
||||
.hljs-emphasis {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.hljs-strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.hljs-link {
|
||||
text-decoration: underline;
|
||||
}
|
||||
1
web/template/mdui/assets/css/atom-one-light.min.css
vendored
Normal file
1
web/template/mdui/assets/css/atom-one-light.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.hljs{display:block;overflow-x:auto;padding:.5em;color:#383a42;background:#fafafa}.hljs-comment,.hljs-quote{color:#a0a1a7;font-style:italic}.hljs-doctag,.hljs-formula,.hljs-keyword{color:#a626a4}.hljs-deletion,.hljs-name,.hljs-section,.hljs-selector-tag,.hljs-subst{color:#e45649}.hljs-literal{color:#0184bb}.hljs-addition,.hljs-attribute,.hljs-meta-string,.hljs-regexp,.hljs-string{color:#50a14f}.hljs-built_in,.hljs-class .hljs-title{color:#c18401}.hljs-attr,.hljs-number,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-pseudo,.hljs-template-variable,.hljs-type,.hljs-variable{color:#986801}.hljs-bullet,.hljs-link,.hljs-meta,.hljs-selector-id,.hljs-symbol,.hljs-title{color:#4078f2}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}.hljs-link{text-decoration:underline}
|
||||
407
web/template/mdui/assets/css/fonts.css
Normal file
407
web/template/mdui/assets/css/fonts.css
Normal file
@@ -0,0 +1,407 @@
|
||||
/* Source: https://fonts.googleapis.com/css2?family=Roboto+Mono:ital@0;1&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap */
|
||||
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/italic/cyrillic-ext-400.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/italic/cyrillic-400.woff2) format('woff2');
|
||||
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
|
||||
/* greek-ext */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/italic/greek-ext-400.woff2) format('woff2');
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
|
||||
/* greek */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/italic/greek-400.woff2) format('woff2');
|
||||
unicode-range: U+0370-03FF;
|
||||
}
|
||||
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/italic/vietnamese-400.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/italic/latin-ext-400.woff2) format('woff2');
|
||||
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/italic/latin-400.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC,
|
||||
U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/italic/cyrillic-ext-700.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/italic/cyrillic-700.woff2) format('woff2');
|
||||
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
|
||||
/* greek-ext */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/italic/greek-ext-700.woff2) format('woff2');
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
|
||||
/* greek */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/italic/greek-700.woff2) format('woff2');
|
||||
unicode-range: U+0370-03FF;
|
||||
}
|
||||
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/italic/vietnamese-700.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/italic/latin-ext-700.woff2) format('woff2');
|
||||
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/italic/latin-700.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC,
|
||||
U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/normal/cyrillic-ext-400.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/normal/cyrillic-400.woff2) format('woff2');
|
||||
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
|
||||
/* greek-ext */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/normal/greek-ext-400.woff2) format('woff2');
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
|
||||
/* greek */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/normal/greek-400.woff2) format('woff2');
|
||||
unicode-range: U+0370-03FF;
|
||||
}
|
||||
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/normal/vietnamese-400.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/normal/latin-ext-400.woff2) format('woff2');
|
||||
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/normal/latin-400.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC,
|
||||
U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/normal/cyrillic-ext-700.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/normal/cyrillic-700.woff2) format('woff2');
|
||||
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
|
||||
/* greek-ext */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/normal/greek-ext-700.woff2) format('woff2');
|
||||
unicode-range: U+1F00-1FFF;
|
||||
}
|
||||
|
||||
/* greek */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/normal/greek-700.woff2) format('woff2');
|
||||
unicode-range: U+0370-03FF;
|
||||
}
|
||||
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/normal/vietnamese-700.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/normal/latin-ext-700.woff2) format('woff2');
|
||||
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url(../fonts/opensans/normal/latin-700.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC,
|
||||
U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Roboto Mono';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/robotomono/italic/cyrillic-ext-400.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Roboto Mono';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/robotomono/italic/cyrillic-400.woff2) format('woff2');
|
||||
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
|
||||
/* greek */
|
||||
@font-face {
|
||||
font-family: 'Roboto Mono';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/robotomono/italic/greek-400.woff2) format('woff2');
|
||||
unicode-range: U+0370-03FF;
|
||||
}
|
||||
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Roboto Mono';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/robotomono/italic/vietnamese-400.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Roboto Mono';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/robotomono/italic/latin-ext-400.woff2) format('woff2');
|
||||
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Roboto Mono';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/robotomono/italic/latin-400.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC,
|
||||
U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
|
||||
/* cyrillic-ext */
|
||||
@font-face {
|
||||
font-family: 'Roboto Mono';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/robotomono/normal/cyrillic-ext-400.woff2) format('woff2');
|
||||
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
||||
}
|
||||
|
||||
/* cyrillic */
|
||||
@font-face {
|
||||
font-family: 'Roboto Mono';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/robotomono/normal/cyrillic-400.woff2) format('woff2');
|
||||
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||
}
|
||||
|
||||
/* greek */
|
||||
@font-face {
|
||||
font-family: 'Roboto Mono';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/robotomono/normal/greek-400.woff2) format('woff2');
|
||||
unicode-range: U+0370-03FF;
|
||||
}
|
||||
|
||||
/* vietnamese */
|
||||
@font-face {
|
||||
font-family: 'Roboto Mono';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/robotomono/normal/vietnamese-400.woff2) format('woff2');
|
||||
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
|
||||
}
|
||||
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Roboto Mono';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/robotomono/normal/latin-ext-400.woff2) format('woff2');
|
||||
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Roboto Mono';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/robotomono/normal/latin-400.woff2) format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC,
|
||||
U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
1035
web/template/mdui/assets/css/katex.css
Normal file
1035
web/template/mdui/assets/css/katex.css
Normal file
File diff suppressed because it is too large
Load Diff
1
web/template/mdui/assets/css/katex.min.css
vendored
Normal file
1
web/template/mdui/assets/css/katex.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
13559
web/template/mdui/assets/css/mdui.css
Normal file
13559
web/template/mdui/assets/css/mdui.css
Normal file
File diff suppressed because it is too large
Load Diff
118
web/template/mdui/assets/css/mdui.css.map
Normal file
118
web/template/mdui/assets/css/mdui.css.map
Normal file
File diff suppressed because one or more lines are too long
6
web/template/mdui/assets/css/mdui.min.css
vendored
Normal file
6
web/template/mdui/assets/css/mdui.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
web/template/mdui/assets/css/mdui.min.css.map
Normal file
1
web/template/mdui/assets/css/mdui.min.css.map
Normal file
File diff suppressed because one or more lines are too long
0
web/template/mdui/assets/fonts/.gitkeep
Normal file
0
web/template/mdui/assets/fonts/.gitkeep
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_AMS-Regular.ttf
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_AMS-Regular.ttf
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_AMS-Regular.woff
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_AMS-Regular.woff
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_AMS-Regular.woff2
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_AMS-Regular.woff2
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Caligraphic-Bold.ttf
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Caligraphic-Bold.ttf
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Caligraphic-Bold.woff
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Caligraphic-Bold.woff
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Fraktur-Bold.ttf
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Fraktur-Bold.ttf
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Fraktur-Bold.woff
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Fraktur-Bold.woff
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Fraktur-Bold.woff2
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Fraktur-Bold.woff2
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Fraktur-Regular.ttf
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Fraktur-Regular.ttf
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Fraktur-Regular.woff
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Fraktur-Regular.woff
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Fraktur-Regular.woff2
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Fraktur-Regular.woff2
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-Bold.ttf
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-Bold.ttf
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-Bold.woff
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-Bold.woff
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-Bold.woff2
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-Bold.woff2
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-BoldItalic.ttf
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-BoldItalic.ttf
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-BoldItalic.woff
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-BoldItalic.woff
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-BoldItalic.woff2
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-BoldItalic.woff2
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-Italic.ttf
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-Italic.ttf
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-Italic.woff
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-Italic.woff
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-Italic.woff2
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-Italic.woff2
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-Regular.ttf
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-Regular.ttf
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-Regular.woff
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-Regular.woff
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-Regular.woff2
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Main-Regular.woff2
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Math-BoldItalic.ttf
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Math-BoldItalic.ttf
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Math-BoldItalic.woff
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Math-BoldItalic.woff
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Math-BoldItalic.woff2
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Math-BoldItalic.woff2
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Math-Italic.ttf
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Math-Italic.ttf
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Math-Italic.woff
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Math-Italic.woff
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Math-Italic.woff2
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Math-Italic.woff2
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_SansSerif-Bold.ttf
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_SansSerif-Bold.ttf
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_SansSerif-Bold.woff
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_SansSerif-Bold.woff
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_SansSerif-Bold.woff2
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_SansSerif-Bold.woff2
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_SansSerif-Italic.ttf
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_SansSerif-Italic.ttf
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_SansSerif-Italic.woff
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_SansSerif-Italic.woff
Normal file
Binary file not shown.
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_SansSerif-Regular.ttf
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_SansSerif-Regular.ttf
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Script-Regular.ttf
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Script-Regular.ttf
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Script-Regular.woff
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Script-Regular.woff
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Script-Regular.woff2
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Script-Regular.woff2
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size1-Regular.ttf
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size1-Regular.ttf
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size1-Regular.woff
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size1-Regular.woff
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size1-Regular.woff2
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size1-Regular.woff2
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size2-Regular.ttf
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size2-Regular.ttf
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size2-Regular.woff
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size2-Regular.woff
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size2-Regular.woff2
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size2-Regular.woff2
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size3-Regular.ttf
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size3-Regular.ttf
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size3-Regular.woff
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size3-Regular.woff
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size3-Regular.woff2
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size3-Regular.woff2
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size4-Regular.ttf
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size4-Regular.ttf
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size4-Regular.woff
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size4-Regular.woff
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size4-Regular.woff2
Normal file
BIN
web/template/mdui/assets/fonts/katex/KaTeX_Size4-Regular.woff2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
web/template/mdui/assets/fonts/opensans/italic/greek-400.woff2
Normal file
BIN
web/template/mdui/assets/fonts/opensans/italic/greek-400.woff2
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/opensans/italic/greek-700.woff2
Normal file
BIN
web/template/mdui/assets/fonts/opensans/italic/greek-700.woff2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
web/template/mdui/assets/fonts/opensans/italic/latin-400.woff2
Normal file
BIN
web/template/mdui/assets/fonts/opensans/italic/latin-400.woff2
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/opensans/italic/latin-700.woff2
Normal file
BIN
web/template/mdui/assets/fonts/opensans/italic/latin-700.woff2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
web/template/mdui/assets/fonts/opensans/normal/greek-400.woff2
Normal file
BIN
web/template/mdui/assets/fonts/opensans/normal/greek-400.woff2
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/opensans/normal/greek-700.woff2
Normal file
BIN
web/template/mdui/assets/fonts/opensans/normal/greek-700.woff2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
web/template/mdui/assets/fonts/opensans/normal/latin-400.woff2
Normal file
BIN
web/template/mdui/assets/fonts/opensans/normal/latin-400.woff2
Normal file
Binary file not shown.
BIN
web/template/mdui/assets/fonts/opensans/normal/latin-700.woff2
Normal file
BIN
web/template/mdui/assets/fonts/opensans/normal/latin-700.woff2
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user