Copy in new CSS for about page.

This commit is contained in:
David Yip 2018-03-03 11:01:24 -06:00
parent 1b8fcd4df5
commit 6176e278f4
No known key found for this signature in database
GPG key ID: 7DA0036508FCC0CC

View file

@ -15,117 +15,169 @@ $small-breakpoint: 960px;
} }
} }
.show-xs, .landing-page {
.show-sm { .grid {
display: none; display: grid;
} grid-gap: 10px;
grid-template-columns: 1fr 2fr;
grid-auto-columns: 25%;
grid-auto-rows: max-content;
.show-m { .column-0 {
display: block; display: none;
} }
@media screen and (max-width: $small-breakpoint) { .column-1 {
.hide-sm { grid-column: 1;
display: none !important; grid-row: 1;
}
.column-2 {
grid-column: 2;
grid-row: 1;
}
.column-3 {
grid-column: 3;
grid-row: 1 / 3;
}
.column-4 {
grid-column: 1 / 3;
grid-row: 2;
}
} }
.show-sm { @media screen and (max-width: $small-breakpoint) {
display: block !important; .grid {
} grid-template-columns: 40% 60%;
}
@media screen and (max-width: $column-breakpoint) { .column-0 {
.hide-xs { display: none;
display: none !important; }
}
.show-xs { .column-1 {
display: block !important; grid-column: 1;
} grid-row: 1;
}
.row { &.non-preview .landing-page__forms {
display: flex; height: 100%;
flex-wrap: wrap;
margin: 0 -5px;
@for $i from 1 through 15 {
.column-#{$i} {
box-sizing: border-box;
min-height: 1px;
flex: 0 0 percentage($i / 15);
max-width: percentage($i / 15);
padding: 0 5px;
@media screen and (max-width: $small-breakpoint) {
&-sm {
box-sizing: border-box;
min-height: 1px;
flex: 0 0 percentage($i / 15);
max-width: percentage($i / 15);
padding: 0 5px;
@media screen and (max-width: $column-breakpoint) {
max-width: 100%;
flex: 0 0 100%;
margin-bottom: 10px;
&:last-child {
margin-bottom: 0;
}
}
} }
} }
@media screen and (max-width: $column-breakpoint) { .column-2 {
max-width: 100%; grid-column: 2;
flex: 0 0 100%; grid-row: 1 / 3;
margin-bottom: 10px;
&:last-child { &.non-preview {
margin-bottom: 0; grid-column: 2;
grid-row: 1;
}
}
.column-3 {
grid-column: 1;
grid-row: 2 / 4;
}
.column-4 {
grid-column: 2;
grid-row: 3;
&.non-preview {
grid-column: 1 / 3;
grid-row: 2;
} }
} }
} }
} }
}
.column-flex { @media screen and (max-width: $column-breakpoint) {
display: flex; .grid {
flex-direction: column; grid-template-columns: auto;
}
.separator-or { .column-0 {
position: relative; display: block;
margin: 40px 0; grid-column: 1;
text-align: center; grid-row: 1;
}
&::before { .column-1 {
content: ""; grid-column: 1;
display: block; grid-row: 3;
width: 100%;
height: 0; .brand {
border-bottom: 1px solid rgba($ui-base-lighter-color, .6); display: none;
position: absolute; }
top: 50%; }
left: 0;
.column-2 {
grid-column: 1;
grid-row: 2;
.landing-page__logo,
.landing-page__call-to-action {
display: none;
}
&.non-preview {
grid-column: 1;
grid-row: 2;
}
}
.column-3 {
grid-column: 1;
grid-row: 5;
}
.column-4 {
grid-column: 1;
grid-row: 4;
&.non-preview {
grid-column: 1;
grid-row: 4;
}
}
}
} }
span { .column-flex {
display: inline-block; display: flex;
background: $ui-base-color; flex-direction: column;
font-size: 12px; }
font-weight: 500;
color: $ui-primary-color; .separator-or {
text-transform: uppercase;
position: relative; position: relative;
z-index: 1; margin: 40px 0;
padding: 0 8px; text-align: center;
cursor: default;
} &::before {
} content: "";
display: block;
width: 100%;
height: 0;
border-bottom: 1px solid rgba($ui-base-lighter-color, .6);
position: absolute;
top: 50%;
left: 0;
}
span {
display: inline-block;
background: $ui-base-color;
font-size: 12px;
font-weight: 500;
color: $ui-primary-color;
text-transform: uppercase;
position: relative;
z-index: 1;
padding: 0 8px;
cursor: default;
}
}
.landing-page {
p, p,
li { li {
font-family: 'mastodon-font-sans-serif', sans-serif; font-family: 'mastodon-font-sans-serif', sans-serif;
@ -502,7 +554,7 @@ $small-breakpoint: 960px;
display: block; display: block;
width: 80px; width: 80px;
height: 80px; height: 80px;
border-radius: $ui-avatar-border-size; border-radius: 48px;
} }
} }
@ -539,6 +591,7 @@ $small-breakpoint: 960px;
img { img {
position: static; position: static;
padding: 10px 0;
} }
@media screen and (max-width: $small-breakpoint) { @media screen and (max-width: $small-breakpoint) {
@ -558,18 +611,33 @@ $small-breakpoint: 960px;
} }
&__call-to-action { &__call-to-action {
margin-bottom: 10px;
background: darken($ui-base-color, 4%); background: darken($ui-base-color, 4%);
border-radius: 4px; border-radius: 4px;
padding: 25px 40px; padding: 25px 40px;
overflow: hidden; overflow: hidden;
.row { .row {
display: flex;
flex-direction: row-reverse;
flex-wrap: wrap;
justify-content: space-between;
align-items: center; align-items: center;
} }
.information-board__section { .row__information-board {
padding: 0; display: flex;
justify-content: flex-end;
align-items: flex-end;
.information-board__section {
flex: 1 0 auto;
padding: 0 10px;
}
}
.row__mascot {
flex: 1;
margin: 10px -50px 0 0;
} }
} }
@ -619,6 +687,8 @@ $small-breakpoint: 960px;
&__short-description { &__short-description {
.row { .row {
display: flex;
flex-wrap: wrap;
align-items: center; align-items: center;
margin-bottom: 40px; margin-bottom: 40px;
} }
@ -668,7 +738,6 @@ $small-breakpoint: 960px;
height: 100%; height: 100%;
@media screen and (max-width: $small-breakpoint) { @media screen and (max-width: $small-breakpoint) {
margin-bottom: 10px;
height: auto; height: auto;
} }
@ -717,15 +786,16 @@ $small-breakpoint: 960px;
width: 100%; width: 100%;
flex: 1 1 auto; flex: 1 1 auto;
overflow: hidden; overflow: hidden;
height: 100%;
.column-header { .column-header {
color: inherit; color: inherit;
font-family: inherit; font-family: inherit;
font-size: 16px; font-size: 16px;
padding: 15px;
line-height: inherit; line-height: inherit;
font-weight: inherit; font-weight: inherit;
margin: 0; margin: 0;
padding: 0;
} }
.column { .column {
@ -942,93 +1012,54 @@ $small-breakpoint: 960px;
} }
&.tag-page { &.tag-page {
.features { .grid {
padding: 30px 0; @media screen and (min-width: $small-breakpoint) {
grid-template-columns: 33% 67%;
}
.container-alt { .column-2 {
max-width: 820px; grid-column: 2;
grid-row: 1;
#mastodon-timeline {
margin-right: 0;
border-top-right-radius: 0;
}
.about-mastodon {
.about-hashtag {
background: darken($ui-base-color, 4%);
padding: 0 20px 20px 30px;
border-radius: 0 5px 5px 0;
.brand {
padding-top: 20px;
margin-bottom: 20px;
img {
height: 48px;
width: auto;
}
}
p {
strong {
color: $ui-secondary-color;
font-weight: 700;
}
}
.cta {
margin: 0;
.button {
margin-right: 4px;
}
}
}
.features-list {
margin-left: 30px;
margin-right: 10px;
}
}
} }
} }
@media screen and (max-width: 675px) { .brand {
.features { text-align: unset;
padding: 10px 0; padding: 0;
.container-alt { img {
display: flex; height: 48px;
flex-direction: column; width: auto;
}
}
#mastodon-timeline { .cta {
order: 2; margin: 0;
flex: 0 0 auto;
height: 60vh;
margin-bottom: 20px;
border-top-right-radius: 4px;
}
.about-mastodon { .button {
order: 1; margin-right: 4px;
flex: 0 0 auto; }
max-width: 100%; }
.about-hashtag { @media screen and (max-width: $column-breakpoint) {
background: unset; .grid {
padding: 0; .column-1 {
border-radius: 0; grid-column: 1;
grid-row: 2;
.cta {
margin: 20px 0;
}
}
.features-list {
display: none;
}
}
} }
.column-2 {
grid-column: 1;
grid-row: 1;
}
}
.brand {
margin: 0;
}
.landing-page__features {
display: none;
} }
} }
} }