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