14 lines
151 B
CSS
14 lines
151 B
CSS
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
body {
|
|
background-color: #f8f8f8;
|
|
color: #222;
|
|
}
|