21 lines
234 B
CSS
21 lines
234 B
CSS
:root {
|
|
font-size: 1em;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: inherit;
|
|
}
|
|
|
|
body {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
.pointer {
|
|
cursor: pointer;
|
|
}
|