aboutsummaryrefslogtreecommitdiff
path: root/src/components/Header.astro
blob: 0f91af3923842cad1559983bbe74b8f8eebe545b (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
50
51
52
53
54
55
56
---

---

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

	header {
		background-color: $colorBg;
		border-bottom: 1px solid $colorHeader;
		box-shadow: 0 5px 5px $colorBg;
		left: 0;
		line-height: 3.5em;
		opacity: 0.975;
		position: absolute;
		right: 0;
		top: 0;
	}

	nav {
		margin: auto;
		max-width: 60em;
		padding: 0 4em;
		text-align: right;

		a {
			color: $colorText;
			padding: 0 1em;

			&:visited {
				color: $colorText;
			}
		}
	}

	@media (width <=684px) {
		header {
			box-shadow: none;
			position: fixed;
		}

		nav {
			padding: 0 2em;

			span {
				display: none;
			}
		}
	}
</style>

<header>
	<nav>
		<a href="/">Home</a>
	</nav>
</header>