Developing a legal IDE based on Atom
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
899 B

  1. // GitHub.com styles
  2. // These are the GitHub Flavored Markdown styles also found on github.com.
  3. // They can be anabled in the markdown-preview settings by turning on "Use GitHub.com styles".
  4. @import (reference) "../assets/primer-markdown";
  5. .markdown-preview[data-use-github-style] {
  6. // Includes GitHub.com styles from `../assets/primer-markdown.less`.
  7. // Source: https://github.com/primer/primer/tree/master/modules/primer-markdown
  8. .markdown-body();
  9. // The styles below override/complement the GitHub.com styles
  10. // It's needed because some markup or global styles are different
  11. padding: 30px;
  12. font-size: 16px;
  13. color: #333;
  14. background-color: #fff;
  15. overflow: scroll;
  16. a {
  17. color: #337ab7;
  18. }
  19. code {
  20. color: inherit;
  21. }
  22. atom-text-editor {
  23. padding: .8em 1em;
  24. margin-bottom: 1em;
  25. font-size: .85em;
  26. border-radius: 4px;
  27. overflow: auto;
  28. }
  29. }