_variables.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. // configures general layout for detailed layout configuration please refer to the css files
  2. // navi frame
  3. // navi frame width
  4. $navi-width: 240px;
  5. // foreground (text) color for the navi frame
  6. $navi-color: #000;
  7. // background for the navi frame
  8. $navi-background: #d0dce0;
  9. // foreground (text) color of the pointer in navi frame
  10. $navi-pointer-color: #000;
  11. // background of the pointer in navi frame
  12. $navi-pointer-background: #99c;
  13. // main frame
  14. // foreground (text) color for the main frame
  15. $main-color: #000;
  16. // foreground (text) color of the pointer in browse mode
  17. $browse-pointer-color: #000;
  18. // background of the pointer in browse mode
  19. $browse-pointer-background: #cfc;
  20. // foreground (text) color of the marker (visually marks row by clicking on it)
  21. // in browse mode
  22. $browse-marker-color: #000;
  23. // background of the marker (visually marks row by clicking on it) in browse mode
  24. $browse-marker-background: #fc9;
  25. // tables
  26. // border
  27. $border: 0;
  28. // table header and footer color
  29. $th-background: #d3dce3;
  30. // table header and footer background
  31. $th-color: #000;
  32. // table data row background
  33. $bg-one: #e5e5e5;
  34. // table data row background, alternate
  35. $bg-two: #d5d5d5;
  36. // Bootstrap
  37. // ---------
  38. // Body
  39. $body-bg: #f5f5f5;
  40. $body-color: $main-color;
  41. // Typography
  42. $font-family-base: sans-serif;
  43. $font-family-monospace: monospace;
  44. $font-size-base: 0.82rem;
  45. // Tables
  46. $table-cell-padding: 0.1em 0.5em;
  47. $table-cell-padding-sm: $table-cell-padding;
  48. $table-striped-order: even;
  49. $table-bg: #f5f5f5;
  50. $table-accent-bg: $bg-two;
  51. $table-hover-bg: $browse-pointer-background;
  52. $table-hover-color: $browse-pointer-color;
  53. $table-head-color: $th-color;
  54. $table-head-bg: $th-background;
  55. // Dropdowns
  56. $dropdown-padding-y: 0;
  57. $dropdown-item-padding-y: 0;
  58. $dropdown-item-padding-x: 0;
  59. // Navbar
  60. $enable-transitions: false;
  61. $enable-caret: false;
  62. $navbar-padding-y: 0;
  63. $navbar-padding-x: 0;
  64. $navbar-nav-link-padding-x: 2px;
  65. $navbar-nav-link-padding-y: 2px;
  66. $navbar-light-color: #00f;
  67. $navbar-light-hover-color: #f00;
  68. $navbar-light-active-color: #00f;
  69. $navbar-light-disabled-color: #00f;
  70. // Card
  71. $card-border-radius: 0;
  72. $card-border-color: $main-color;
  73. $card-cap-bg: $th-background;
  74. $card-bg: $bg-one;
  75. $card-spacer-y: 0.5em;
  76. $card-spacer-x: 0.5em;
  77. // Breadcrumbs
  78. $breadcrumb-padding-y: 0.1rem;
  79. $breadcrumb-margin-bottom: 0;
  80. $breadcrumb-bg: white;
  81. $breadcrumb-divider-color: inherit;
  82. $breadcrumb-divider: quote("»");
  83. $breadcrumb-border-radius: 0;
  84. // Alert
  85. $alert-margin-bottom: 0.2em;
  86. $alert-border-radius: 0;
  87. $alert-border-width: 2px;
  88. // List group
  89. $list-group-bg: inherit;
  90. $list-group-item-padding-x: 0;
  91. $list-group-item-padding-y: 0;
  92. // Modals
  93. $modal-content-border-radius: 0;
  94. $modal-header-border-color: #000;
  95. $modal-inner-padding: 0.75rem;
  96. $modal-footer-margin-between: 0.1rem;
  97. $modal-header-padding-y: 0.4rem;