New BG color, fixed start anim, and gave card rain different colors
This commit is contained in:
parent
c5bd1abc74
commit
de776c563c
4 changed files with 17 additions and 3 deletions
|
@ -93,7 +93,7 @@ module.exports = {
|
||||||
return 'imgs/notFound.png'
|
return 'imgs/notFound.png'
|
||||||
}
|
}
|
||||||
|
|
||||||
return '/cached/' + fn
|
return './cached/' + fn
|
||||||
}
|
}
|
||||||
|
|
||||||
function songStats() {
|
function songStats() {
|
||||||
|
|
|
@ -55,7 +55,7 @@ body {
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
|
|
||||||
background-color: rgb(15, 4, 45);
|
background-color: rgb(15, 4, 45);
|
||||||
background: linear-gradient(rgb(35, 4, 75), black);
|
background: linear-gradient(rgb(65, 4, 85), black);
|
||||||
|
|
||||||
background-attachment: local;
|
background-attachment: local;
|
||||||
|
|
||||||
|
|
|
@ -135,6 +135,20 @@ img:not(.project-inner > div > img):not(.activity>img) {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
animation: heightIncrease 3s;
|
||||||
|
min-height: 100vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes heightIncrease {
|
||||||
|
0% {
|
||||||
|
overflow: hidden;
|
||||||
|
min-height: 200vh;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
min-height: 300vh;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes mainText {
|
@keyframes mainText {
|
||||||
0% {
|
0% {
|
||||||
|
|
|
@ -9,7 +9,7 @@ module.exports = {
|
||||||
`
|
`
|
||||||
<style>
|
<style>
|
||||||
#card {
|
#card {
|
||||||
background-color: rgba(45, 5, 120, 0.2);
|
background-color: rgba(200, 0, 255, 0.2);
|
||||||
backdrop-filter: blur(5px);
|
backdrop-filter: blur(5px);
|
||||||
}
|
}
|
||||||
.rainStuff {
|
.rainStuff {
|
||||||
|
|
Loading…
Reference in a new issue