Blame view

assets/plugins/google-code-prettify/prettify.css 1.4 KB
cf76164e6   Ting Chan   20190709
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
  /* Pretty printing styles. Used with prettify.js.
   *
   * This version is slight modified based on the original version.
   *
   * Name:	Stanley Ng
   * Email: 	stanleyhlng@googlegroups.com
   * 
   * Reference:
   * http://code.google.com/p/google-code-prettify/source/browse/trunk/src/prettify.css
   */
  .pln {
    color: #48484C; }
  
  .str {
    color: #DD1144; }
  
  .kwd {
    color: #1E347B; }
  
  .com {
    color: #93A1A1; }
  
  .typ {
    color: teal; }
  
  .lit {
    color: #195F91; }
  
  .pun {
    color: #93A1A1; }
  
  .opn {
    color: #93A1A1; }
  
  .clo {
    color: #93A1A1; }
  
  .tag {
    color: #008; }
  
  .atn {
    color: teal; }
  
  .atv {
    color: #DD1144; }
  
  .dec {
    color: teal; }
  
  .var {
    color: teal; }
  
  .fun {
    color: #DC322F; }
  
  /* Put a border around prettyprinted code snippets. */
  pre.prettyprint {
    background-color: #F7F7F9;
    padding: 10px;
    border: 1px solid #E1E1E8; }
  
  pre.prettyprint.linenums {
    box-shadow: 40px 0 0 #FBFBFC inset, 41px 0 0 #ECECF0 inset; }
  
  /* Specify class=linenums on a pre to get line numbering */
  ol.linenums {
    color: #1E347B;
    margin: 0 0 0 40px; }
  
  ol.linenums li {
    color: #BEBEC5;
    line-height: 18px;
    padding-left: 12px;
    text-shadow: 0 1px 0 #FFFFFF; }
  
  li.L0,
  li.L1,
  li.L2,
  li.L3,
  li.L5,
  li.L6,
  li.L7,
  li.L8 {
    list-style-type: normal; }
  
  /* Alternate shading for lines */
  li.L1,
  li.L3,
  li.L5,
  li.L7,
  li.L9 {
    background: #eee; }