Compare commits
2 Commits
Author | SHA1 | Date |
---|---|---|
ppst | 96f7a2d9eb | 1 year ago |
ppst | 135f54cf91 | 2 years ago |
File diff suppressed because it is too large
Load Diff
@ -1,23 +1,15 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="zh">
|
<html lang="zh">
|
||||||
<head>
|
|
||||||
|
<head>
|
||||||
@@include('./tpl/header.html')
|
@@include('./tpl/header.html')
|
||||||
<script src="./static/lib/d3@6.js"></script>
|
</head>
|
||||||
<script src="./static/lib/markmap-view.js"></script>
|
|
||||||
<script src="./static/js/main.js"></script>
|
|
||||||
<style>
|
|
||||||
.markmap-svg{
|
|
||||||
width: calc(100vw - 40px);
|
|
||||||
height: calc(100vh - 66px);
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
@@include('./tpl/nav.html')
|
|
||||||
<section>
|
<section>
|
||||||
<svg id="markmap" class="markmap-svg"></svg>
|
@@include('./tpl/empty.html')
|
||||||
</section>
|
</section>
|
||||||
@@include('./tpl/footer.html')
|
@@include('./tpl/footer.html')
|
||||||
</body>
|
</body>
|
||||||
</html>
|
|
||||||
|
</html>
|
@ -1,96 +1,35 @@
|
|||||||
@charset "UTF-8";
|
|
||||||
/* 背景颜色 */
|
|
||||||
/* 字体 */
|
|
||||||
/*普通字体颜色*/
|
|
||||||
/* 重置样式 */
|
/* 重置样式 */
|
||||||
html {
|
html {
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
a:link,a:visited,a:hover,a:active {
|
||||||
a:link, a:visited, a:hover, a:active {
|
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: #5bbe8e;
|
color: #171a2e;
|
||||||
|
}
|
||||||
|
|
||||||
|
.empty-box{
|
||||||
|
width: 400px;
|
||||||
|
height: 100vh;
|
||||||
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 底部 */
|
/* 底部 */
|
||||||
.footer-box {
|
.footer-box {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
height: 60px;
|
||||||
position: fixed;
|
background-color: #171a2e;
|
||||||
bottom: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
height: 30px;
|
|
||||||
background-color: #5bbe8e;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer-box .content {
|
.footer-box .content {
|
||||||
font-size: 12px;
|
margin-top: 20px;
|
||||||
|
font-size: 14px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 头部 */
|
|
||||||
.header {
|
|
||||||
height: 40px;
|
|
||||||
line-height: 40px;
|
|
||||||
background-color: #fff;
|
|
||||||
color: #5bbe8e;
|
|
||||||
box-shadow: 0 4px 4px #f9f9fc;
|
|
||||||
}
|
|
||||||
.header .box {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-around;
|
|
||||||
align-items: center;
|
|
||||||
padding: 0 10%;
|
|
||||||
}
|
|
||||||
.header .box .logo {
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
.header .box a:link, .header .box a:visited, .header .box a:hover, .header .box a:active {
|
|
||||||
color: #5bbe8e;
|
|
||||||
}
|
|
||||||
.header .opr-box {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
color: #5bbe8e;
|
|
||||||
}
|
|
||||||
.header .opr-box .item {
|
|
||||||
font-size: 16px;
|
|
||||||
margin-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* 内容 */
|
|
||||||
/* 弹层 */
|
|
||||||
.mark-box {
|
|
||||||
display: none;
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
left: 0;
|
|
||||||
z-index: 1;
|
|
||||||
}
|
|
||||||
.mark-box .dialog-box {
|
|
||||||
width: 30%;
|
|
||||||
height: 400px;
|
|
||||||
background-color: #fff;
|
|
||||||
border: 1px solid #f9f9fc;
|
|
||||||
border-radius: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.show-dialog {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hide-dialog {
|
|
||||||
display: none;
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
@charset "UTF-8";
|
|
||||||
/* 背景颜色 */
|
|
||||||
/* 字体 */
|
|
||||||
/*普通字体颜色*/
|
|
@ -1 +0,0 @@
|
|||||||
|
|
@ -1 +0,0 @@
|
|||||||
// 无需转换
|
|
@ -1,65 +0,0 @@
|
|||||||
@import "variable.scss";
|
|
||||||
|
|
||||||
/* 重置样式 */
|
|
||||||
html {
|
|
||||||
font-family: sans-serif;
|
|
||||||
font-size: $common-font-size;
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
a:link,a:visited,a:hover,a:active {
|
|
||||||
text-decoration: none;
|
|
||||||
color: $common-font-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* 底部 */
|
|
||||||
.footer-box {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
position: fixed;
|
|
||||||
bottom: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
height: 30px;
|
|
||||||
background-color:#5bbe8e;;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-box .content {
|
|
||||||
font-size: $small-font-size;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* 头部 */
|
|
||||||
.header{
|
|
||||||
height: 40px;
|
|
||||||
line-height: 40px;
|
|
||||||
background-color: #fff;
|
|
||||||
color: $common-font-color;
|
|
||||||
box-shadow: 0 4px 4px #f9f9fc;
|
|
||||||
.box{
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-around;
|
|
||||||
align-items: center;
|
|
||||||
padding: 0 10%;
|
|
||||||
.logo {
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
a:link,a:visited,a:hover,a:active {
|
|
||||||
color: $common-font-color;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.opr-box{
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
color: $common-font-color;
|
|
||||||
.item{
|
|
||||||
font-size: $medium-font-size;
|
|
||||||
margin-right: 10px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
|||||||
/* 背景颜色 */
|
|
||||||
|
|
||||||
$body-bg-color: #fff;
|
|
||||||
$footer-bg-color:#5bbe8e;
|
|
||||||
|
|
||||||
/* 字体 */
|
|
||||||
|
|
||||||
$common-font-size:14px;
|
|
||||||
$big-font-size:24px;
|
|
||||||
$medium-font-size:16px;
|
|
||||||
$small-font-size:12px;
|
|
||||||
$mini-font-size:8px;
|
|
||||||
|
|
||||||
$common-font-color:#5bbe8e;/*普通字体颜色*/
|
|
||||||
$footer-color:#fff;
|
|
File diff suppressed because one or more lines are too long
@ -1,10 +0,0 @@
|
|||||||
<header class="header">
|
|
||||||
<div class="box">
|
|
||||||
<div class="logo item"><a href="/">MARKMAP</a></div>
|
|
||||||
<div class="opr-box">
|
|
||||||
<div class="item open-new-dialog" type="new">新建目录</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
entry: {
|
|
||||||
main: './src/static/js/main.js',
|
|
||||||
index: './src/static/js/index.js'
|
|
||||||
},
|
|
||||||
output: {
|
|
||||||
filename: '[name].js',
|
|
||||||
path: __dirname + '/dist'
|
|
||||||
},
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue