_reset.scss 753 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. body {
  2. background: white;
  3. color:$color-main-text;
  4. }
  5. a{
  6. color: inherit;
  7. text-decoration: none;
  8. }
  9. a, a:focus, a:active { outline: none; }
  10. a:focus{ -moz-outline-style: none; }
  11. ul{
  12. margin:0;
  13. padding:0;
  14. li{
  15. margin:0;
  16. padding:0;
  17. list-style: none;
  18. }
  19. }
  20. h1,h2,h3,h4,h5,h6{
  21. margin:0;
  22. }
  23. p a{
  24. position: relative;
  25. &:not(.btn):after{
  26. content:'';
  27. position: absolute;
  28. top:1em; left:0;
  29. width:100%;
  30. border-bottom: 1px dotted #000;
  31. }
  32. }
  33. input[type="text"],
  34. input[type="email"],
  35. input[type="tel"],
  36. input[type="password"]{
  37. border-radius: 5px;
  38. border : 0.5px solid #aaa;
  39. padding: 0.3em 0.4em;
  40. &:focus{
  41. outline: none;
  42. // border-color: blue;
  43. box-shadow: 0 0 2px 1px $color-focus;
  44. }
  45. // outline-style: solid;
  46. // outline-width: 1px;
  47. }