diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-04-08 17:55:14 +0200 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-04-08 17:55:14 +0200 |
commit | e1a6f10bad6c235c4538a56408340fdc8bd682ab (patch) | |
tree | d1b373fe2d28433ca17fcd1a9625399682dec536 /styles | |
parent | 15df740b1e1ac31a9bb9a2f3a731b693182ebcb9 (diff) |
footer in code +/ css samples
Diffstat (limited to 'styles')
-rw-r--r-- | styles/footer.css | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/styles/footer.css b/styles/footer.css new file mode 100644 index 0000000..4760d56 --- /dev/null +++ b/styles/footer.css @@ -0,0 +1,35 @@ +.footer { + margin-top: 24px; + padding: 24px 48px; + color: var(--text); +} + +.footer .header * { + display: inline-block; + vertical-align: top; +} + +.footer .header h2 { + margin-left: 6px; +} + +.footer .header rect { + fill: var(--page-background); +} + +.footer .content { + display: grid; + grid-auto-flow: column; + grid-gap: 24px; + margin-top: 12px; +} + +.footer .content .pageLink span { + margin-left: 6px; + vertical-align: super; +} + +.footer .content .pageLink { + margin-top: 12px; + display: block; +} |