summaryrefslogtreecommitdiff
path: root/css/header.scss
blob: c6c02139d07c0d19222d9abe68624fa57278b647 (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
#header {
	$slideDuration: 0.5s;

	--hamburgerWidth: 2rem;

	border-bottom-left-radius:  1rem;
	border-bottom-right-radius: 1rem;
	height:                     calc(100vh + 1rem);
	overflow:                   hidden;
	position:                   relative;
	width:                      100%;

	@media (pointer: coarse) {
		--hamburgerWidth: 4rem;
	}

	a {
		cursor:                pointer;
		font-weight:           bold;
		text-decoration:       underline;
		text-decoration-color: #00000000;
		transition:            text-decoration-color 0.125s;
		user-select:           none;

		&:hover {
			text-decoration-color: var(--textColour);
		}
	}

	@import "banner";
	@import "sideMenu";
}