diff --git a/css/main.css b/css/main.css index 85d3b79..cb7f1e1 100644 --- a/css/main.css +++ b/css/main.css @@ -91,4 +91,24 @@ a:hover { margin-bottom: 35px; } +/* Install button tiles */ +.install-tile { + width: 150px; + height: 150px; + background-color: #682079; + /* add drop shadow here */ + display: inline-block; + padding: 15px; + margin-right: 25px; + color: #fff; + font-family: 'Roboto Condensed'; + /*font-weight: bold;*/ + font-size: 18px; +} +.install-tile:hover { + background-color: #932DAB; + color: #fff; + text-decoration: none; +} + diff --git a/install-dotnet.html b/install-dotnet.html index 83f166c..85d5650 100644 --- a/install-dotnet.html +++ b/install-dotnet.html @@ -26,7 +26,8 @@

Available .NET Versions

- + +
@@ -51,7 +52,8 @@ $(document).ready(function() { if (val.category == "netfx") { - $("#versions").append("
  • " + val.platform + "
  • "); + //$("#versions").append("
  • " + val.platform + "
  • "); + $("#versionsList").append(""+ val.platform +""); } }); });