You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
516 B
CSS
38 lines
516 B
CSS
11 years ago
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: "Source Code Pro";
|
||
11 years ago
|
padding: 1em;
|
||
11 years ago
|
}
|
||
|
|
||
11 years ago
|
div.title, p {
|
||
|
padding: 0.4em;
|
||
11 years ago
|
}
|
||
|
|
||
11 years ago
|
div.title {
|
||
|
border-top: 1px solid #ccc;
|
||
|
border-bottom: 1px solid #ccc;
|
||
11 years ago
|
}
|
||
|
|
||
|
|
||
|
|
||
11 years ago
|
pre {
|
||
|
background: #ffe;
|
||
|
padding: 0.8em;
|
||
|
line-height: 1.5;
|
||
|
font-size: 80%;
|
||
|
font-family: "Source Code Pro";
|
||
|
white-space: pre-wrap;
|
||
11 years ago
|
overflow: auto;
|
||
11 years ago
|
max-height: 240px;
|
||
11 years ago
|
}
|
||
|
|
||
|
.error {
|
||
11 years ago
|
font-weight: bolder;
|
||
|
color: red;
|
||
|
font-size: large;
|
||
|
}
|