216 lines
3.2 KiB
SCSS
216 lines
3.2 KiB
SCSS
.overview {
|
|
}
|
|
|
|
.overview__ecosystem {
|
|
margin-bottom: 2rem; padding-top: 1rem;
|
|
font-size: 1rem;
|
|
|
|
@media (min-width: 701px) {
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
@media (max-width: 700px) {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
@media (min-width: 551px) {
|
|
display: flex;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.overview__ecosystem__module {
|
|
> * {
|
|
z-index: 1;
|
|
}
|
|
|
|
@media (max-width: 550px) {
|
|
&:not(:last-of-type) {
|
|
margin-bottom: 2rem;
|
|
}
|
|
}
|
|
|
|
&.lbrycard,
|
|
&.lbry,
|
|
&.applications {
|
|
position: relative;
|
|
|
|
&::after {
|
|
top: 0; left: 0;
|
|
|
|
content: "";
|
|
position: absolute;
|
|
transition: all 0.2s;
|
|
z-index: -1;
|
|
}
|
|
|
|
&:not(.active) {
|
|
height: 144px;
|
|
|
|
@media (min-width: 551px) {
|
|
@include center;
|
|
min-width: 144px;
|
|
}
|
|
|
|
@media (max-width: 550px) {
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
width: 144px;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.overview__ecosystem__module__details {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&.active {
|
|
padding: 2rem;
|
|
|
|
h2 {
|
|
font-size: 3rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
&.lbrycard {
|
|
color: $white;
|
|
|
|
&::after {
|
|
width: 100%; height: 100%;
|
|
background-color: $black;
|
|
}
|
|
}
|
|
|
|
&.lbry {
|
|
&::after {
|
|
width: 100%; height: 100%;
|
|
background-color: $teal;
|
|
}
|
|
|
|
&:not(.active)::after {
|
|
border-radius: 50%;
|
|
}
|
|
}
|
|
|
|
&.applications {
|
|
&::after {
|
|
width: 100%; height: 100%;
|
|
background-color: $yellow;
|
|
}
|
|
|
|
&:not(.active)::after {
|
|
border-top-right-radius: 20%;
|
|
border-bottom-left-radius: 20%;
|
|
}
|
|
|
|
/*
|
|
@media (min-width: 1081px) {
|
|
grid-column: 4;
|
|
grid-row: 1/3;
|
|
}
|
|
|
|
@media (max-width: 1080px) {
|
|
padding-top: 1rem;
|
|
padding-bottom: 2rem;
|
|
}
|
|
|
|
@media (min-width: 501px) and (max-width: 1080px) {
|
|
grid-row: 4;
|
|
grid-column: 1/3;
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
grid-row: 5;
|
|
}
|
|
|
|
> div {
|
|
width: 100%;
|
|
|
|
> .__title {
|
|
color: $white;
|
|
display: block;
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
*/
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
&.lighthouse {
|
|
background-color: $pink;
|
|
border-radius: 50%;
|
|
|
|
@media (min-width: 1081px) {
|
|
grid-column: 5;
|
|
grid-row: 1;
|
|
}
|
|
|
|
@media (max-width: 1080px) {
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
width: 144px;
|
|
}
|
|
|
|
@media (min-width: 501px) and (max-width: 1080px) {
|
|
grid-column: 1;
|
|
grid-row: 5;
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
grid-row: 6;
|
|
}
|
|
}
|
|
|
|
&.chainquery {
|
|
background-color: $orange;
|
|
border-radius: 50%;
|
|
|
|
@media (min-width: 1081px) {
|
|
grid-column: 5;
|
|
grid-row: 2;
|
|
}
|
|
|
|
@media (max-width: 1080px) {
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
width: 144px;
|
|
}
|
|
|
|
@media (min-width: 501px) and (max-width: 1080px) {
|
|
grid-column: 2;
|
|
grid-row: 5;
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
grid-row: 7;
|
|
}
|
|
}
|
|
*/
|
|
}
|
|
|
|
|
|
|
|
.overview__ecosystem__module__piece {
|
|
background-color: $white;
|
|
left: 10%;
|
|
line-height: 2;
|
|
position: relative;
|
|
width: 80%;
|
|
|
|
&:not(:last-of-type) {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
}
|