_variables.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. // background for the main frame
  17. $main-background: #f5f5f5;
  18. // foreground (text) color of the pointer in browse mode
  19. $browse-pointer-color: #000;
  20. // background of the pointer in browse mode
  21. $browse-pointer-background: #cfc;
  22. // foreground (text) color of the marker (visually marks row by clicking on it)
  23. // in browse mode
  24. $browse-marker-color: #000;
  25. // background of the marker (visually marks row by clicking on it) in browse mode
  26. $browse-marker-background: #fc9;
  27. // fonts
  28. // the font family as a valid css font family value, if not set the browser default will be
  29. // used (depending on browser, DTD and system settings)
  30. $font-family: sans-serif;
  31. // fixed width font family, used in textarea
  32. $font-family-fixed: monospace;
  33. // tables
  34. // border
  35. $border: 0;
  36. // table header and footer color
  37. $th-background: #d3dce3;
  38. // table header and footer background
  39. $th-color: #000;
  40. // table data row background
  41. $bg-one: #e5e5e5;
  42. // table data row background, alternate
  43. $bg-two: #d5d5d5;