1234567891011121314151617181920212223242526272829303132333435 |
- body {
- background: white;
- }
- a{
- color: inherit;
- text-decoration: none;
- }
- a, a:focus, a:active { outline: none; }
- a:focus{ -moz-outline-style: none; }
- ul{
- margin:0;
- padding:0;
- li{
- margin:0;
- padding:0;
- list-style: none;
- }
- }
- h1,h2,h3,h4,h5,h6{
- margin:0;
- }
- p a{
- position: relative;
- &:after{
- content:'';
- position: absolute;
- top:1em; left:0;
- width:100%;
- border-bottom: 1px dotted #000;
- }
- }
|