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

17 lines
195 B
CSS
Raw Normal View History

2022-11-17 20:42:33 +00:00
* {
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;
}