forked from PlayForm/Starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd8ac8f
commit b26abc9
Showing
19 changed files
with
293 additions
and
201 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
[["Map",1,2],"meta::meta",["Map",3,4,5,6],"astro-version","5.1.7","astro-config-digest","{\"root\":{},\"srcDir\":{},\"publicDir\":{},\"outDir\":{},\"cacheDir\":{},\"site\":\"HTTP://localhost\",\"compressHTML\":false,\"base\":\"/\",\"trailingSlash\":\"ignore\",\"output\":\"static\",\"scopedStyleStrategy\":\"attribute\",\"build\":{\"format\":\"directory\",\"client\":{},\"server\":{},\"assets\":\"_astro\",\"serverEntry\":\"entry.mjs\",\"redirects\":true,\"inlineStylesheets\":\"auto\",\"concurrency\":9999},\"server\":{\"open\":false,\"host\":true,\"port\":9999,\"streaming\":true},\"redirects\":{},\"prefetch\":{\"prefetchAll\":true,\"defaultStrategy\":\"hover\"},\"image\":{\"endpoint\":{\"route\":\"/_image\"},\"service\":{\"entrypoint\":\"astro/assets/services/sharp\",\"config\":{}},\"domains\":[],\"remotePatterns\":[]},\"devToolbar\":{\"enabled\":true},\"markdown\":{\"syntaxHighlight\":\"shiki\",\"shikiConfig\":{\"langs\":[],\"langAlias\":{},\"theme\":\"github-dark\",\"themes\":{},\"wrap\":false,\"transformers\":[]},\"remarkPlugins\":[],\"rehypePlugins\":[],\"remarkRehype\":{},\"gfm\":true,\"smartypants\":true},\"security\":{\"checkOrigin\":true},\"env\":{\"schema\":{\"TOKEN_GITHUB_COMMIT\":{\"context\":\"server\",\"access\":\"secret\",\"optional\":false,\"default\":\"GitHub Token API Stream\",\"type\":\"string\"}},\"validateSecrets\":true},\"experimental\":{\"clientPrerender\":true,\"contentIntellisense\":true,\"responsiveImages\":false},\"legacy\":{\"collections\":false}}"] | ||
[["Map",1,2],"meta::meta",["Map",3,4,5,6],"astro-version","5.2.3","astro-config-digest","{\"root\":{},\"srcDir\":{},\"publicDir\":{},\"outDir\":{},\"cacheDir\":{},\"site\":\"HTTP://localhost\",\"compressHTML\":false,\"base\":\"/\",\"trailingSlash\":\"ignore\",\"output\":\"static\",\"scopedStyleStrategy\":\"attribute\",\"build\":{\"format\":\"directory\",\"client\":{},\"server\":{},\"assets\":\"_astro\",\"serverEntry\":\"entry.mjs\",\"redirects\":true,\"inlineStylesheets\":\"auto\",\"concurrency\":9999},\"server\":{\"open\":false,\"host\":true,\"port\":9999,\"streaming\":true},\"redirects\":{},\"prefetch\":{\"prefetchAll\":true,\"defaultStrategy\":\"hover\"},\"image\":{\"endpoint\":{\"route\":\"/_image\"},\"service\":{\"entrypoint\":\"astro/assets/services/sharp\",\"config\":{}},\"domains\":[],\"remotePatterns\":[]},\"devToolbar\":{\"enabled\":true},\"markdown\":{\"syntaxHighlight\":\"shiki\",\"shikiConfig\":{\"langs\":[],\"langAlias\":{},\"theme\":\"github-dark\",\"themes\":{},\"wrap\":false,\"transformers\":[]},\"remarkPlugins\":[],\"rehypePlugins\":[],\"remarkRehype\":{},\"gfm\":true,\"smartypants\":true},\"security\":{\"checkOrigin\":true},\"env\":{\"schema\":{\"TOKEN_GITHUB_COMMIT\":{\"context\":\"server\",\"access\":\"secret\",\"optional\":false,\"default\":\"GitHub Token API Stream\",\"type\":\"string\"}},\"validateSecrets\":true},\"experimental\":{\"clientPrerender\":true,\"contentIntellisense\":true,\"responsiveImages\":false,\"serializeConfig\":false},\"legacy\":{\"collections\":false}}"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"_variables": { | ||
"lastUpdateCheck": 1736912697313 | ||
"lastUpdateCheck": 1738865233688 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
.Color { | ||
position: relative; | ||
overflow: hidden; | ||
} | ||
|
||
.Color { | ||
&::before { | ||
content: ""; | ||
position: absolute; | ||
top: 0; | ||
width: 300%; | ||
height: 100%; | ||
background: linear-gradient( | ||
to right, | ||
rgb(227, 224, 219) 0%, | ||
rgb(227, 224, 219) 66.66%, | ||
white 66.66%, | ||
white 100% | ||
); | ||
animation: 8s infinite alternate ease-in; | ||
} | ||
|
||
&.Left::before { | ||
left: 0; | ||
animation-name: LeftSlide; | ||
} | ||
|
||
&.Right::before { | ||
right: 0; | ||
animation-name: RightSlide; | ||
} | ||
} | ||
|
||
@keyframes LeftSlide { | ||
0% { | ||
transform: translateX(0); | ||
} | ||
|
||
45% { | ||
transform: translateX(-33.33%); | ||
} | ||
|
||
100% { | ||
transform: translateX(-66.66%); | ||
} | ||
} | ||
|
||
@keyframes RightSlide { | ||
0% { | ||
transform: translateX(0); | ||
} | ||
|
||
45% { | ||
transform: translateX(33.33%); | ||
} | ||
|
||
100% { | ||
transform: translateX(66.66%); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...stro_type_script_index_0_lang.CEGt5QMY.js → ...stro_type_script_index_0_lang.DtvbEmm4.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.