changed fonts to rem

This commit is contained in:
Yusuf Ipek
2021-04-30 11:00:09 +03:00
parent 177ec52f38
commit 379b0a0a8b
4 changed files with 37 additions and 49 deletions
+11 -4
View File
@@ -7,17 +7,24 @@ Dark green: #28b485
*/
* {
*,
*::after,
*::before {
margin: 0;
padding: 0;
box-sizing: border-box;
box-sizing: inherit;
}
html {
font-size: 62.5%;
}
body {
font-family: "Lato", sans-serif;
font-weight: 400;
font-size: 16px;
line-height: 1.7;
color: #777;
padding: 30px;
padding: 3rem;
box-sizing: border-box;
}