17 lines
280 B
CSS
17 lines
280 B
CSS
* {
|
|
color: black;
|
|
background-color: white;
|
|
font-family: monospace;
|
|
font-size: 20px;
|
|
font-style: normal;
|
|
font-weight: bold;
|
|
font-variant: normal;
|
|
}
|
|
|
|
#dom-node {
|
|
text-align: center;
|
|
width: 500px;
|
|
padding: 20px;
|
|
background-color: brown;
|
|
}
|