Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

215 Logo lockup #252

Merged
merged 19 commits into from
Nov 21, 2018
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
205 changes: 205 additions & 0 deletions core/css/decanter.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions core/scss/components/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
'hero/index',
'link/index',
'logo/index',
'lockup/index',
'quote/index',
'site-search/index',
'skipnav/index';
88 changes: 88 additions & 0 deletions core/scss/components/lockup/_lockup--two-lines.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
.su-lockup--two-lines {
@include grid-rows(auto auto auto auto auto);

@media #{$breakpoint-md} {
@include grid-rows(auto auto auto);
}

.su-lockup__wordmark {

@media #{$breakpoint-md} {
grid-row: 1 / span 2;
-ms-grid-row: 1;
-ms-grid-row-span: 2;
}
}

.su-lockup__pipe {

@media #{$breakpoint-md} {
grid-row: 1 / span 2;
-ms-grid-row: 1;
-ms-grid-row-span: 2;
}
}

.su-lockup__sitename-line1,
.su-lockup__sitename-line2 {
font-size: 22px;

@media #{$breakpoint-md} {
font-size: 22px;
}
}

.su-lockup__sitename-line2 {
@include padding(6px null null);
display: block;
grid-row: 5 / span 1;
-ms-grid-row: 5;
-ms-grid-row-span: 1;

@media #{$breakpoint-md} {
grid-row: 2 / span 1;
-ms-grid-row: 2;
-ms-grid-row-span: 1;
grid-column: 3 / span 1;
-ms-grid-column: 3;
-ms-grid-column-span: 1;
}
}

.su-lockup__sitename-line5 {

@media #{$breakpoint-md} {
grid-row: 3 / span 1;
-ms-grid-row: 3;
-ms-grid-row-span: 1;
}
}

.su-lockup__sitename-line1--small,
.su-lockup__sitename-line1--supersmall {
-webkit-font-smoothing: auto;
-moz-osx-font-smoothing: auto;
}

.su-lockup__sitename-line1--small {
font-size: 15px;

@media #{$breakpoint-md} {
font-size: 16px;
line-height: .5;
}
}


.su-lockup__sitename-line1--supersmall {
font-size: 13px;

@media #{$breakpoint-md} {
+ .su-lockup__sitename-line2 {
@include padding(3px null null);
font-size: 27px;
}
}
}

}
Loading