forked from M3-Academy/practice-time-shopping-list
15 lines
207 B
CSS
15 lines
207 B
CSS
|
*{
|
||
|
box-sizing: border-box;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
body,
|
||
|
input,
|
||
|
button{
|
||
|
font-family: 'Roboto', sans-serif;
|
||
|
font-size: 16px;
|
||
|
color: var(--gray-500);
|
||
|
}
|
||
|
button{
|
||
|
cursor: pointer;
|
||
|
}
|