default_skin.css 531B

1234567891011121314151617181920212223242526
  1. /*
  2. * this file is used to declare default tracim skin before bootstrap.min.css so that the bootstrap.css file generated by tracim_theme
  3. * can override them withtout adding specificity, just by rules declaration order
  4. */
  5. .bg-primary {
  6. background-color: #555;
  7. }
  8. .bg-secondary {
  9. background-color: #F5F5F5;
  10. }
  11. .textMenuColor {
  12. color: #ddd;
  13. }
  14. .textMenuClickedBgColor {
  15. background: #beebff;
  16. }
  17. .textMenuClickedColor {
  18. color: #333;
  19. }
  20. .textMenuBgColor-hover {
  21. background-color: #e7f4f9;
  22. }
  23. .textMenuColor-hover {
  24. color: #333;
  25. }