12345678910111213141516171819202122232425262728293031 |
- /* LISIBILITY */
- @import "fonts.less";
- *{font-size:14px;}
- div{border: 1px dashed #D4D4D4;}
- p:after, ul:after{content:"¬"; color:red;}
- h1:before, h2:before, h3:before, h4:before, h5:before, h6:before{
- color:blue; font-weight: normal; font-size:10px; vertical-align: super;
- }
- h1:before{content:"h1 ";}
- h2:before{content:"h2 ";}
- h3:before{content:"h3 ";}
- h4:before{content:"h4 ";}
- h5:before{content:"h5 ";}
- h6:before{content:"h6 ";}
- br:after{content:"·"; color:red; border: 1px solid #999;}
- /* LAYOUT AND GRAPHICS */
- img{height:auto; margin:0.5em 0;}
- p{ border: 1px dashed #848484; }
- div{border: 1px solid #1A1A1A;}
- img,p,div{ position:relative;
- &:before{font-size:10px; color:red; background-color: #1A1A1A; position:absolute; top:0; z-index:3000;}
-
- }
|