mirror of
https://github.com/Rushilwiz/HiLo.git
synced 2025-04-16 01:40:16 -04:00
72 lines
1.3 KiB
SCSS
72 lines
1.3 KiB
SCSS
@mixin animation-keyframes {
|
|
$animation-number: 0 !default !global;
|
|
$animation-number: $animation-number + 1 !global;
|
|
$name: unquote("การเคลื่อนไหวที่-#{$animation-number}");
|
|
animation-name: $name;
|
|
@at-root {
|
|
@keyframes #{$name} {
|
|
@content;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
body {
|
|
overflow-y: scroll; /* Keep scroll functionality */
|
|
-ms-overflow-style: none; /* IE and Edge */
|
|
scrollbar-width: none; /* Firefox */
|
|
}
|
|
|
|
body::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.hero {
|
|
color: white;
|
|
background-image: url("res/hero.png");
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-attachment: fixed;
|
|
|
|
height: 100vh;
|
|
}
|
|
|
|
.container .arrow {
|
|
}
|
|
|
|
.arrow {
|
|
vertical-align: bottom;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
width: 70px;
|
|
margin: 0 auto;
|
|
margin-top: 70vh;
|
|
height: 100px;
|
|
}
|
|
|
|
.arrow:after {
|
|
content: "";
|
|
margin-top: 70vh;
|
|
width: 70px;
|
|
height: 100px;
|
|
position: absolute;
|
|
background-image: url('res/arrow.svg');
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
|
|
-webkit-animation: 3s infinite ease;
|
|
animation: 3s infinite ease;
|
|
|
|
@include animation-keyframes {
|
|
0%,
|
|
100% {
|
|
top: 50px;
|
|
}
|
|
|
|
50% {
|
|
top: 80px;
|
|
}
|
|
}
|
|
}
|