practice-time-shopping-list/styles/global.css
2022-11-17 17:42:33 -03:00

17 lines
195 B
CSS

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