users.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /*========================================================
  2. DARK LAYOUT
  3. =========================================================*/
  4. #user-profile .profile-img-container {
  5. position: absolute;
  6. bottom: -3rem;
  7. left: 10%;
  8. width: 80%;
  9. }
  10. #user-profile .profile-img-container img {
  11. border: 0.3rem solid #fff;
  12. height: 85px;
  13. width: 85px;
  14. }
  15. #user-profile #profile-info .card-header i {
  16. position: relative;
  17. top: -3px;
  18. }
  19. #user-profile #profile-info .user-like i {
  20. font-size: 1.7rem;
  21. }
  22. #user-profile #profile-info .suggested-block .user-page-info p {
  23. margin-bottom: 0;
  24. font-weight: 500;
  25. }
  26. #user-profile #profile-info .suggested-block i {
  27. cursor: pointer;
  28. }
  29. #user-profile .relative {
  30. position: relative;
  31. }
  32. #user-profile .profile-header-nav {
  33. background-color: #fff;
  34. padding: 0.75rem 1rem;
  35. }
  36. #user-profile .profile-header-nav .navbar {
  37. justify-content: flex-end;
  38. }
  39. #user-profile .profile-header-nav .navbar .navbar-toggler {
  40. font-size: 1.7rem;
  41. color: #626262;
  42. }
  43. #user-profile .profile-header-nav .navbar .navbar-toggler:focus {
  44. outline: none;
  45. }
  46. #user-profile .user-latest-img {
  47. transition: all 0.2s ease-in-out;
  48. }
  49. #user-profile .user-latest-img:hover {
  50. transform: translateY(-4px) scale(1.2);
  51. z-index: 30;
  52. }
  53. #user-profile .block-element .spinner-border {
  54. border-width: 2px;
  55. }
  56. @media only screen and (min-width: 992px) {
  57. #user-profile .profile-header-nav .navbar .nav-item {
  58. padding-left: 2.25rem !important;
  59. padding-right: 2.25rem !important;
  60. }
  61. }
  62. @media only screen and (max-width: 992px) {
  63. #user-profile .user-latest-img img {
  64. width: 100%;
  65. }
  66. }
  67. @media only screen and (max-width: 991px) and (min-width: 768px) {
  68. #user-profile .profile-header-nav .navbar .nav-item {
  69. padding-left: 1.5rem !important;
  70. padding-right: 1.5rem !important;
  71. }
  72. }