base.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. .content {
  49. height: 100%;
  50. }
  51. body {
  52. padding-top: 56px;
  53. }
  54. header {
  55. left: 0;
  56. position: fixed;
  57. top: 0;
  58. width: 100%;
  59. z-index: 1;
  60. }
  61. .row.main {
  62. display: block;
  63. }
  64. .sidebar {
  65. clear: both;
  66. float: left;
  67. }
  68. .content {
  69. margin-left: 33.333333%;
  70. }
  71. .sidebar-left .scroll,
  72. .content .scroll {
  73. height: 100%;
  74. margin: 0px -15px;
  75. overflow-y: auto;
  76. padding: 15px 15px;
  77. }
  78. }
  79. @media (min-width: 768px) {
  80. /* Empty */
  81. }
  82. @media (min-width: 992px) {
  83. .row.main {
  84. display: flex;
  85. }
  86. .sidebar {
  87. clear: none;
  88. float: none;
  89. }
  90. .content {
  91. margin-left: auto;
  92. }
  93. .sidebar-right {
  94. border-top: none;
  95. }
  96. .sidebar-right .scroll {
  97. height: 100%;
  98. margin: 0px -15px;
  99. overflow-y: auto;
  100. padding: 15px 15px;
  101. }
  102. }
  103. @media (min-width: 1200px) {
  104. /* Empty */
  105. }