1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 18:56:29 +02:00
Files
csslayout/styles/_reset.scss
Phuoc Nguyen bced6a1df5 Add layout
2021-09-27 20:32:58 +07:00

31 lines
349 B
SCSS

body {
-webkit-font-smoothing: antialiased;
color: #333;
font-family: 'Inter', sans-serif;
line-height: 1.5;
margin: 0;
}
* {
box-sizing: border-box;
}
a {
text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
}
img {
max-width: 100%;
}
ol,
ul {
list-style-type: none;
margin: 0;
padding: 0;
}