user-dashboard.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. body {
  2. font-size: .875rem;
  3. }
  4. .feather {
  5. width: 16px;
  6. height: 16px;
  7. vertical-align: text-bottom;
  8. }
  9. .sidebar {
  10. position: fixed;
  11. top: 0;
  12. bottom: 0;
  13. left: 0;
  14. z-index: 100; /* Behind the navbar */
  15. padding: 0;
  16. box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
  17. }
  18. .sidebar-sticky {
  19. position: -webkit-sticky;
  20. position: sticky;
  21. top: 48px; /* Height of navbar */
  22. height: calc(100vh - 48px);
  23. padding-top: .5rem;
  24. overflow-x: hidden;
  25. overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
  26. }
  27. .sidebar .nav-link {
  28. font-weight: 500;
  29. color: #333;
  30. }
  31. .sidebar .nav-link .feather {
  32. margin-right: 4px;
  33. color: #999;
  34. }
  35. .sidebar .nav-link.active {
  36. color: #007bff;
  37. }
  38. .sidebar .nav-link:hover .feather,
  39. .sidebar .nav-link.active .feather {
  40. color: inherit;
  41. }
  42. .sidebar-heading {
  43. font-size: .75rem;
  44. text-transform: uppercase;
  45. }
  46. /*
  47. * Navbar
  48. */
  49. .navbar-brand {
  50. padding-top: .75rem;
  51. padding-bottom: .75rem;
  52. font-size: 1rem;
  53. background-color: rgba(0, 0, 0, .25);
  54. box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
  55. }
  56. .navbar .form-control {
  57. padding: .75rem 1rem;
  58. border-width: 0;
  59. border-radius: 0;
  60. }
  61. .form-control-dark {
  62. color: #fff;
  63. background-color: rgba(255, 255, 255, .1);
  64. border-color: rgba(255, 255, 255, .1);
  65. }
  66. .form-control-dark:focus {
  67. border-color: transparent;
  68. box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
  69. }
  70. .border-top { border-top: 1px solid #e5e5e5; }
  71. .border-bottom { border-bottom: 1px solid #e5e5e5; }
  72. .card-body .table td, .table th {
  73. padding: .5rem;
  74. vertical-align: top;
  75. border-top: 0px solid #dee2e6;
  76. color: white;
  77. font-size: larger;
  78. font-family: serif;
  79. font-weight: bold;
  80. }
  81. .card-title span {
  82. float: right;
  83. }
  84. .card-body {
  85. padding: .5rem;
  86. }
  87. .img-thumbnail {
  88. padding: 1.5rem;
  89. background-color: #fff;
  90. border: 1px solid #dee2e6;
  91. border-radius: .25rem;
  92. max-width: 100%;
  93. height: auto;
  94. }
  95. .location-detail {
  96. padding: 1rem;
  97. font-size: 1rem;
  98. font-family: revert;
  99. }
  100. .location-detail p {
  101. margin-top: .25rem;
  102. margin-bottom: 0rem;
  103. }
  104. .location-detail i {
  105. margin-right: .5rem;
  106. }
  107. .table-info th, tr {
  108. color: black;
  109. text-align: center;
  110. font-size: medium;
  111. font-family: revert;
  112. font-weight: unset;
  113. }
  114. .rounded-circle {
  115. height: 60px;
  116. margin-right: 1rem;
  117. }
  118. .review-content {
  119. display: flex;
  120. border: 1px solid #e2e2e2;
  121. padding: 1rem;
  122. margin: 1rem;
  123. background: #f7f9f9;
  124. }
  125. .review-header-divider {
  126. margin-bottom: 10px;
  127. border-bottom: 1px solid #dadada;
  128. }