_reset.scss 697 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. // }
  43. // outline-style: solid;
  44. // outline-width: 1px;
  45. }