2022-07-28 11:55:52 +00:00
|
|
|
section#bitcoin {
|
|
|
|
|
background-image: linear-gradient(180deg, #f7931a 0%, #7b1af8 100%);
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: center center;
|
|
|
|
|
background-size: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 6rem;
|
2022-08-08 16:44:43 +00:00
|
|
|
position: relative;
|
|
|
|
|
z-index: -1;
|
|
|
|
|
margin-bottom: -10rem;
|
|
|
|
|
|
2022-09-14 16:05:58 +00:00
|
|
|
&::before {
|
|
|
|
|
content: "";
|
2022-08-08 16:44:43 +00:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100vh;
|
2022-09-14 16:05:58 +00:00
|
|
|
background-image: linear-gradient(#33333300, var(--c-bkg));
|
2022-08-08 16:44:43 +00:00
|
|
|
position: absolute;
|
|
|
|
|
top: -100vh;
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-14 16:05:58 +00:00
|
|
|
&::after {
|
|
|
|
|
content: "";
|
2022-08-08 16:44:43 +00:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100vh;
|
2022-09-14 16:05:58 +00:00
|
|
|
background-image: linear-gradient(var(--c-bkg), #33333300);
|
2022-08-08 16:44:43 +00:00
|
|
|
position: absolute;
|
|
|
|
|
bottom: -100vh;
|
|
|
|
|
}
|
2022-07-28 11:55:52 +00:00
|
|
|
|
|
|
|
|
#grid-blend-top {
|
|
|
|
|
// mix-blend-mode: multiply;
|
|
|
|
|
width: 100vw;
|
|
|
|
|
rect {
|
2022-08-08 16:44:43 +00:00
|
|
|
fill: var(--c-bkg);
|
|
|
|
|
stroke: var(--c-bkg);
|
2022-07-28 11:55:52 +00:00
|
|
|
stroke-width: 2px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#grid-blend-bottom {
|
|
|
|
|
width: 100vw;
|
|
|
|
|
rect {
|
2022-08-08 16:44:43 +00:00
|
|
|
fill: var(--c-bkg);
|
|
|
|
|
stroke: var(--c-bkg);
|
2022-07-28 11:55:52 +00:00
|
|
|
stroke-width: 2px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
max-width: min(35ch, 50vw);
|
2022-09-14 16:05:58 +00:00
|
|
|
em {
|
2022-07-28 11:55:52 +00:00
|
|
|
color: var(--c-1);
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-14 16:05:58 +00:00
|
|
|
.subsection {
|
2022-07-28 11:55:52 +00:00
|
|
|
padding: 0 6rem;
|
2022-09-23 15:49:15 +00:00
|
|
|
gap: 3rem;
|
2022-07-28 11:55:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.subsection:first-of-type {
|
2022-09-18 15:37:00 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2022-07-28 11:55:52 +00:00
|
|
|
place-self: flex-start;
|
|
|
|
|
margin-bottom: 6rem;
|
2022-09-23 15:49:15 +00:00
|
|
|
margin-left: 8rem;
|
2022-09-18 15:37:00 +00:00
|
|
|
align-items: flex-start;
|
2022-07-28 11:55:52 +00:00
|
|
|
}
|
2022-09-18 15:37:00 +00:00
|
|
|
.subsection:nth-of-type(2) {
|
2022-07-28 11:55:52 +00:00
|
|
|
place-self: flex-end;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: flex-end;
|
2022-09-23 15:49:15 +00:00
|
|
|
margin-right: 8rem;
|
2022-09-14 16:05:58 +00:00
|
|
|
h1,
|
|
|
|
|
p {
|
2022-07-28 11:55:52 +00:00
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-14 16:05:58 +00:00
|
|
|
#flying-icons{
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left:0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
overflow: hidden;
|
2022-09-18 15:37:00 +00:00
|
|
|
pointer-events: none;
|
2022-09-14 16:05:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.service-icon {
|
|
|
|
|
border-radius: 100%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top:0;
|
|
|
|
|
left:0;
|
|
|
|
|
z-index: -2;
|
|
|
|
|
backdrop-filter: blur(48px);
|
|
|
|
|
mix-blend-mode: soft-light;
|
|
|
|
|
box-shadow: 0 37px 50px rgb(0 0 0 / 20%);
|
|
|
|
|
|
|
|
|
|
&.service-icon--balanceofsatoshis {
|
|
|
|
|
width: 5rem;
|
2022-09-18 15:37:00 +00:00
|
|
|
z-index: -8;
|
2022-09-14 16:05:58 +00:00
|
|
|
}
|
|
|
|
|
&.service-icon--bitcoind {
|
2022-09-18 15:37:00 +00:00
|
|
|
width: 15rem;
|
2022-09-14 16:05:58 +00:00
|
|
|
}
|
|
|
|
|
&.service-icon--btc-rpc-proxy {
|
|
|
|
|
width: 9rem;
|
2022-09-18 15:37:00 +00:00
|
|
|
z-index: -4;
|
2022-09-14 16:05:58 +00:00
|
|
|
}
|
2022-09-18 15:37:00 +00:00
|
|
|
&.service-icon--btcpayserver {
|
2022-09-14 16:05:58 +00:00
|
|
|
width: 6rem;
|
2022-09-18 15:37:00 +00:00
|
|
|
z-index: -7;
|
2022-09-14 16:05:58 +00:00
|
|
|
}
|
|
|
|
|
&.service-icon--c-lightning {
|
2022-09-18 15:37:00 +00:00
|
|
|
width: 15rem;
|
2022-09-14 16:05:58 +00:00
|
|
|
}
|
|
|
|
|
&.service-icon--electrs {
|
2022-09-18 15:37:00 +00:00
|
|
|
width: 7rem;
|
|
|
|
|
background-color: var(--c-1);
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
z-index: -6;
|
2022-09-14 16:05:58 +00:00
|
|
|
}
|
|
|
|
|
&.service-icon--lightning-jet {
|
|
|
|
|
width: 6rem;
|
2022-09-18 15:37:00 +00:00
|
|
|
z-index: -7;
|
2022-09-14 16:05:58 +00:00
|
|
|
}
|
|
|
|
|
&.service-icon--lnd {
|
|
|
|
|
width: 10rem;
|
2022-09-18 15:37:00 +00:00
|
|
|
z-index: -3;
|
2022-09-14 16:05:58 +00:00
|
|
|
}
|
|
|
|
|
&.service-icon--lightning-terminal {
|
|
|
|
|
width: 7rem;
|
2022-09-18 15:37:00 +00:00
|
|
|
z-index: -6;
|
2022-09-14 16:05:58 +00:00
|
|
|
}
|
|
|
|
|
&.service-icon--lndg {
|
|
|
|
|
width: 9rem;
|
2022-09-18 15:37:00 +00:00
|
|
|
z-index: -4;
|
2022-09-14 16:05:58 +00:00
|
|
|
}
|
|
|
|
|
&.service-icon--mempool {
|
|
|
|
|
width: 8rem;
|
2022-09-18 15:37:00 +00:00
|
|
|
z-index: -5;
|
2022-09-14 16:05:58 +00:00
|
|
|
}
|
|
|
|
|
&.service-icon--ride-the-lightning {
|
|
|
|
|
width: 8rem;
|
2022-09-18 15:37:00 +00:00
|
|
|
z-index: -5;
|
2022-09-14 16:05:58 +00:00
|
|
|
}
|
|
|
|
|
&.service-icon--spark-wallet {
|
|
|
|
|
width: 7rem;
|
2022-09-18 15:37:00 +00:00
|
|
|
z-index: -6;
|
2022-09-14 16:05:58 +00:00
|
|
|
}
|
|
|
|
|
&.service-icon--specter {
|
|
|
|
|
width: 5rem;
|
2022-09-18 15:37:00 +00:00
|
|
|
z-index: -8;
|
2022-09-14 16:05:58 +00:00
|
|
|
}
|
|
|
|
|
&.service-icon--sphinx-relay {
|
|
|
|
|
width: 6rem;
|
2022-09-18 15:37:00 +00:00
|
|
|
z-index: -7;
|
2022-09-14 16:05:58 +00:00
|
|
|
}
|
|
|
|
|
&.service-icon--thunderhub {
|
|
|
|
|
width: 5rem;
|
2022-09-18 15:37:00 +00:00
|
|
|
z-index: -8;
|
2022-09-14 16:05:58 +00:00
|
|
|
}
|
|
|
|
|
}
|
2022-07-28 11:55:52 +00:00
|
|
|
}
|
2022-09-25 14:52:59 +00:00
|
|
|
|
|
|
|
|
@media only screen and (max-width: 500px) {
|
|
|
|
|
.service-icon--bitcoind {
|
|
|
|
|
width: 11rem !important;
|
|
|
|
|
}
|
|
|
|
|
.service-icon--c-lightning {
|
|
|
|
|
width: 11rem !important;
|
|
|
|
|
}
|
|
|
|
|
}
|