Initial rearrangment of vuetom site source

This commit is contained in:
2024-10-09 08:23:08 +00:00
parent dbd456a517
commit e9d08bd263
233 changed files with 22841 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
// 文档侧边栏样式重写
.VPSidebarGroup {
.link {
&:hover {
color: var(--vp-c-brand);
// background: var(--vt-c-button-hover-bg);
}
&.active {
background: var(--vt-c-button-active-bg);
}
border-radius: 6px;
padding: 6px 0;
.link-text {
padding-left: 12px;
}
}
}

View File

@@ -0,0 +1,7 @@
.VPContent {
background-size: cover;
background-attachment: fixed;
background-position: center center;
background-image: var(--vt-bg-content);
}

View File

@@ -0,0 +1,98 @@
// 文档MD语法样式重写
.NotFound {
padding: 0;
margin: 60px;
border-radius: 10px;
background-color: var(--vt-bg-doc);
}
.VPDoc {
background-color: var(--vt-bg-doc);
.container {
.content {
main {
background-image: linear-gradient(90deg,rgba(159,219,252,.08) 3%,transparent 0),linear-gradient(1turn,rgba(159,219,252,.08) 3%,transparent 0);
background-size: 30px 30px;
background-position: 50%;
}
}
.vp-doc {
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 20px 0;
font-weight: 600;
color: var(--vp-c-brand);
}
h1 {
font-size: 25px;
}
h2 {
font-size: 20px;
border-bottom: 4px solid var(--vp-c-pink-dimm-1);
line-height: 35px;
padding-left: 20px;
margin: 0;
border-top: 0;
&::after {
content: "";
position: absolute;
right: 0;
bottom: 0;
width: 400px;
height: 10px;
border-top-right-radius: 22px;
background: linear-gradient(90deg,transparent,var(--vp-c-brand));
max-width: 50vw;
}
}
h3 {
font-size: 18px;
}
h4 {
font-size: 16px;
}
h5 {
font-size: 14px;
}
h6 {
font-size: 12px;
}
table {
th, td {
border: 1px solid var(--vp-c-divider-light);
}
}
a {
text-decoration: underline;
}
strong {
color: var(--vp-c-second);
&::before {
content: "[ ";
}
&::after {
content: " ]";
}
}
blockquote {
margin: 0;
padding: 1rem;
border-left: 6px solid var(--vp-c-brand-dark);
border-radius: 5px;
background: var(--vp-c-blue-dimm-5);
}
:not(pre) > code {
color: var(--vp-c-second);
border: 1px solid var(--vp-c-pink-dimm-2);
background-color: var(--vp-c-pink-dimm-3);
}
:not(pre) > code:hover {
border: 1px solid var(--vp-c-pink-dimm-1);
}
}
}
}

View File

@@ -0,0 +1,5 @@
.DocSearch-Button {
border: 2px solid transparent;
border-radius: 20px;
opacity: 0.8;
}

View File

@@ -0,0 +1,274 @@
// 文档-首页样式重写
:root {
--gap-horizontal: 10px;
--gap-vertical: 10px;
--time-anim: 5s;
--delay-anim: 0s;
--blend-mode-1: none;
--blend-color-1: transparent;
--vt-bg-light: -webkit-linear-gradient(top,
rgba(0, 0, 0, 0.1) 0%,
rgba(0, 0, 0, 0) 20%,
rgba(0, 0, 0, 0) 80%,
rgba(0, 0, 0, 0.1) 100%),
-webkit-linear-gradient(left, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 20%, rgba(0,
0,
0,
0) 80%, rgba(0, 0, 0, 0.1) 100%),
url('');
}
.VPHome {
.VPHeroLogo {
width: 15%;
margin: 0 auto;
padding: 30px 0 0 0;
}
.VPHero {
.container {
.main {
text-align: center;
.name {
color: transparent;
background: linear-gradient(to right, #32defd, rgb(247 69 152));
max-width: 100%;
-webkit-background-clip: text;
&:hover {
-webkit-animation: Glow 1.5s ease infinite alternate;
animation: Glow 1.5s ease infinite alternate;
}
}
.release-tag {
font-size: 1rem;
font-weight: bold;
line-height: 20px;
display: inline-block;
position: absolute;
top: 50%;
transform: translateY(-50%);
padding: 6px;
margin-left: 8px;
background: var(--vp-c-brand);
color: #fff;
border-radius: 10px;
}
.text {
color: var(--vp-c-gray);
max-width: 100%;
}
.tagline {
color: var(--vp-c-second-lighter);
max-width: 100%;
}
.actions {
justify-content: center;
}
}
}
}
.VPButton {
border-radius: 6px !important;
border: 2px solid var(--vp-c-brand-light) !important;
&.alt {
color: var(--vp-c-brand-light) !important;
background-color: transparent !important;
}
&.alt:hover {
color: var(--vp-button-brand-text) !important;
background-color: var(--vp-c-brand-light) !important;
}
&.brand {
background-color: var(--vp-c-brand) !important;
}
&.brand:hover {
background-color: var(--vp-c-brand-light) !important;
}
}
&::after {
content: ' ';
height: 100%;
width: 98%;
top: 0;
left: 0;
position: fixed;
background-image: var(--vt-bg-light);
background-size: cover;
background-attachment: fixed;
background-position: center center;
background-blend-mode: var(--blend-mode-1);
animation-duration: var(--time-anim);
animation-delay: var(--delay-anim);
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-name: glitch-anim-1;
}
.VPFeatures {
padding: 32px;
margin: 0 15%;
margin-bottom: 5%;
background: linear-gradient(to right,
rgba(6, 205, 255, 0.1882352941),
rgba(223, 7, 107, 0.3));
border-radius: 16px;
.item {
padding: 16px;
.VPFeature {
border: 1px solid var(--vp-c-text-inverse-4);
background-color: transparent;
&:hover {
-webkit-animation-name: hfhover-zoom;
animation-name: hfhover-zoom;
-webkit-animation-duration: 0.5s;
animation-duration: 0.5s;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
color: var(--c-sub-brand-light);
}
.title {
color: var(--vp-c-brand-light);
font-size: 1.3rem;
margin: 15px;
}
.details {
color: var(--vp-c-second-lighter);
font-size: 1rem;
line-height: 1.5rem;
}
}
}
}
}
@media (min-width: 960px) {
.VPFeatures {
padding: 32px !important;
}
}
@-webkit-keyframes Glow {
from {
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff,
0 0 40px var(--vp-c-second), 0 0 70px var(--vp-c-second),
0 0 80px var(--vp-c-second), 0 0 100px var(--vp-c-second),
0 0 150px var(--vp-c-second);
}
to {
text-shadow: 0 0 2px #fff, 0 0 5px #fff, 0 0 7px #fff,
0 0 10px var(--vp-c-brand), 0 0 17px var(--vp-c-brand),
0 0 20px var(--vp-c-brand), 0 0 25px var(--vp-c-brand),
0 0 37px var(--vp-c-brand);
}
}
@keyframes Glow {
from {
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff,
0 0 40px var(--vp-c-second), 0 0 70px var(--vp-c-second),
0 0 80px var(--vp-c-second), 0 0 100px var(--vp-c-second),
0 0 150px var(--vp-c-second);
}
to {
text-shadow: 0 0 2px #fff, 0 0 5px #fff, 0 0 7px #fff,
0 0 10px var(--vp-c-brand), 0 0 17px var(--vp-c-brand),
0 0 20px var(--vp-c-brand), 0 0 25px var(--vp-c-brand),
0 0 37px var(--vp-c-brand);
}
}
@keyframes glitch-anim-1 {
0% {
opacity: 1;
transform: translate3d(var(--gap-horizontal), 0, 0);
clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
}
2% {
clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
}
4% {
clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
}
6% {
clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
}
8% {
clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
}
10% {
clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
}
12% {
clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
}
14% {
clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
}
16% {
clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
}
18% {
clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
}
20% {
clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
}
21.9% {
opacity: 1;
transform: translate3d(var(--gap-horizontal), 0, 0);
}
22%,
100% {
opacity: 0;
transform: translate3d(0, 0, 0);
clip-path: polygon(0 0, 0 0, 0 0, 0 0);
}
}
@keyframes hfhover-zoom {
50% {
-webkit-transform: scale(0.9);
transform: scale(0.9);
-webkit-filter: brightness(80%);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
-webkit-filter: brightness(100%);
}
}

View File

@@ -0,0 +1,12 @@
// rewrite nav
@use './nav.scss';
// rewrite aside button
@use './aside.scss';
// rewrite content bg
@use './content.scss';
// rewrite main content
@use './doc.scss';
// rewrite search box
@use './docsearch.scss';
// rewrite custom home
@use './home.scss';

View File

@@ -0,0 +1,17 @@
// 文档顶部导航栏样式重写
.VPNav {
box-shadow: var(--vp-shadow-2);
.VPNavBarTitle {
.title {
color: var(--vp-c-brand);
font-size: 1.2rem;
font-weight: bold;
}
}
.VPNavBar {
.VPNavBarMenuLink {
font-weight: bold;
}
}
}