12345678910111213141516171819 |
- @using WeApp.Views.Shared.Camp
- @{
- SelectCampModel selectModel = ViewBag.Select;
- ViewBag.Title = selectModel.PageTitle;
- }
- <style>
- .content-wrapper {
- padding: 0 !important;
- background-image: url(/Content/Image/ExerciseV2/bg.jpg);
- background-repeat: no-repeat;
- background-size: 100% 100%;
- overflow: hidden;
- }
- .body {
- width: 100% !important;
- height: calc(100vh - 140px) !important;
- }
- </style>
- @Html.Partial("Camp/_SelectCampV2",selectModel)
|