practice-time-shopping-list.../styles/global.css
2022-11-12 16:30:48 -03:00

16 lines
322 B
CSS

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
*{
margin: 0;
padding: 0;
text-decoration: none;
box-sizing: border-box;
}
body,input,button{
font-family: 'Roboto', sans-serif;
font-size: 16px;
color: var(--gray-500);
}
button {
cursor: pointer;
}