base server and base html

This commit is contained in:
lnino
2024-04-10 19:53:00 +02:00
commit e4b0fcdd9d
9 changed files with 138 additions and 0 deletions

34
assets/css/index.css Normal file
View File

@@ -0,0 +1,34 @@
body {
background-color: black;
}
.Mino{
color: white;
-webkit-animation: slide-in-left 0.9s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
animation: slide-in-left 0.9s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes slide-in-left {
0% {
-webkit-transform: translateX(-1000px);
transform: translateX(-1000px);
opacity: 0;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
opacity: 1;
}
}
@keyframes slide-in-left {
0% {
-webkit-transform: translateX(-1000px);
transform: translateX(-1000px);
opacity: 0;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
opacity: 1;
}
}

0
assets/img/fakeimg.jpg Normal file
View File