wysiwyg.less 764 B

12345678910111213141516171819202122232425262728293031
  1. /* LISIBILITY */
  2. @import "fonts.less";
  3. *{font-size:14px;}
  4. div{border: 1px dashed #D4D4D4;}
  5. p:after, ul:after{content:"¬"; color:red;}
  6. h1:before, h2:before, h3:before, h4:before, h5:before, h6:before{
  7. color:blue; font-weight: normal; font-size:10px; vertical-align: super;
  8. }
  9. h1:before{content:"h1 ";}
  10. h2:before{content:"h2 ";}
  11. h3:before{content:"h3 ";}
  12. h4:before{content:"h4 ";}
  13. h5:before{content:"h5 ";}
  14. h6:before{content:"h6 ";}
  15. br:after{content:"·"; color:red; border: 1px solid #999;}
  16. /* LAYOUT AND GRAPHICS */
  17. img{height:auto; margin:0.5em 0;}
  18. p{ border: 1px dashed #848484; }
  19. div{border: 1px solid #1A1A1A;}
  20. img,p,div{ position:relative;
  21. &:before{font-size:10px; color:red; background-color: #1A1A1A; position:absolute; top:0; z-index:3000;}
  22. }