initial upload

This commit is contained in:
bietiaop 2024-07-08 13:13:22 +08:00
commit 1c65f10e24
58 changed files with 2533 additions and 0 deletions

View file

@ -0,0 +1,30 @@
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
font-family: "zzz", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
transform-origin: 0 0;
font-size: 24px;
width: 840px;
}
.container {
background: url("../images/bg.jpg") no-repeat center center;
background-size: cover;
color: white;
}
.copyright {
text-align: center;
font-size: 0.7em;
color: #797979;
padding-bottom: 2em;
}
.copyright .highlight {
color: #fff;
}
/*# sourceMappingURL=index.css.map */

View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="zh">
<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">
<title>ZZZ-Plugin</title>
<link rel="stylesheet" type="text/css" href="{{@sys.resourcesPath}}/common/style/index.css">
<link rel="stylesheet" type="text/css" href="{{@sys.resourcesPath}}/common/layout/index.css" />
{{block 'css'}}
{{/block}}
</head>
<body {{@sys.scale}}>
<div class="container" id="container">
{{block 'main'}}{{/block}}
<div class="copyright">{{@sys.createdby}}</div>
</div>
</body>
</html>

View file

@ -0,0 +1,31 @@
@charset "UTF-8";
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
font-family: 'zzz', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
transform-origin: 0 0;
font-size: 24px;
width: 840px;
}
.container {
background: url('../images/bg.jpg') no-repeat center center;
background-size: cover;
color: white;
}
.copyright {
text-align: center;
font-size: 0.7em;
color: #797979;
padding-bottom: 2em;
.highlight {
color: #fff;
}
}