dashboard.css 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. position: fixed;
  20. top: 75px;
  21. bottom: 0;
  22. left: 0;
  23. z-index: 1000;
  24. padding: 20px;
  25. overflow-x: hidden;
  26. overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
  27. border-right: 1px solid #eee;
  28. }
  29. /* Sidebar navigation */
  30. .sidebar {
  31. padding-left: 0;
  32. padding-right: 0;
  33. }
  34. .sidebar .nav {
  35. margin-bottom: 20px;
  36. }
  37. .sidebar .nav-item {
  38. width: 100%;
  39. }
  40. .sidebar .nav-item + .nav-item {
  41. margin-left: 0;
  42. }
  43. .sidebar .nav-link {
  44. border-radius: 0;
  45. }
  46. /*
  47. * Dashboard
  48. */
  49. /* Placeholders */
  50. .placeholders {
  51. padding-bottom: 3rem;
  52. }
  53. .placeholder img {
  54. padding-top: 1.5rem;
  55. padding-bottom: 1.5rem;
  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. }