Initial commit

This commit is contained in:
Masterain
2022-09-27 18:46:44 -07:00
parent 9dce7a8fcd
commit 1dccc22e55
45 changed files with 17271 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
// you can change config here
$code-lang: "css" "html" "js" "ts" "vue";

View File

@@ -0,0 +1,61 @@
// place your custom styles here
header.navbar {
/*
// 隐藏导航栏外链图标
.navbar-items-wrapper > nav > div > a > span > svg.external-link-icon {
position: relative;
display: none;
color: var(--external-link-icon-color);
vertical-align: middle;
top: -1px;
}
*/
// 隐藏导航栏和导航栏菜单外链图标
svg.external-link-icon {
position: relative;
display: none;
color: var(--external-link-icon-color);
vertical-align: middle;
top: -1px;
}
}
.link-box{
ol {
display: inherit;
li {
cursor: pointer;
display: inline-block;
margin: 10px 0;
width: 98%;
font-size: 16px;
border: 1px solid var(--c-border-dark);
border-radius: 5px;
transition: all .3s;
text-align: right;
a {
display: inline-block;
position: relative;
width: 100%;
height: 100%;
opacity: .8;
padding: 10px 20px;
box-sizing: border-box;
transition: all .3s;
strong {
position: absolute;
left: 25px;
}
&:hover{
opacity: 1;
text-decoration:none!important;
}
}
&:hover{
transform: translate3d(0, -2px, 0);
box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
}
}
}
}

View File

@@ -0,0 +1,3 @@
// you can change colors here
$theme-color: #f26d6d;
$font-family: 'Georgia, -apple-system, "Nimbus Roman No9 L", "PingFang SC", "Hiragino Sans GB", "Noto Serif SC", "Microsoft Yahei", "WenQuanYi Micro Hei", "ST Heiti", sans-serif';