styles.less 938 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * Your Stylesheet
  3. *
  4. * This stylesheet is loaded when Atom starts up and is reloaded automatically
  5. * when it is changed.
  6. *
  7. * If you are unfamiliar with LESS, you can read more about it here:
  8. * http://www.lesscss.org
  9. */
  10. .tree-view {
  11. }
  12. // style the background and foreground colors on the atom-text-editor-element
  13. // itself
  14. atom-text-editor {
  15. }
  16. // To style other content in the text editor's shadow DOM, use the ::shadow
  17. // expression
  18. atom-text-editor::shadow .cursor {
  19. }
  20. atom-ternjs-type {
  21. border: 1px solid rgba(116, 124, 128, 0.9);
  22. // background: rgba(240, 248, 252, 0.9); // for light themes
  23. background: rgba(42, 63, 75, 0.9); // for dark themes
  24. }
  25. .term2 .terminal {
  26. font-family: Inconsolata, Monaco, Consolas, 'Courier New', Courier;
  27. -webkit-font-smoothing: none;
  28. background: rgba(0, 0, 0, 0.9);
  29. }
  30. atom-notifications {
  31. opacity: 0.7;
  32. }
  33. atom-notifications:hover {
  34. opacity: 1.0;
  35. }