13 lines
166 B
CSS
13 lines
166 B
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family:
|
|
Courier New,
|
|
Courier,
|
|
Monospace;
|
|
width: 700px;
|
|
max-width: calc(100% - 20px);
|
|
margin: auto;
|
|
}
|