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
nezha-nezha-fronted/nezha-fronted/index.html

44 lines
894 B
HTML
Raw Normal View History

2019-11-28 18:23:49 +08:00
<!DOCTYPE html>
<html>
2020-01-17 16:50:17 +08:00
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
2021-05-20 16:48:41 +08:00
<link href="./static/explore-tab-logo.png" rel="icon" type="image/x-icon"/>
2020-01-21 15:34:01 +08:00
2020-02-13 10:53:36 +08:00
<title>Nezha</title>
2020-01-17 16:50:17 +08:00
<style>
* {
margin: 0;
padding: 0;
}
2020-05-11 18:43:52 +08:00
@media only screen and (min-width: 10px) and (min-height: 10px){
html {
font-size: 10px;
}
}
@media only screen and (min-width: 1020px) and (min-height: 560px){
html {
font-size: 12px;
}
}
@media only screen and (min-width: 1360px) and (min-height: 650px){
html {
font-size: 14px;
}
}
@media only screen and (min-width: 1700px) and (min-height: 800px){
html {
font-size: 16px;
}
}
2020-01-17 16:50:17 +08:00
</style>
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
2020-01-21 15:34:01 +08:00
</html>