base.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. body {
  2. color: #1e375a;
  3. position: relative;
  4. }
  5. header {
  6. background-color: #205081;
  7. color: #fff;
  8. height: 56px;
  9. }
  10. header:before {
  11. background-image: linear-gradient(45deg, #28598a 25%, transparent 0, transparent 50%, #28598a 0, #28598a 75%, transparent 0, transparent);
  12. background-size: 50px 50px;
  13. bottom: 0;
  14. content: "";
  15. height: 56px;
  16. left: 0;
  17. position: absolute;
  18. right: 0;
  19. top: 0;
  20. z-index: 1;
  21. }
  22. header .container-fluid {
  23. padding-bottom: 8px;
  24. padding-top: 8px;
  25. position: relative;
  26. z-index: 2;
  27. }
  28. .sidebar .scroll,
  29. .content .scroll {
  30. padding: 15px 0px;
  31. }
  32. body,
  33. .sidebar {
  34. background-color: #eee;
  35. }
  36. .content {
  37. background-color: #fff;
  38. }
  39. .sidebar-right {
  40. border-top: 1px solid #d6d6d6;
  41. }
  42. @media (min-width: 576px) {
  43. html,
  44. body,
  45. .container,
  46. .container-fluid,
  47. .row.main,
  48. .sidebar,
  49. .content {
  50. height: 100%;
  51. }
  52. body {
  53. padding-top: 56px;
  54. }
  55. header {
  56. left: 0;
  57. position: fixed;
  58. top: 0;
  59. width: 100%;
  60. z-index: 1;
  61. }
  62. .row.main {
  63. display: block;
  64. }
  65. .sidebar {
  66. clear: both;
  67. float: left;
  68. }
  69. .content {
  70. margin-left: 33.333333%;
  71. }
  72. .sidebar .scroll,
  73. .content .scroll {
  74. height: 100%;
  75. margin: 0px -15px;
  76. overflow-y: auto;
  77. padding: 15px 15px;
  78. }
  79. .sidebars-2 .sidebar {
  80. height: 50%;
  81. }
  82. }
  83. @media (min-width: 768px) {
  84. /* Empty */
  85. }
  86. @media (min-width: 992px) {
  87. .row.main {
  88. display: flex;
  89. }
  90. .sidebar {
  91. clear: none;
  92. float: none;
  93. }
  94. .content {
  95. margin-left: auto;
  96. }
  97. .sidebar-right {
  98. border-top: none;
  99. }
  100. .sidebar-right .scroll {
  101. height: 100%;
  102. margin: 0px -15px;
  103. overflow-y: auto;
  104. padding: 15px 15px;
  105. }
  106. .sidebars-2 .sidebar {
  107. height: 100%;
  108. }
  109. }
  110. @media (min-width: 1200px) {
  111. /* Empty */
  112. }