File size: 336 Bytes
9b7d64e d15d7f7 9b7d64e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
body {
margin: 0;
font-family: var(--default-font-family);
color: var(--text-color);
}
audio { display: block; width: 100%; }
img,
picture {
max-width: 100%;
height: auto;
display: block;
position: relative;
z-index: var(--z-elevated);
}
|