_Select.cshtml 519 B

12345678910111213141516171819
  1. @using WeApp.Views.Shared.Camp
  2. @{
  3. SelectCampModel selectModel = ViewBag.Select;
  4. ViewBag.Title = selectModel.PageTitle;
  5. }
  6. <style>
  7. .content-wrapper {
  8. padding: 0 !important;
  9. background-image: url(/Content/Image/ExerciseV2/bg.jpg);
  10. background-repeat: no-repeat;
  11. background-size: 100% 100%;
  12. overflow: hidden;
  13. }
  14. .body {
  15. width: 100% !important;
  16. height: calc(100vh - 140px) !important;
  17. }
  18. </style>
  19. @Html.Partial("Camp/_SelectCampV2",selectModel)