Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <div id="form">
  2. @using (Html.BeginForm("Foo", "Boo", FormMethod.Post, new { @class = "form-horizontal" }))
  3. {
  4. //form here
  5. }
  6. </div>
  7.  
  8. <!-- container-->
  9. <div class="main-content">
  10. <div class="container">
  11. @RenderBody()
  12. </div>
  13. </div>
  14. <!-- /container -->
  15.  
  16. .main-content {
  17. padding: 20px;
  18. margin: 0;
  19. width: 100%;
  20. }
  21.  
  22. .container {
  23. margin: 0 auto;
  24. width: 100%;
  25. }
  26.  
  27. #form {
  28. margin: 0 auto;
  29. }
  30.  
  31. .form-horizontal {
  32. max-width: 700px;
  33. width: 100%;
  34. background-color: #ffffff;
  35. font: bold 14px sans-serif;
  36. margin: 0 auto;
  37. border-width: 150px;
  38. border-style: solid;
  39. border-image: url(../../images/Iphone.png) 25%;
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement