user-dashboard.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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-family: serif;
  78. font-weight: bold;
  79. }
  80. .card-title span {
  81. float: right;
  82. }
  83. .card-body {
  84. padding: .5rem;
  85. }
  86. .img-thumbnail {
  87. padding: 1.5rem;
  88. background-color: #fff;
  89. border: 1px solid #dee2e6;
  90. border-radius: .25rem;
  91. max-width: 100%;
  92. height: auto;
  93. }
  94. .location-detail {
  95. padding: 1rem;
  96. font-size: 1rem;
  97. font-family: revert;
  98. }
  99. .location-detail p {
  100. margin-top: .25rem;
  101. margin-bottom: 0rem;
  102. }
  103. .location-detail i {
  104. margin-right: .5rem;
  105. }
  106. .table-info th, tr {
  107. color: black;
  108. text-align: center;
  109. font-size: medium;
  110. font-family: revert;
  111. font-weight: unset;
  112. }
  113. .rounded-circle {
  114. height: 60px;
  115. margin-right: 1rem;
  116. }
  117. .review-content {
  118. display: flex;
  119. border: 1px solid #e2e2e2;
  120. padding: 1rem;
  121. margin: 1rem;
  122. background: #f7f9f9;
  123. }
  124. .review-header-divider {
  125. margin-bottom: 10px;
  126. border-bottom: 1px solid #dadada;
  127. }
  128. .graph-card {
  129. background: #fff;
  130. border-radius: 2px;
  131. display: inline-block;
  132. margin: 1rem 0rem 1rem 0rem;
  133. padding:1rem;
  134. }
  135. .graph-card-shadow {
  136. box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  137. transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  138. }
  139. .graph-card-shadow:hover {
  140. box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  141. }
  142. .graph-container {
  143. display: flex;
  144. }
  145. .modal-content {
  146. padding: 1rem;
  147. }
  148. #id_nick_names {
  149. height: 4rem;
  150. }
  151. .card-body span {
  152. font-size: 1rem;
  153. }
  154. .bootstrap-datetimepicker-widget table th {
  155. height: 20px;
  156. line-height: 20px;
  157. width: 20px;
  158. color: black;
  159. font-size: small;
  160. }