1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
<!DOCTYPE html>
<meta charset=utf-8>
<title>Syntax Highlighting</title>
<link href="../themes/css/blackboard.css" rel="stylesheet" type="text/css" media="screen">
<body>
<pre>
<code data-language="css">/**
* styles for blackboard theme
*/
pre {
background: #0B1022;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
margin: 0px;
padding: 0px;
padding: 10px;
color: #fff;
font-size: 14px;
margin-bottom: 20px;
}
pre, code {
font-family: 'Monaco', courier, monospace;
}
pre .comment {
color: #727272;
}
pre .constant {
color: #D8FA3C;
}
pre .storage {
color: #FBDE2D;
}
pre .string {
color: #61CE3C;
}
pre .keyword, pre .selector {
color: #FBDE2D;
}
pre .parent {
font-style: italic;
}
pre .entity {
color: #FF6400;
}
pre .support {
color: #8DA6CE;
}</code>
</pre>
<script src="../dist/rainbow.js"></script>
<script src="../src/language/css.js"></script>
</body>
|