additional cleanup

This commit is contained in:
Tommy Parnell
2015-09-13 15:55:27 -04:00
parent 671e2c32a5
commit c1983fd862
6 changed files with 13 additions and 31 deletions

View File

@@ -22,9 +22,11 @@ select,
textarea { textarea {
max-width: 280px; max-width: 280px;
} }
.thumbnail{
height:100% .thumbnail {
} height: 100%;
#gallery{
margin-top: 50px
} }
#gallery {
margin-top: 50px;
}

View File

@@ -1,12 +1,6 @@
using System; namespace DisplayTemplateExample.Web.Models
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DisplayTemplateExample.Web.Models
{ {
public interface ITile public interface ITile
{ {
} }
} }

View File

@@ -1,9 +1,4 @@
using System; namespace DisplayTemplateExample.Web.Models
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace DisplayTemplateExample.Web.Models
{ {
public class ImageTile : ITile public class ImageTile : ITile
{ {

View File

@@ -1,9 +1,4 @@
using System; namespace DisplayTemplateExample.Web.Models
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace DisplayTemplateExample.Web.Models
{ {
public class TextTile : ITile public class TextTile : ITile
{ {

View File

@@ -1,7 +1,4 @@
using System; using System.Collections.Generic;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace DisplayTemplateExample.Web.Models namespace DisplayTemplateExample.Web.Models
{ {

View File

@@ -1,4 +1,3 @@
@model DisplayTemplateExample.Web.Models.TextTile @model DisplayTemplateExample.Web.Models.TextTile
<div class="thumbnail">@Model.Text</div>
<div class="thumbnail">@Model.Text</div>