PlayUserProfile.cshtml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. @model WeOnlineApp.Controllers.UserProfileViewModel
  2. @{
  3. Layout = "~/Views/Shared/Layout/_Layout.Play.cshtml";
  4. ViewBag.Title = L("UserProfileTitle");
  5. ViewBag.PageId = "profile";
  6. }
  7. <style>
  8. .iwb-info-box .box-header, .iwb-info-box .box-footer {
  9. color: #049e9a
  10. }
  11. .btn.btn-iwb {
  12. color: #fff;
  13. background-color: #049e9a;
  14. border-color: #049e9a;
  15. box-shadow: none;
  16. }
  17. .btn.btn-default {
  18. color: #049e9a;
  19. border-color: #049e9a;
  20. }
  21. .modal .modal-header {
  22. color: #049e9a;
  23. }
  24. #avatar-modal .avatar-wrapper {
  25. border: 1px solid #049e9a;
  26. }
  27. .tooltip .tooltip-inner {
  28. background: #049e9a
  29. }
  30. .tooltip.bs-tooltip-left .arrow:before
  31. {
  32. border-left-color: #049e9a
  33. }
  34. .tooltip.bs-tooltip-right .arrow:before {
  35. border-right-color: #049e9a;
  36. }
  37. .tooltip.bs-tooltip-top.arrow:before {
  38. border-top-color: #049e9a;
  39. }
  40. .tooltip.bs-tooltip-bottom .arrow:before {
  41. border-bottom-color: #049e9a;
  42. }
  43. </style>
  44. @Html.Partial("User/_Profile", Model)