summaryrefslogtreecommitdiff
path: root/css/pageFooter.scss
blob: 1bfcf6781a5b8ee152483ab27d5edd6111de88e0 (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
div.pageFooter {
	margin:    1rem auto;
	max-width: $maximumPageWidth;
	min-width: $minimumPageWidth;
	text-align:center;

	p {
		& + p {
			margin-top:calc(1rem / 2);
		}

		a {
			&,&:visited {
				color:          $foregroundColour;
				text-decoration:underline;
			}

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

		em {
			font-style: normal;
			font-weight:bold;
		}
	}
}