2021-11-12 20:24:15 +04:00
|
|
|
@use 'sass:math';
|
|
|
|
|
2020-05-22 13:22:23 +07:00
|
|
|
#blockchain-container {
|
|
|
|
position: relative;
|
|
|
|
overflow-x: scroll;
|
|
|
|
overflow-y: hidden;
|
2020-05-24 00:25:04 +07:00
|
|
|
scrollbar-width: none;
|
2020-05-30 18:04:06 +07:00
|
|
|
-ms-overflow-style: none;
|
2023-09-15 17:11:52 +02:00
|
|
|
width: 100%;
|
2023-08-23 19:59:54 +09:00
|
|
|
|
|
|
|
transform: translateX(0px);
|
|
|
|
transition: transform 0;
|
|
|
|
|
|
|
|
&.menu-open {
|
|
|
|
transform: translateX(-112.5px);
|
|
|
|
transition: transform 0.25s;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.menu-closing {
|
|
|
|
transform: translateX(0px);
|
|
|
|
transition: transform 0.25s;
|
|
|
|
}
|
2023-09-15 17:11:52 +02:00
|
|
|
|
|
|
|
&.with-menu {
|
|
|
|
width: calc(100% + 120px);
|
|
|
|
}
|
2020-05-30 18:04:06 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
#blockchain-container::-webkit-scrollbar {
|
2021-11-09 22:25:03 -03:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2023-01-26 11:55:26 -06:00
|
|
|
.blockchain-wrapper {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.reset-scroll {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
font-size: 50px;
|
|
|
|
z-index: 10;
|
|
|
|
cursor: pointer;
|
|
|
|
opacity: 0.8;
|
|
|
|
transition: opacity 500ms;
|
|
|
|
background: radial-gradient(#1d1f31 0%, transparent 50%);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 300ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.hidden {
|
|
|
|
opacity: 0;
|
|
|
|
cursor: inherit;
|
|
|
|
pointer-events: none;
|
|
|
|
transition: opacity 500ms;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.time-ltr .reset-scroll{
|
|
|
|
right: 10px;
|
|
|
|
transform: translateY(-50%) rotateZ(180deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.time-rtl .reset-scroll {
|
|
|
|
left: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-09 22:25:03 -03:00
|
|
|
.warning-label {
|
2021-11-12 20:24:15 +04:00
|
|
|
position: relative;
|
2021-11-09 22:25:03 -03:00
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 12px;
|
|
|
|
padding: 6px 4px;
|
|
|
|
margin-top: -10px;
|
|
|
|
}
|
|
|
|
// Fireworks
|
|
|
|
|
|
|
|
$particles: 50;
|
|
|
|
$width: 500;
|
|
|
|
$height: 500;
|
|
|
|
|
|
|
|
// Create the explosion...
|
2022-07-19 01:57:17 +04:00
|
|
|
|
2021-11-09 22:25:03 -03:00
|
|
|
@mixin keyframes ($animationName) {
|
|
|
|
@-webkit-keyframes #{$animationName} {
|
|
|
|
@content;
|
|
|
|
}
|
|
|
|
|
|
|
|
@-moz-keyframes #{$animationName} {
|
|
|
|
@content;
|
|
|
|
}
|
|
|
|
|
|
|
|
@-o-keyframes #{$animationName} {
|
|
|
|
@content;
|
|
|
|
}
|
|
|
|
|
|
|
|
@-ms-keyframes #{$animationName} {
|
|
|
|
@content;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes #{$animationName} {
|
|
|
|
@content;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin animation-delay ($settings) {
|
|
|
|
-moz-animation-delay: $settings;
|
|
|
|
-webkit-animation-delay: $settings;
|
|
|
|
-o-animation-delay: $settings;
|
|
|
|
-ms-animation-delay: $settings;
|
|
|
|
animation-delay: $settings;
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin animation-duration ($settings) {
|
|
|
|
-moz-animation-duration: $settings;
|
|
|
|
-webkit-animation-duration: $settings;
|
|
|
|
-o-animation-duration: $settings;
|
|
|
|
-ms-animation-duration: $settings;
|
|
|
|
animation-duration: $settings;
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin animation ($settings) {
|
|
|
|
-moz-animation: $settings;
|
|
|
|
-webkit-animation: $settings;
|
|
|
|
-o-animation: $settings;
|
|
|
|
-ms-animation: $settings;
|
|
|
|
animation: $settings;
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin transform ($settings) {
|
|
|
|
transform: $settings;
|
|
|
|
-moz-transform: $settings;
|
|
|
|
-webkit-transform: $settings;
|
|
|
|
-o-transform: $settings;
|
|
|
|
-ms-transform: $settings;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin:0;
|
|
|
|
padding:0;
|
|
|
|
background: #000;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pyro > .before, .pyro > .after {
|
|
|
|
z-index: 100;
|
|
|
|
position: absolute;
|
|
|
|
width: 5px;
|
|
|
|
height: 5px;
|
|
|
|
border-radius: 50%;
|
|
|
|
@include animation((1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards));
|
|
|
|
}
|
|
|
|
|
|
|
|
.pyro > .after {
|
|
|
|
@include animation-delay((1.25s, 1.25s, 1.25s));
|
|
|
|
@include animation-duration((1.25s, 1.25s, 6.25s));
|
|
|
|
}
|
|
|
|
|
2022-07-19 01:57:17 +04:00
|
|
|
@keyframes bang{
|
|
|
|
to{
|
|
|
|
box-shadow:-314.6666666667px -362.6666666667px red,-51.6666666667px 32.3333333333px #ff3700,-354.6666666667px -264.6666666667px #7b00ff,-319.6666666667px -73.6666666667px #00f7ff,-135.6666666667px -154.6666666667px #00ff48,57.3333333333px -402.6666666667px #0d00ff,-126.6666666667px -121.6666666667px #00ff7b,-335.6666666667px -5.6666666667px #00fff2,-291.6666666667px -.6666666667px #4f0,-126.6666666667px -187.6666666667px #7f0,-413.6666666667px -224.6666666667px #00ffbf,-283.6666666667px -391.6666666667px #00ff3c,-340.6666666667px -345.6666666667px #02f,-168.6666666667px -179.6666666667px #eaff00,7.3333333333px -153.6666666667px #26ff00,-175.6666666667px -234.6666666667px #8400ff,-324.6666666667px -254.6666666667px #0048ff,-335.6666666667px -9.6666666667px #00ff59,-304.6666666667px -8.6666666667px #001eff,-331.6666666667px -44.6666666667px #3f0,.3333333333px -49.6666666667px #0fc,-370.6666666667px -60.6666666667px #0015ff,29.3333333333px -13.6666666667px #8cff00,-168.6666666667px -281.6666666667px #f80,-48.6666666667px -61.6666666667px #f0b,33.3333333333px -113.6666666667px #ff00e1,-193.6666666667px -196.6666666667px #ff7b00,-14.6666666667px -24.6666666667px #ff0037,-149.6666666667px -273.6666666667px #0fa,-19.6666666667px -63.6666666667px #ff0004,13.3333333333px -227.6666666667px #7f0,-265.6666666667px -43.6666666667px #ff4800,-121.6666666667px -95.6666666667px #bfff00,-241.6666666667px -90.6666666667px #6200ff,-307.6666666667px -231.6666666667px #ff0062,78.3333333333px -128.6666666667px #ffbf00,27.3333333333px 44.3333333333px #95ff00,-81.6666666667px 6.3333333333px #ffc800,-343.6666666667px -247.6666666667px #2f0,-225.6666666667px -250.6666666667px #08f,-9.6666666667px -243.6666666667px #ff1a00,83.3333333333px -409.6666666667px #04f,-380.6666666667px -331.6666666667px #84ff00,-103.6666666667px -51.6666666667px #f02,-174.6666666667px -169.6666666667px #ffc800,20.3333333333px -191.6666666667px #ff0059,-40.6666666667px -55.6666666667px #0400ff,-199.6666666667px -66.6666666667px #ffd500,-358.6666666667px -5.6666666667px #0051ff,-84.6666666667px -289.6666666667px #f7ff00,-193.6666666667px -184.6666666667px #80f
|
2021-11-09 22:25:03 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@include keyframes(gravity) {
|
|
|
|
to {
|
|
|
|
@include transform(translateY(200px));
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@include keyframes(position) {
|
|
|
|
0%, 19.9% {
|
|
|
|
margin-top: 10%;
|
|
|
|
margin-left: 40%;
|
|
|
|
}
|
|
|
|
20%, 39.9% {
|
|
|
|
margin-top: 40%;
|
|
|
|
margin-left: 30%;
|
|
|
|
}
|
|
|
|
40%, 59.9% {
|
|
|
|
margin-top: 20%;
|
|
|
|
margin-left: 70%
|
|
|
|
}
|
|
|
|
60%, 79.9% {
|
|
|
|
margin-top: 30%;
|
|
|
|
margin-left: 20%;
|
|
|
|
}
|
|
|
|
80%, 99.9% {
|
|
|
|
margin-top: 30%;
|
|
|
|
margin-left: 80%;
|
|
|
|
}
|
2020-02-16 22:15:07 +07:00
|
|
|
}
|