NapCatQQ/static/index.html

25 lines
690 B
HTML
Raw Normal View History

2024-05-05 04:43:32 +00:00
<!DOCTYPE html>
2024-05-05 05:40:54 +00:00
<html>
2024-05-05 04:43:32 +00:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-05-05 06:35:49 +00:00
<!-- 源样式 -->
2024-05-05 06:32:48 +00:00
<link rel="stylesheet" href="./assets/NapCat.css" />
2024-05-05 06:35:49 +00:00
<link rel="stylesheet" href="./assets/color.css" />
<!-- 修补样式 -->
2024-05-05 06:32:48 +00:00
<link rel="stylesheet" href="./assets/webcomponents.css" />
2024-05-05 06:35:49 +00:00
<!-- 脚手架 -->
2024-05-05 05:03:56 +00:00
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
2024-05-05 05:40:54 +00:00
<title>NapCat-WebUi</title>
2024-05-05 04:43:32 +00:00
</head>
2024-05-05 05:40:54 +00:00
2024-05-05 04:43:32 +00:00
<body>
2024-05-05 05:40:54 +00:00
<script>
if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
document.body.classList.add('q-theme-tokens-dark');
}
</script>
2024-05-05 04:43:32 +00:00
</body>
2024-05-05 05:40:54 +00:00
2024-05-05 04:43:32 +00:00
</html>