theme.css 488 B

1234567891011121314151617181920212223242526272829303132
  1. .note-editor-theme_paragraph {
  2. font-size: 12px;
  3. }
  4. .note-editor-theme_list-ul {
  5. font-size: 12px;
  6. margin: 0;
  7. padding: 0;
  8. list-style: disc;
  9. }
  10. .note-editor-theme_list-li {
  11. margin-left: 18px;
  12. margin-right: 8px;
  13. }
  14. .note-editor-theme_link {
  15. cursor: pointer;
  16. color: #155eef;
  17. }
  18. .note-editor-theme_link:hover {
  19. text-decoration: underline;
  20. }
  21. .note-editor-theme_text-strikethrough {
  22. text-decoration: line-through;
  23. }
  24. .note-editor-theme_text-italic {
  25. font-style: italic;
  26. }