mirror of
https://github.com/yusufipk/natours-react.git
synced 2026-09-11 11:06:10 +00:00
31 lines
331 B
CSS
31 lines
331 B
CSS
/*
|
|
COLORS:
|
|
|
|
Light green: #7ed56f
|
|
Medium green: #55c57a
|
|
Dark green: #28b485
|
|
|
|
*/
|
|
|
|
*,
|
|
*::after,
|
|
*::before {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: inherit;
|
|
}
|
|
|
|
html {
|
|
font-size: 62.5%;
|
|
}
|
|
|
|
body {
|
|
font-family: "Lato", sans-serif;
|
|
font-weight: 400;
|
|
line-height: 1.7;
|
|
color: #777;
|
|
padding: 3rem;
|
|
|
|
box-sizing: border-box;
|
|
}
|