blob: c40e588945ab86a80fc12df7d84bdd587829ce73 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
/* 以下部分为自行开发 */
.wall{
width:100%;
}
a {
text-decoration: none !important;
}
/* 文章标题 */
.title {
text-align: center;
font-style: normal;
font-weight: 900;
font-size: 50px;
line-height: 70px;
font-family: 'Courier New', Courier, monospace;
}
/* 题记 */
.metto {
text-align: center;
font-size: 30px;
line-height: 40px;
}
/* 引言 */
.intro {
/* text-align: right; */
color: darkslategray;
font-size: 20px;
}
/* 以下目录列表 */
.menu-time {
/* text-align: center; */
font-size: 40px;
font-family: 'Times New Roman', Times, serif;
font-weight: bolder;
}
.menu-list {
font-size: 25px;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
/* 以下用于文章尾部署日 */
.time {
text-align: right;
color: darkslategray;
font-size: 20px;
}
/* 以下为鼠标特效 */
.yanhua>div {
width: 10px;
height: 10px;
z-index: 9;
position: fixed;
border-radius: 50%;
}
@keyframes yanhua {
to {
top: var(--t);
left: var(--l);
opacity: 0;
transform: scale(0);
/* filter: hue-rotate(360deg); */
}
}
/* 以下MarkMap */
* {
margin: 0;
padding: 0;
}
.map-box {
display: flex;
justify-content: center;
}
#mindmap {
display: block;
width: 100%;
height: 1000px;
}
.p {
text-indent: 8em;
}
.h1 {
text-indent: 20em;
}
/* 以下评论区 */
.comment {
padding-bottom: 20px;
}
.comment hr {
margin-top: 50px;
margin-bottom: 40px;
}
/* 为class为"markmap mindmap"的元素设计圆角矩形边框 */
.markmap.mindmap {
border: 1px solid #000;
padding: 10px;
margin: 10px;
border-radius: 50px;
}
/* .markmap.mindmap {
border: 1px solid #000;
padding: 10px;
margin: 10px;
} */
|