85 lines
1.4 KiB
CSS
85 lines
1.4 KiB
CSS
.gh-foot {
|
|
padding-top: 8rem;
|
|
padding-bottom: 8rem;
|
|
color: var(--color-secondary-text);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.gh-foot-inner {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto 1fr;
|
|
gap: 40px;
|
|
font-size: 1.3rem;
|
|
}
|
|
|
|
.no-menu .gh-foot-inner {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 24px;
|
|
align-items: center;
|
|
}
|
|
|
|
.gh-foot-menu .nav {
|
|
display: inline-flex;
|
|
flex-wrap: wrap;
|
|
row-gap: 4px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.gh-foot-menu .nav li {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.gh-foot-menu .nav li + li::before {
|
|
padding: 0 1.2rem;
|
|
font-size: 0.9rem;
|
|
line-height: 0;
|
|
content: "•";
|
|
}
|
|
|
|
.gh-powered-by {
|
|
text-align: right;
|
|
}
|
|
|
|
.gh-foot a {
|
|
color: var(--color-secondary-text);
|
|
}
|
|
|
|
.gh-foot a:hover {
|
|
color: var(--color-darker-gray);
|
|
opacity: 1;
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
.gh-foot {
|
|
padding-top: 6.4rem;
|
|
padding-bottom: 12rem;
|
|
}
|
|
|
|
.gh-foot-inner {
|
|
grid-template-columns: 1fr;
|
|
text-align: center;
|
|
}
|
|
|
|
.gh-foot-menu .nav {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.gh-foot-menu .nav li + li {
|
|
margin-top: 0.4rem;
|
|
}
|
|
|
|
.gh-foot-menu .nav li + li::before {
|
|
display: none;
|
|
}
|
|
|
|
.gh-powered-by {
|
|
text-align: center;
|
|
}
|
|
}
|