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

18 lines
197 B
CSS
Raw Normal View History

2022-11-08 16:58:11 +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;
}