start9-landing/src/assets/styles/bitcoin.scss

182 lines
3.3 KiB
SCSS
Raw Normal View History

#bitcoin-to-be svg{
max-height: 50vh;
}
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;
&::before {
content: "";
2022-08-08 16:44:43 +00:00
width: 100%;
height: 100vh;
background-image: linear-gradient(#33333300, var(--c-bkg));
2022-08-08 16:44:43 +00:00
position: absolute;
top: -100vh;
}
&::after {
content: "";
2022-08-08 16:44:43 +00:00
width: 100%;
height: 100vh;
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);
em {
2022-07-28 11:55:52 +00:00
color: var(--c-1);
font-weight: 700;
}
}
.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 {
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;
align-items: flex-start;
2022-07-28 11:55:52 +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;
h1,
p {
2022-07-28 11:55:52 +00:00
text-align: right;
}
}
#flying-icons{
position: absolute;
top: 0;
left:0;
right: 0;
bottom: 0;
overflow: hidden;
pointer-events: none;
}
.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 2rem 3rem var(--c-shadow-3);
&.service-icon--balanceofsatoshis {
width: 5rem;
z-index: -8;
}
&.service-icon--bitcoind {
width: 15rem;
}
&.service-icon--btc-rpc-proxy {
width: 9rem;
z-index: -4;
}
&.service-icon--btcpayserver {
width: 6rem;
z-index: -7;
}
&.service-icon--c-lightning {
width: 15rem;
}
&.service-icon--electrs {
width: 7rem;
background-color: var(--c-1);
padding: 1rem;
z-index: -6;
}
&.service-icon--lightning-jet {
width: 6rem;
z-index: -7;
}
&.service-icon--lnd {
width: 10rem;
z-index: -3;
}
&.service-icon--lightning-terminal {
width: 7rem;
z-index: -6;
}
&.service-icon--lndg {
width: 9rem;
z-index: -4;
}
&.service-icon--mempool {
width: 8rem;
z-index: -5;
}
&.service-icon--ride-the-lightning {
width: 8rem;
z-index: -5;
}
&.service-icon--spark-wallet {
width: 7rem;
z-index: -6;
}
&.service-icon--specter {
width: 5rem;
z-index: -8;
}
&.service-icon--sphinx-relay {
width: 6rem;
z-index: -7;
}
&.service-icon--thunderhub {
width: 5rem;
z-index: -8;
}
}
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;
}
}