feat(layout): center header elements on mobile
This commit is contained in:
parent
7b99852f5f
commit
57c0b460e7
16
style.css
16
style.css
|
@ -154,6 +154,7 @@ svg {
|
||||||
grid-column: full;
|
grid-column: full;
|
||||||
grid-template-columns: inherit;
|
grid-template-columns: inherit;
|
||||||
padding: 4em 0;
|
padding: 4em 0;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.masthead > *,
|
.masthead > *,
|
||||||
|
@ -163,9 +164,8 @@ section {
|
||||||
|
|
||||||
.masthead > img {
|
.masthead > img {
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
grid-column: side;
|
margin: 0 auto;
|
||||||
grid-row: span 2;
|
max-width: 12em;
|
||||||
max-width: 100%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
article > * + *,
|
article > * + *,
|
||||||
|
@ -225,11 +225,21 @@ blockquote > * + * {
|
||||||
margin-bottom: inherit;
|
margin-bottom: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.masthead {
|
||||||
|
text-align: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
.masthead > *,
|
.masthead > *,
|
||||||
section {
|
section {
|
||||||
grid-column: content;
|
grid-column: content;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.masthead img {
|
||||||
|
grid-column: side;
|
||||||
|
grid-row: span 2;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
section {
|
section {
|
||||||
display: contents;
|
display: contents;
|
||||||
}
|
}
|
||||||
|
|
|
@ -170,6 +170,7 @@ svg {
|
||||||
grid-column: full;
|
grid-column: full;
|
||||||
grid-template-columns: inherit;
|
grid-template-columns: inherit;
|
||||||
padding: 4em 0;
|
padding: 4em 0;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.masthead > *,
|
.masthead > *,
|
||||||
|
@ -179,9 +180,8 @@ section {
|
||||||
|
|
||||||
.masthead > img {
|
.masthead > img {
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
grid-column: side;
|
margin: 0 auto;
|
||||||
grid-row: span 2;
|
max-width: 12em;
|
||||||
max-width: 100%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
article > * + *,
|
article > * + *,
|
||||||
|
@ -241,11 +241,21 @@ blockquote > * + * {
|
||||||
margin-bottom: inherit;
|
margin-bottom: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.masthead {
|
||||||
|
text-align: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
.masthead > *,
|
.masthead > *,
|
||||||
section {
|
section {
|
||||||
grid-column: content;
|
grid-column: content;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.masthead img {
|
||||||
|
grid-column: side;
|
||||||
|
grid-row: span 2;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
section {
|
section {
|
||||||
display: contents;
|
display: contents;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue