21 lines
184 B
CSS
21 lines
184 B
CSS
|
body {
|
||
|
font-family: arial, helvetica, sans-serif;
|
||
|
}
|
||
|
|
||
|
h1,h2,h3,h4,h5,h6 {
|
||
|
color: #00a;
|
||
|
}
|
||
|
|
||
|
hr {
|
||
|
color: red;
|
||
|
}
|
||
|
|
||
|
em {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
#log {
|
||
|
height: 100px;
|
||
|
overflow: scroll;
|
||
|
}
|