14 lines
146 B
CSS
14 lines
146 B
CSS
|
|
||
|
*, *::before, *::after {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
:root {
|
||
|
color-scheme: light dark;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
margin: 0 auto;
|
||
|
padding: 2rem;
|
||
|
}
|