Skip to content

Commit 55cd572

Browse files
committed
(杂项更改)初始化
1 parent 1fd61cf commit 55cd572

File tree

1,930 files changed

+126298
-47500
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,930 files changed

+126298
-47500
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,12 @@
11
build/
2+
dist/
3+
docs/user_guide/.DS_Store
4+
docs/.DS_Store
5+
docs/.vuepress/theme
26
static/.DS_Store
7+
static/images/.DS_Store
8+
.DS_Store
9+
.temp
10+
node_modules
11+
package-lock.json
12+
yarn.lock

.htaccess

Lines changed: 0 additions & 16 deletions
This file was deleted.

_logo/logo.svg

Lines changed: 67 additions & 0 deletions
Loading
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<script>
2+
export default {
3+
functional: true,
4+
props: {
5+
title: String,
6+
required: true
7+
},
8+
render (h, { props, slots }) {
9+
return h('div',
10+
{
11+
class: ['upgrade-path']
12+
},
13+
[
14+
h('h4', props.title || 'Upgrade Path'),
15+
slots().default
16+
]
17+
)
18+
}
19+
}
20+
</script>
21+
22+
<style lang="stylus">
23+
.upgrade-path
24+
margin-top: 2em
25+
padding: 2em
26+
background: rgba(73, 195, 140, .1)
27+
border-radius: 2px
28+
> h4
29+
margin-top: 0
30+
> p:last-child
31+
margin-bottom: 0
32+
padding-bottom: 0
33+
</style>
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<template>
2+
<div class="home-footer">
3+
<div class="left-box item">
4+
<h4>🌐站点相关</h4>
5+
<ul>
6+
<li>
7+
<a href="http://www.beian.miit.gov.cn/" target="_blank">粤ICP备16025085号-5</a>
8+
</li>
9+
</ul>
10+
</div>
11+
<div class="left-box item">
12+
<h4>👥兄弟文档</h4>
13+
<ul>
14+
<li>
15+
<a href="https://www.numpy.org.cn/" target="_blank">NumPy 中文网</a>
16+
</li>
17+
<li>
18+
<a href="https://www.matplotlib.org.cn/" target="_blank">Pandas 中文网</a>
19+
</li>
20+
</ul>
21+
</div>
22+
<div class="right-box item">
23+
<h4>👬友情链接</h4>
24+
</div>
25+
</div>
26+
</template>
27+
28+
<style lang="stylus" scoped>
29+
.home-footer
30+
margin-top 30px
31+
padding-top 20px
32+
padding-bottom 20px
33+
border-top 1px solid #f8f8f8
34+
35+
&:after
36+
content ""
37+
display block
38+
height 0
39+
clear both
40+
visibility hidden
41+
42+
.item
43+
width 33.3%
44+
ul
45+
padding 0px
46+
list-style none
47+
li
48+
line-height 1.5
49+
a
50+
font-size 14px !important
51+
transition color 0.2s
52+
&:hover
53+
color darken($accentColor, 20%);
54+
55+
.left-box
56+
float left
57+
58+
.right-box
59+
float right
60+
61+
@media (max-width: 650px)
62+
.home-footer
63+
.item
64+
width 100%;
65+
</style>

0 commit comments

Comments
 (0)