2022-09-30 16:02:17 +00:00
|
|
|
#bitcoin-to-be svg{
|
|
|
|
|
max-height: 50vh;
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-28 11:55:52 +00:00
|
|
|
section#bitcoin {
|
2022-10-21 14:19:18 +00:00
|
|
|
background-image: linear-gradient(180deg, var(--c-bitcoin) 0%, var(--c-lightning) 100%);
|
2022-07-28 11:55:52 +00:00
|
|
|
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-10-21 14:19:18 +00:00
|
|
|
// gradient to fade away from bkg
|
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-10-21 14:19:18 +00:00
|
|
|
// gradient to fade back to bkg
|
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
|
|
|
|
2022-10-21 14:19:18 +00:00
|
|
|
// grid of squares (svg)
|
|
|
|
|
#grid-blend-top, #grid-blend-bottom {
|
2022-07-28 11:55:52 +00:00
|
|
|
// 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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
max-width: min(35ch, 50vw);
|
2022-09-14 16:05:58 +00:00
|
|
|
em {
|
2022-10-21 14:19:18 +00:00
|
|
|
color: var(--c-text-primary);
|
2022-07-28 11:55:52 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
2022-10-21 14:19:18 +00:00
|
|
|
.subsection--bitcoin {
|
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-10-21 14:19:18 +00:00
|
|
|
.subsection--lightning {
|
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;
|
2022-10-07 13:37:57 +00:00
|
|
|
box-shadow: 0 2rem 3rem var(--c-shadow-3);
|
2022-09-14 16:05:58 +00:00
|
|
|
|
|
|
|
|
&.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;
|
2022-10-21 14:19:18 +00:00
|
|
|
background-color: var(--c-bkg-offset);
|
2022-09-18 15:37:00 +00:00
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|