Test area for the theme and code snippet theming.

Colours sourced from Material Design Theme, matching my IDE theme

var x = "test";
function() {
	console.log(x);
}
	/**
	 * Links
	 */
	a {
	    color: $text-color;
	    text-decoration: none;

	    &:visited {
	        color: darken($brand-color, 15%);
	    }

	    &:hover {
	        color: darken($brand-color, 15%);
	        text-decoration: none;
	    }
	}

	%clearfix {

	    &:after {
	        content: "";
	        display: table;
	        clear: both;
	    }
	}