Skip to content

Commit

Permalink
Merge branch 'develop' into feature/gho-7-social-buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
rupl committed Dec 2, 2020
2 parents 4b2b741 + 4cb06ff commit 114c196
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 18 deletions.
Expand Up @@ -30,7 +30,7 @@
display: flex;
flex-direction: row;
align-items: center;
padding: 1.5rem 0;
padding: 1.25rem 0;
color: #1f1f1f;
text-decoration: none;
}
Expand All @@ -42,21 +42,27 @@

.gho-article-list-link__title {
flex: 1 1 auto;
font-size: 1rem;
line-height: 1.75rem;
}
@media (min-width: 768px) {
.gho-article-list-link__title {
font-size: 1.125rem;
line-height: 2rem;
}
}

.gho-article-list-link__arrow.cd-icon {
display: none; /* not visible on skinny screens */
width: 0.75rem;
height: 0.75rem;
margin: 0 0.25rem;
display: block;
flex: 0 0 auto;
width: 0.625rem;
height: 0.625rem;
margin: 0 0.25rem 0 1rem;
/* @todo should this be the same color as the links or use the UN blue? */
fill: #3a90d2; /* UN blue */
}
@media screen and (min-width: 576px) {
.gho-article-list-link__arrow.cd-icon {
display: block;
}
}

[dir='rtl'] .gho-article-list-link__arrow {
margin: 0 1rem 0 0.25rem;
transform: scale(-1, 1);
}
Expand Up @@ -24,30 +24,35 @@
.gho-section-index__pre-title {
display: block;
margin-bottom: 0.6rem;
font-size: 0.875rem;
font-size: 0.675rem;
font-weight: 700;
line-height: 0.875rem;
letter-spacing: 0.05rem;
line-height: 0.675rem;
letter-spacing: 0.15rem;
text-transform: uppercase;
color: #fff;
}
.gho-section-index__title {
margin: 0;
padding: 0;
font-size: 1.625rem;
font-weight: 700;
font-weight: 900;
line-height: 1.75rem;
color: #fff;
}
@media (min-width: 768px) {
@media (min-width: 576px) {
.gho-section-index__title {
font-size: 2.25rem;
line-height: 2.5rem;
font-size: 2.5rem;
line-height: 2.65rem;
}
}
@media (min-width: 1024px) {
.gho-section-index__pre-title {
font-size: 0.875rem;
line-height: 0.875rem;
}
.gho-section-index__title {
font-size: 3.75rem;
line-height: 3.25rem;
line-height: 3.75rem;
}
}

Expand All @@ -73,6 +78,12 @@
line-height: 2rem;
}
}
@media (min-width: 1024px) {
.gho-section-index__description {
font-size: 1.3125rem;
line-height: 2.25rem;
}
}
.gho-section-index__description p:first-child {
margin-top: 0;
}
Expand Down

0 comments on commit 114c196

Please sign in to comment.