2019-07-21 17:59:47 +03:00
|
|
|
#divider {
|
2022-08-29 19:02:22 +02:00
|
|
|
width: 2px;
|
2020-02-16 22:15:07 +07:00
|
|
|
height: 200px;
|
2019-07-21 17:59:47 +03:00
|
|
|
left: 0;
|
2020-02-16 22:15:07 +07:00
|
|
|
top: -50px;
|
2019-07-21 17:59:47 +03:00
|
|
|
position: absolute;
|
|
|
|
margin-bottom: 120px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#divider > img {
|
|
|
|
position: absolute;
|
|
|
|
left: -100px;
|
|
|
|
top: -28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blockchain-wrapper {
|
2020-02-16 22:15:07 +07:00
|
|
|
height: 250px;
|
2021-12-19 15:20:21 +09:00
|
|
|
|
2022-09-29 22:45:40 +00:00
|
|
|
-webkit-user-select: none; /* Safari */
|
2021-12-19 15:20:21 +09:00
|
|
|
-moz-user-select: none; /* Firefox */
|
|
|
|
-ms-user-select: none; /* IE10+/Edge */
|
|
|
|
user-select: none; /* Standard */
|
2019-07-21 17:59:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.position-container {
|
|
|
|
position: absolute;
|
2022-09-29 22:45:40 +00:00
|
|
|
left: 0;
|
2020-02-24 03:42:29 +07:00
|
|
|
top: 75px;
|
2023-09-20 03:07:35 +00:00
|
|
|
transform: translateX(1280px);
|
2019-07-21 17:59:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.black-background {
|
|
|
|
background-color: #11131f;
|
|
|
|
z-index: 100;
|
|
|
|
position: relative;
|
|
|
|
}
|
2020-02-17 20:39:20 +07:00
|
|
|
|
2022-12-28 06:05:46 -06:00
|
|
|
.scroll-spacer {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 1px;
|
|
|
|
height: 1px;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2020-02-17 20:39:20 +07:00
|
|
|
.loading-block {
|
|
|
|
position: absolute;
|
|
|
|
text-align: center;
|
|
|
|
margin: auto;
|
2020-02-23 19:16:50 +07:00
|
|
|
width: 300px;
|
|
|
|
left: -150px;
|
|
|
|
top: 0px;
|
2022-09-29 22:45:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.time-toggle {
|
|
|
|
color: white;
|
2022-10-06 20:33:54 +04:00
|
|
|
font-size: 0.8rem;
|
2022-09-29 22:45:40 +00:00
|
|
|
position: absolute;
|
2022-10-06 20:33:54 +04:00
|
|
|
bottom: -1.8em;
|
2022-09-29 22:45:40 +00:00
|
|
|
left: 1px;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2022-09-30 00:42:02 +00:00
|
|
|
.blockchain-wrapper.ltr-transition .blocks-wrapper,
|
2022-10-03 21:44:55 +00:00
|
|
|
.blockchain-wrapper.ltr-transition .position-container,
|
2022-09-30 00:42:02 +00:00
|
|
|
.blockchain-wrapper.ltr-transition .time-toggle {
|
2022-09-29 22:45:40 +00:00
|
|
|
transition: transform 1s;
|
|
|
|
}
|
|
|
|
|
2022-10-03 21:44:55 +00:00
|
|
|
.blockchain-wrapper.time-ltr {
|
|
|
|
.blocks-wrapper {
|
|
|
|
transform: scaleX(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.time-toggle {
|
|
|
|
transform: translateX(-50%) scaleX(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
:host-context(.ltr-layout) {
|
|
|
|
.blockchain-wrapper.time-ltr .blocks-wrapper,
|
|
|
|
.blockchain-wrapper .blocks-wrapper {
|
|
|
|
direction: ltr;
|
|
|
|
}
|
2022-09-29 22:45:40 +00:00
|
|
|
}
|
|
|
|
|
2022-10-03 21:44:55 +00:00
|
|
|
:host-context(.rtl-layout) {
|
|
|
|
.blockchain-wrapper.time-ltr .blocks-wrapper,
|
|
|
|
.blockchain-wrapper .blocks-wrapper {
|
|
|
|
direction: rtl;
|
|
|
|
}
|
2022-02-17 22:57:10 +09:00
|
|
|
}
|