2 Commits

Author SHA1 Message Date
renovate[bot]
c104dc1253 Update parcel monorepo to v2.15.4 2025-07-05 15:51:32 +00:00
676131dba2 Update App 2025-05-04 23:07:09 +01:00
8 changed files with 14084 additions and 1127 deletions

13061
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -17,9 +17,9 @@
"Prod": "npm run Cleanup && npm run Init && parcel build src/index.pug --dist-dir build" "Prod": "npm run Cleanup && npm run Init && parcel build src/index.pug --dist-dir build"
}, },
"devDependencies": { "devDependencies": {
"@parcel/transformer-pug": "2.13.3", "@parcel/transformer-pug": "2.14.4",
"@parcel/transformer-sass": "2.13.3", "@parcel/transformer-sass": "2.14.4",
"parcel": "^2.7.0" "parcel": "^2.14.4"
}, },
"resolutions": { "resolutions": {
"node-forge": "1.3.1" "node-forge": "1.3.1"

BIN
src/assets/profile_pic.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 KiB

View File

@@ -14,7 +14,7 @@ html(lang='en')
.container .container
.pod .pod
.glow .glow
img#profile_pic(src='https://img.fluttershub.com/RmwZPgM9wixiZZEK.png', alt='') img#profile_pic(src='assets/profile_pic.png', alt='')
h1.welcome_text.text-flicker.text-flicker-1 Phoenix/Hotaru h1.welcome_text.text-flicker.text-flicker-1 Phoenix/Hotaru
p.about_me.standard_text.text-box-glow p.about_me.standard_text.text-box-glow
.pod .pod

View File

@@ -1,3 +1,3 @@
@import "animations/bounce.scss"; @use "animations/bounce.scss";
@import "animations/flicker.scss"; @use "animations/flicker.scss";
@import "animations/slide.scss"; @use "animations/slide.scss";

View File

@@ -1,23 +1,11 @@
// @import "./bounce.scss"; // @use "./bounce.scss";
#profile_pic { // Keyframes must be declared at the top level
width: 256px; @keyframes border-pulsate {
height: 256px; 0% {
/* Safari 3-4, iOS 1-3.2, Android 1.6- */ box-shadow: none;
-webkit-border-radius: 50%;
/* Firefox 1-3.6 */
-moz-border-radius: 50%;
/* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
border-radius: 50%;
}
.glow img{
@keyframes border-pulsate {
0%{
box-shadow:none;
} }
60%{ 60% {
box-shadow: box-shadow:
inset 0 0 50px #fff, inset 0 0 50px #fff,
inset 20px 0 80px #f5f, inset 20px 0 80px #f5f,
@@ -28,15 +16,25 @@
-10px 0 80px #f0f, -10px 0 80px #f0f,
10px 0 80px #0ff; 10px 0 80px #0ff;
} }
100%{ 100% {
box-shadow:none; box-shadow: none;
} }
} }
// -webkit-animation: bounce-in-fwd 1.1s cubic-bezier(0.645, 0.045, 0.355, 1.000) both;
// animation: bounce-in-fwd 1.1s cubic-bezier(0.645, 0.045, 0.355, 1.000) both; #profile_pic {
animation: bounce-in 800ms cubic-bezier(0.645, 0.045, 0.355, 1.000) both, border-pulsate 10s infinite; width: 256px;
/* transition:all 4s ease-out; height: 256px;
/*animation-delay: 0s;
animation-play-state: running; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
// animation-fill-mode: backwards; */ -webkit-border-radius: 50%;
/* Firefox 1-3.6 */
-moz-border-radius: 50%;
/* Modern browsers */
border-radius: 50%;
}
.glow img {
animation: bounce-in 800ms cubic-bezier(0.645, 0.045, 0.355, 1.000) both, border-pulsate 10s infinite;
} }

View File

@@ -1,7 +1,7 @@
@import "components/common.scss"; @use "components/common.scss";
// @import "components/animation.scss"; // @use "components/animation.scss";
@import "components/img.scss"; @use "components/img.scss";
@import "components/footer.scss"; @use "components/footer.scss";
@import "components/animations.scss"; @use "components/animations.scss";
// @import "components/slide.scss"; // @use "components/slide.scss";
// @import "components/links.scss"; // @use "components/links.scss";

2054
yarn.lock

File diff suppressed because it is too large Load Diff