Push to Valaxy Branch. Initial push. Testing switch to new codebase.

This commit is contained in:
2024-10-09 06:50:17 +00:00
parent 8e7aeba926
commit 92da6ff9ce
30 changed files with 404 additions and 86 deletions

3
styles/README.md Normal file
View File

@@ -0,0 +1,3 @@
# styles
You can custom styles in `styles/index.scss`.

32
styles/docs.scss Normal file
View File

@@ -0,0 +1,32 @@
.gradient-text {
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.sese-btn {
position: relative;
z-index: 0;
@apply from-blue-500 to-blue-700;
&::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: all 0.4s;
z-index: -1;
@apply rounded bg-gradient-to-r from-red-500 to-red-700;
}
&:hover {
&::before {
opacity: 1;
}
}
}

2
styles/index.scss Normal file
View File

@@ -0,0 +1,2 @@
// @use "./markdown.scss" as *;
@use "./docs.scss";

2
styles/vars.scss Normal file
View File

@@ -0,0 +1,2 @@
// :root {}
// html.dark{}