Blame view

docs/assets/js/themes/dreamweaver.css 1.98 KB
5a739853   patrick.he   commit
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
  /**
   * Dreamweaver theme
   *
   * @author Sean Coker
   * @url http://seancoker.com
   * @version 1.0
   */
  
  pre {
      /* original is white background with no border */
      background-color: #fff;
      word-wrap: break-word;
      margin: 0;
      padding: 10px;
      color: #000;
      font-size: 13px;
      line-height: 16px;
      margin-bottom: 20px
  }
  
  pre, code {
      font-family: monospace;
  }
  
  pre .comment {
      color: #888;
  }
  
  pre .support {
      color: #cd57d5;
  }
  
  pre .constant.numeric, pre .php.embedded {
      color: #fa0002;
      font-weight: bold;
  }
  
  pre .keyword, pre .constant.language {
      color: #000789;
      font-weight: bold;
  }
  
  pre .selector, pre .support.property, pre .entity.name.function {
      color: #000;
  }
  
  pre .storage.function, pre .variable.self, pre .support.function, pre .constant.language {
      color: #000;
      font-weight: bold;
  }
  
  pre .string {
      color: #0d43fa;
      font-weight: normal;
  }
  
  pre .css-property + span, pre .keyword.unit, pre .support.css-value {
      color: #0d43fa !important;
      font-weight: normal !important;
  }
  
  pre .entity.tag.style + .string, pre .php.embedded .constant.language, pre .php.embedded .keyword {
      color: #37a348 !important;
  }
  
  pre .support.method {
      color: #2bd5bb;
  }
  
  pre .entity.name {
      color: #fd74e0;
  }
  
  pre .support.css-property, pre .support.tag-name, pre .support.tag, pre .support.attribute, pre .support.attribute + .operator {
      color: #000789;
  }
  
  pre .storage.module, pre .storage.class {
      color: #122573;
      font-weight: bold;
  }
  
  pre .css.embedded .support.tag, pre .css.embedded .style.tag {
      color: #cd57d5;
  }
  
  pre .keyword.operator {
      color: #2852eb;
      font-weight: normal;
  }
  
  pre .php.embedded .variable, pre .php.embedded .storage.function {
       color: #0d43fa;
       font-weight: normal;
  }
  
  pre .php.embedded .string, pre .js.embedded .tag.script {
       color: #c4001e;
  }
  
  pre .php.embedded .comment {
       color: #f4b441;
       font-weight: normal;
  }
  
  pre .php.embedded .function.name {
       color: #000;
       font-weight: normal;
  }