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
2022-04-27 16:18:29 +08:00

50 lines
1.6 KiB
HTML

<!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">
<link rel="icon" href="<%= BASE_URL %>images/cn-logo-medium.svg">
<title>Cyber Narrator</title>
</head>
<body class="theme-light">
<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>
<style>
@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的设备*/
</style>
</html>