handle displaying content on larger screens better
This commit is contained in:
parent
36dbf4dc44
commit
ed81142f88
3 changed files with 53 additions and 6 deletions
|
@ -146,6 +146,7 @@ $large-breakpoint: 1760px;
|
||||||
--card-bg: var(--color-white);
|
--card-bg: var(--color-white);
|
||||||
--card-text-color: var(--color-grey-dark);
|
--card-text-color: var(--color-grey-dark);
|
||||||
--card-radius: 2px;
|
--card-radius: 2px;
|
||||||
|
--card-max-width: 1500px;
|
||||||
--card-wallet-color: var(--text-color-inverse);
|
--card-wallet-color: var(--text-color-inverse);
|
||||||
--success-msg-color: var(--color-green);
|
--success-msg-color: var(--color-green);
|
||||||
--success-msg-border: var(--color-green-blue);
|
--success-msg-border: var(--color-green-blue);
|
||||||
|
|
|
@ -153,7 +153,7 @@ button:disabled {
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn--uri-indicator {
|
.btn--uri-indicator {
|
||||||
transition: color var(--animation-duration) var(--animation-duration);
|
transition: color var(--animation-duration) var(--animation-style);
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: var(--color-light-blue);
|
color: var(--color-light-blue);
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
position: relative;
|
position: relative;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
max-width: var(--card-max-width);
|
||||||
}
|
}
|
||||||
|
|
||||||
.card > h1 {
|
.card > h1 {
|
||||||
|
@ -35,6 +36,16 @@
|
||||||
|
|
||||||
.channel-name {
|
.channel-name {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
|
||||||
|
@media only screen and (min-width: $medium-breakpoint) {
|
||||||
|
font-size: 14px;
|
||||||
|
padding-top: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: $large-breakpoint) {
|
||||||
|
font-size: 16px;
|
||||||
|
padding-top: 8px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -108,6 +119,10 @@
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
|
|
||||||
|
@media only screen and (min-width: $medium-breakpoint) {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.card__title--file {
|
.card__title--file {
|
||||||
|
@ -283,11 +298,15 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
|
|
||||||
|
@media only screen and (min-width: $medium-breakpoint) {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-row__scroll-btns {
|
.card-row__scroll-btns {
|
||||||
display: flex;
|
display: flex;
|
||||||
padding-right: $spacing-width - 10px; // page padding - 1/2 width of arrow button
|
padding-right: $spacing-width;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-row__scrollhouse {
|
.card-row__scrollhouse {
|
||||||
|
@ -299,7 +318,15 @@
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
overflow-y: visible;
|
overflow-y: visible;
|
||||||
// 31 px to handle to padding between cards
|
// 31 px to handle to padding between cards
|
||||||
width: calc((100% / 4) - 31px);
|
width: calc((100% / 4) - 34px);
|
||||||
|
|
||||||
|
@media only screen and (min-width: $medium-breakpoint) {
|
||||||
|
width: calc((100% / 6) - 29px);
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: $large-breakpoint) {
|
||||||
|
width: calc((100% / 8) - 27px);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.card:not(:first-of-type) {
|
.card:not(:first-of-type) {
|
||||||
|
@ -323,12 +350,31 @@
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
margin-bottom: 60px;
|
margin-bottom: 60px;
|
||||||
width: calc((100% / 4) - (60px / 4));
|
|
||||||
|
@media only screen and (max-width: $medium-breakpoint) {
|
||||||
|
width: calc((100% / 4) - (60px / 4)); // 60px === 20px margin-right * three cards
|
||||||
|
|
||||||
&:not(:nth-child(4n + 1)) {
|
&:not(:nth-child(4n + 1)) {
|
||||||
margin-left: 20px;
|
margin-left: 20px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: $medium-breakpoint) and (max-width: $large-breakpoint) {
|
||||||
|
width: calc((100% / 6) - (100px / 6));
|
||||||
|
|
||||||
|
&:not(:nth-child(6n + 1)) {
|
||||||
|
margin-left: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: $large-breakpoint) {
|
||||||
|
width: calc((100% / 8) - (140px / 8));
|
||||||
|
|
||||||
|
&:not(:nth-child(8n + 1)) {
|
||||||
|
margin-left: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.card__list--rewards {
|
.card__list--rewards {
|
||||||
|
|
Loading…
Reference in a new issue