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

17 lines
207 B
CSS
Raw Permalink Normal View History

2022-11-08 12:35:21 +00:00
*{
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;
}