practice-time-shopping-list/style/global.css

18 lines
197 B
CSS

* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body,
input,
button {
font-family: "Roboto", sans-serif;
font-size: 16px;
color: var(--gray-500);
}
button {
cursor: pointer;
}