Add files via upload

This commit is contained in:
Muhammad Herdy Iskandar
2023-08-31 10:22:20 +07:00
committed by GitHub
commit fa8c61725a
34 changed files with 800 additions and 0 deletions

41
css/skilline.css Normal file
View File

@@ -0,0 +1,41 @@
/*primary color*/
.bg-cream {
background-color: #FFF2E1;
}
/*font*/
body {
font-family: 'Poppins', sans-serif;
}
.bg-yellow-500 {
background-color: #F48C06;
}
.text-yellow-500 {
color: #F48C06;
}
.floating {
animation-name: floating;
animation-duration: 3s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}
@keyframes floating {
0% { transform: translate(0, 0px); }
50% { transform: translate(0, 8px); }
100% { transform: translate(0, -0px); }
}
.floating-4 {
animation-name: floating;
animation-duration: 4s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}
@keyframes floating-4 {
0% { transform: translate(0, 0px); }
50% { transform: translate(0, 8px); }
100% { transform: translate(0, -0px); }
}
.text-darken {
color: #2F327D;
}