AECC database project.
1/* generic minimal CSS reset
2 * inspiration: https://www.digitalocean.com/community/tutorials/css-minimal-css-reset
3 */
4
5:root {
6 box-sizing: border-box;
7 line-height: 1.4;
8 /* https://kilianvalkhof.com/2022/css-html/your-css-reset-needs-text-size-adjust-probably/ */
9 -moz-text-size-adjust: none;
10 -webkit-text-size-adjust: none;
11 text-size-adjust: none;
12}
13
14*, *::before, *::after {
15 box-sizing: inherit;
16}
17
18body, h1, h2, h3, h4, h5, h6, p {
19 margin: 0;
20 padding: 0;
21 font-weight: normal;
22}
23
24img {
25 max-width:100%;
26 height:auto;
27}