summaryrefslogtreecommitdiff
path: root/css/navigationBar.scss
blob: 0c2d7a37cc248fc1f5491f6d80623f74342d7b56 (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
div.navigationBar {
	background-color:$foregroundColour;
	color:           $backgroundColour;
	margin:          0 auto;
	max-width:       $maximumPageWidth;
	min-width:       $minimumPageWidth;
	padding:         1rem 2rem;

	p.links {
		margin:0 auto;
		width: fit-content;

		span.link {
			font-family:$sansSerifFont;

			& + span.link::before {
				content:"\0020\00B7\0020";
			}

			a {
				font-weight:bold;

				&,&:visited {
					color:$backgroundColour;
				}

				&:hover {
					text-decoration:underline;
				}
			}
		}
	}
}