PUBLISH: Add copyright and links section to the footer

This commit is contained in:
Campbell Alden 2023-01-18 17:10:54 +09:00
parent 54e8a6413b
commit fae290a18d
48 changed files with 813 additions and 502 deletions

View file

@ -46,6 +46,7 @@
--numbers-font-weight: 400;
--numbers-font-line-height: 1.2;
--numbers-font-size: 16px;
--numbers-font-size-small: 12px;
--numbers-font-size-large: 40px;
--numbers-font-letter-spacing: -0.02em;
@ -105,6 +106,11 @@ html, body {
min-height: 100vh;
}
body {
display: flex;
flex-direction: column;
}
main {
margin: auto;
display: flex;
@ -157,6 +163,13 @@ main {
font-size: var(--numbers-font-size);
letter-spacing: var(--numbers-font-letter-spacing);
}
.numbers-small {
font-family: var(--numbers-font-family);
font-weight: var(--numbers-font-weight);
line-height: var(--numbers-font-line-height);
font-size: var(--numbers-font-size-small);
letter-spacing: var(--numbers-font-letter-spacing);
}
.numbers-large {
font-family: var(--numbers-font-family);
font-weight: var(--numbers-font-weight);
@ -229,6 +242,9 @@ a:hover {
.color\:deemphasize {
color: var(--color-deemphasize);
}
.unstyled-list {
list-style: none;
}
.navbar {
display: flex;
}
@ -341,3 +357,11 @@ li {
gap: 10px;
padding-bottom: 20px;
}
.footer {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
padding: 0 20px 20px 20px;
}