8 lines
217 B
CSS
8 lines
217 B
CSS
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
background: #0f1117;
|
|
color: #e2e8f0;
|
|
font-size: 13px;
|
|
}
|