This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cyber-narrator-cn-ui/public/index.html

50 lines
1.6 KiB
HTML
Raw Normal View History

2021-05-26 17:34:13 +08:00
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
2021-07-01 18:34:47 +08:00
<link rel="icon" href="<%= BASE_URL %>images/cn-logo-medium.svg">
2021-07-01 15:39:48 +08:00
<title>Cyber Narrator</title>
2021-05-26 17:34:13 +08:00
</head>
<body class="theme-light">
2021-05-26 17:34:13 +08:00
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
</body>
2021-06-07 18:35:16 +08:00
<style>
2022-04-25 15:29:44 +08:00
@media only screen and (min-width: 800px) {
body,html{font-size: 12px !important;}
} /*>=800的设备*/
@media only screen and (min-width: 1024px) {
body,html{font-size: 12px !important;}
} /*>=1024的设备*/
@media only screen and (min-width: 1280px) {
body,html{font-size: 12px !important;}
}/*>=1280的设备*/
@media only screen and (min-width: 1366px) {
body,html{font-size: 12px !important; }
}/*>=1366的设备*/
@media only screen and (min-width: 1440px) {
body,html{font-size: 12px !important;}
}/*>=1440的设备*/
@media only screen and (min-width: 1680px) {
body,html{font-size: 14px !important;}
}/*>=1680的设备*/
@media only screen and (min-width: 1920px) {
body,html{font-size: 16px !important;}
}/*>=1920的设备*/
@media only screen and (min-width: 2560px) {
body,html{font-size: 22px !important;}
}/*>=2560的设备*/
2021-06-07 18:35:16 +08:00
</style>
2021-05-26 17:34:13 +08:00
</html>