Simple text editor based on tiptap. HTML format.
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.
 
 
 
 
 
 

67 lines
848 B

  1. .editor{
  2. position: relative;
  3. }
  4. .editor-main {
  5. width: 75%;
  6. margin: auto;
  7. }
  8. .editor__content {
  9. margin: auto;
  10. }
  11. /* MOTS */
  12. /*// — Mot - Accronyme*/
  13. .acronym{
  14. color: pink;
  15. }
  16. /*// — Mot - Etranger*/
  17. .foreign{
  18. color: red;
  19. }
  20. /* NOMS */
  21. /*// — Nom - Auteur - Citation*/
  22. .author-quotation{
  23. color : yellow;
  24. }
  25. /*// — Nom - Auteur - Œuvre*/
  26. .author-work{
  27. color: orange;
  28. }
  29. /*// — Nom - Marque*/
  30. .brand{
  31. color: coral;
  32. }
  33. /*// — Nom - Propre*/
  34. .proper-noun{
  35. color: darkorange;
  36. }
  37. /* NOMBRES */
  38. /*// — Numeral - Chapitre*/
  39. .chapter{
  40. color: blue;
  41. }
  42. /*// — Numeral - Date*/
  43. .date{
  44. color: aqua;
  45. }
  46. /*// — Numeral - Siecle*/
  47. .century{
  48. color: cornflowerblue;
  49. }
  50. /*TYPO */
  51. /*// — Typo - Exposant*/
  52. .superscript{
  53. color: green;
  54. }
  55. /*// — Typo - Indice*/
  56. .subscript{
  57. color:chartreuse;
  58. }
  59. /*// — Typo - Particulier*/