42 lines
509 B
CSS
42 lines
509 B
CSS
|
|
code {
|
|
display: block;
|
|
font: Arial, Helvetica, sans-serif;
|
|
line-height: 1.2em;
|
|
background-color: #f5f5f5;
|
|
border: thin dashed #a2a2a2;
|
|
padding: 5px;
|
|
margin: 5px 0px;
|
|
}
|
|
|
|
code .variable {
|
|
color: #7f0055;
|
|
font-weight: bold;
|
|
}
|
|
|
|
code .method {
|
|
color: #0066cc;
|
|
}
|
|
|
|
code .string, code .numeral, code .regex {
|
|
color: #008800;
|
|
}
|
|
|
|
code .block {
|
|
color: #225577;
|
|
font-weight: bold;
|
|
}
|
|
|
|
code .cmd {
|
|
color: #5C7684;
|
|
}
|
|
|
|
code .option {
|
|
color: #225577;
|
|
font-weight: bold;
|
|
}
|
|
|
|
code .argument {
|
|
color: #008800;
|
|
}
|