1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* add syntax highlighting to code examples

This commit is contained in:
Reinhard Pointner 2011-08-31 11:07:45 +00:00
parent 156e7a7418
commit 566f21c61f

28
website/code.css Normal file
View File

@ -0,0 +1,28 @@
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;
}