1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- @model WeOnlineApp.Controllers.UserProfileViewModel
- @{
- Layout = "~/Views/Shared/Layout/_Layout.Play.cshtml";
- ViewBag.Title = L("UserProfileTitle");
- ViewBag.PageId = "profile";
- }
- <style>
- .iwb-info-box .box-header, .iwb-info-box .box-footer {
- color: #049e9a
- }
- .btn.btn-iwb {
- color: #fff;
- background-color: #049e9a;
- border-color: #049e9a;
- box-shadow: none;
- }
- .btn.btn-default {
- color: #049e9a;
- border-color: #049e9a;
- }
- .modal .modal-header {
- color: #049e9a;
- }
- #avatar-modal .avatar-wrapper {
- border: 1px solid #049e9a;
- }
- .tooltip .tooltip-inner {
- background: #049e9a
- }
- .tooltip.bs-tooltip-left .arrow:before
- {
- border-left-color: #049e9a
- }
- .tooltip.bs-tooltip-right .arrow:before {
- border-right-color: #049e9a;
- }
- .tooltip.bs-tooltip-top.arrow:before {
- border-top-color: #049e9a;
- }
- .tooltip.bs-tooltip-bottom .arrow:before {
- border-bottom-color: #049e9a;
- }
- </style>
- @Html.Partial("User/_Profile", Model)
|