forked from M3-Academy/practice-time-shopping-list
16 lines
322 B
CSS
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;
|
|
} |