24 lines
367 B
CSS
24 lines
367 B
CSS
![]() |
@font-face {
|
||
|
font-family: "Roboto";
|
||
|
font-style: normal;
|
||
|
font-weight: 400;
|
||
|
font-display: swap;
|
||
|
src: url(roboto/Roboto-Regular.ttf) format("truetype");
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
margin: 0;
|
||
|
padding: 2rem;
|
||
|
}
|
||
|
|
||
|
body * {
|
||
|
margin: 0;
|
||
|
font-family: "Roboto", sans-serif;
|
||
|
word-break: break-all;
|
||
|
white-space: pre-line;
|
||
|
}
|
||
|
|
||
|
body > :not(:last-child) {
|
||
|
margin-bottom: 2rem;
|
||
|
}
|