I have downloaded the Metro CSS via Bower by including it in the Bower.json file:
"metro-ui-css": "3.0.13"
This appears to install the Metro stuff under /wwwroot/lib/metro-ui-css/build/css and also /fonts and /less folders. I have included the following references in my _Layout.cshtml file:
<environment names="Development">
<link rel="stylesheet" href="~/lib/metro-ui-css/build/css/metro.css">
And under the <head>
section::
<environment names="Development">
<script src="~/lib/metro-ui-css/build/js/metro.js"></script>
But no matter which Metro class I try to include in a View .cshtml file the Classes will not appear. Any idea what I am doing wrong and how I can get them to display?
Many thanks