21 lines
221 B
CSS
21 lines
221 B
CSS
html,
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
font-family:Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.hr {
|
|
margin-top: 2rem;
|
|
margin-bottom: 2rem;
|
|
}
|