29 lines
295 B
CSS
29 lines
295 B
CSS
*::after,
|
|
*::before,
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
* {
|
|
font: inherit;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html {
|
|
}
|
|
|
|
body {
|
|
hanging-punctuation: first last;
|
|
min-block-size: 100svh;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
text-wrap: balance;
|
|
}
|
|
|
|
figcaption,
|
|
li,
|
|
p {
|
|
text-wrap: pretty;
|
|
}
|