16 lines
280 B
Smarty
16 lines
280 B
Smarty
/* Reset (Source: https://css-tricks.com/notes-on-josh-comeaus-custom-css-reset/) */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
html, body {
|
|
height: 100%;
|
|
}
|
|
img, picture, video, canvas, svg {
|
|
display: block;
|
|
max-width: 100%;
|
|
}
|
|
p, h1, h2, h3, h4, h5, h6 {
|
|
overflow-wrap: break-word;
|
|
}
|