12345678910111213141516171819202122232425262728 |
- *,
- *::before,
- *::after {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- button {
- border: none;
- background: none;
- }
- a {
- text-decoration: none;
- color: inherit;
- outline: none;
- cursor: pointer;
- }
- a:hover,
- a:active {
- text-decoration: none;
- }
- ul, ol {
- list-style: none;
- }
|