_reset.scss 728 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. &:not(.btn):after{
  25. content:'';
  26. position: absolute;
  27. top:1em; left:0;
  28. width:100%;
  29. border-bottom: 1px dotted #000;
  30. }
  31. }
  32. input[type="text"],
  33. input[type="email"],
  34. input[type="tel"],
  35. input[type="password"]{
  36. border-radius: 5px;
  37. border : 0.5px solid #aaa;
  38. padding: 0.3em 0.4em;
  39. &:focus{
  40. outline: none;
  41. // border-color: blue;
  42. box-shadow: 0 0 2px 1px $color-focus;
  43. }
  44. // outline-style: solid;
  45. // outline-width: 1px;
  46. }