aboutsummaryrefslogtreecommitdiff
path: root/src/components/Footer.astro
blob: 1219a35c6d3bc76aa5abb19ecd8ba9dcbad83e74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
import dayjs from "dayjs";
---

<style lang="scss">
	@import "../scss/_variables.scss";

	footer {
		bottom: 0;
		display: flex;
		font-size: $fontSizeBase * 0.85;
		height: 4em;
		justify-content: space-between;
		left: 0;
		padding: 1em 4em;
		position: absolute;
		right: 0;
	}

	@media (width <=684px) {
		footer {
			padding: 4em 1em 2em;
		}
	}
	ul {
		display: flex;
		justify-content: space-between;
		list-style: none;
	}

	li {
		margin-left: 2em;
	}

	a {
		color: $colorText;
		&:visited {
			color: $colorText;
		}
	}
</style>

<footer>
	<div>&copy; {dayjs().year()} <a href="mailto:valentin@popov.link">Valentin Popov</a></div>
	<ul>
		<li><a href="https://analytics.popov.link" target="_blank">Analytics</a></li>
		<li><a href="https://code.popov.link/valentineus/valentineus.github.io" target="_blank">Source Code</a></li>
	</ul>
</footer>