36 lines
611 B
CSS
36 lines
611 B
CSS
.gh-foot {
|
|
padding-top: 120px;
|
|
padding-bottom: 120px;
|
|
font-size: calc(1.6rem * var(--font-multiplier, 1));
|
|
text-align: center;
|
|
}
|
|
|
|
.is-font-serif .gh-foot {
|
|
font-family: var(--font-serif);
|
|
}
|
|
|
|
.gh-foot-inner {
|
|
display: grid;
|
|
gap: 32px;
|
|
justify-content: center;
|
|
}
|
|
|
|
.gh-foot .nav {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 12px 32px;
|
|
justify-content: center;
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style-type: none;
|
|
}
|
|
|
|
.gh-copyright {
|
|
color: var(--color-secondary-text);
|
|
}
|
|
|
|
.gh-copyright a {
|
|
color: var(--color-secondary-text);
|
|
text-decoration: underline;
|
|
}
|