practice-time-shopping-list.../styles/global.css
2022-11-09 16:26:25 -03:00

17 lines
210 B
CSS

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