dashboard.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /*
  2. * Base structure
  3. */
  4. /* Move down content because we have a fixed navbar that is 3.5rem tall */
  5. body {
  6. }
  7. /*
  8. * Typography
  9. */
  10. h1 {
  11. margin-bottom: 20px;
  12. padding-bottom: 9px;
  13. border-bottom: 1px solid #eee;
  14. }
  15. /*
  16. * Sidebar
  17. */
  18. .sidebar {
  19. bottom: 0;
  20. left: 0;
  21. z-index: 1000;
  22. padding: 20px;
  23. overflow-x: hidden;
  24. overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
  25. border-right: 1px solid #eee;
  26. }
  27. /* Sidebar navigation */
  28. .sidebar {
  29. padding-left: 0;
  30. padding-right: 0;
  31. }
  32. .sidebar .nav {
  33. margin-bottom: 20px;
  34. }
  35. .sidebar .nav-item {
  36. width: 100%;
  37. }
  38. .sidebar .nav-item + .nav-item {
  39. margin-left: 0;
  40. }
  41. .sidebar .nav-link {
  42. border-radius: 0;
  43. }
  44. /*
  45. * Dashboard
  46. */
  47. /* Placeholders */
  48. /*
  49. .placeholders {
  50. padding-bottom: 3rem;
  51. }
  52. .placeholder img {
  53. padding-top: 1.5rem;
  54. padding-bottom: 1.5rem;
  55. }
  56. */
  57. .main-liner {
  58. border-right: 2px solid #f8f9fa;
  59. margin-right: -2px;
  60. }
  61. .navbar-text {
  62. margin-right: 15px;
  63. margin-left: 15px;
  64. white-space: normal
  65. }
  66. .cont {
  67. margin-top: 1.5rem;
  68. }
  69. #top-left,
  70. #top-right,
  71. #left-left,
  72. #left-right,
  73. #front-left,
  74. #front-right {
  75. background-color: white;
  76. transition: background-color 0.5s ease;
  77. }
  78. #top-left:hover,
  79. #top-right:hover,
  80. #left-left:hover,
  81. #left-right:hover,
  82. #front-left:hover,
  83. #front-right:hover {
  84. background-color: #ddd;
  85. }
  86. .icon {
  87. width: 3%;
  88. height: 3%;
  89. }
  90. .slice-count {
  91. visibility: hidden;
  92. }