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.
 
 
 
 
 
 

47 lines
827 B

  1. ul:nth-last-of-type(1),ul:nth-last-of-type(2){
  2. list-style-type: none;
  3. font-size: 1rem;
  4. line-height: 1rem;
  5. }
  6. ul:nth-of-type(1){
  7. border-bottom: 1px solid #ccc;
  8. }
  9. ul:nth-of-type(1):before{
  10. content: 'Expéditeur';
  11. display: block;
  12. color : #888;
  13. }
  14. ul:nth-of-type(2):before{
  15. content: 'Destinataire';
  16. display: block;
  17. color : #888;
  18. }
  19. .courrier-name:before{
  20. content:'Nom : ';
  21. }
  22. .courrier-address:before{
  23. content:'Adresse : ';
  24. }
  25. .courrier-zipcode:before{
  26. content:'Code postal : ';
  27. }
  28. .courrier-city:before{
  29. content:'Ville : ';
  30. }
  31. /* preview */
  32. .preview .editor__content{
  33. font-family: Courier New,Courier,Lucida Sans Typewriter;
  34. color: black;
  35. }
  36. .preview *:before,.preview ul:nth-of-type(2):before,.preview ul:nth-of-type(1):before{
  37. content: '';
  38. display: none;
  39. }