_reset.scss 414 B

1234567891011121314151617181920212223242526272829303132333435
  1. body {
  2. background: white;
  3. }
  4. a{
  5. color: inherit;
  6. text-decoration: none;
  7. }
  8. a, a:focus, a:active { outline: none; }
  9. a:focus{ -moz-outline-style: none; }
  10. ul{
  11. margin:0;
  12. padding:0;
  13. li{
  14. margin:0;
  15. padding:0;
  16. list-style: none;
  17. }
  18. }
  19. h1,h2,h3,h4,h5,h6{
  20. margin:0;
  21. }
  22. p a{
  23. position: relative;
  24. &:after{
  25. content:'';
  26. position: absolute;
  27. top:1em; left:0;
  28. width:100%;
  29. border-bottom: 1px dotted #000;
  30. }
  31. }