summaryrefslogblamecommitdiff
path: root/css/navigationBar.scss
blob: 0c2d7a37cc248fc1f5491f6d80623f74342d7b56 (plain) (tree)
1
2
3
4
5
6
                   

                                           
                                

                                           
















                                                          
                                                                








                                                                  
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;
				}
			}
		}
	}
}