Changed the Style of GUI
[holmes/rule-management.git] / rulemgt-frontend / src / assets / framework / browser / css / prettify.css
1 .pln { color: #000 }  /* plain text */
2
3 @media screen {
4   .str { color: #080 }  /* string content */
5   .kwd { color: #008 }  /* a keyword */
6   .com { color: #800 }  /* a comment */
7   .typ { color: #606 }  /* a type name */
8   .lit { color: #066 }  /* a literal value */
9   /* punctuation, lisp open bracket, lisp close bracket */
10   .pun, .opn, .clo { color: #660 }
11   .tag { color: #008 }  /* a markup tag name */
12   .atn { color: #606 }  /* a markup attribute name */
13   .atv { color: #080 }  /* a markup attribute value */
14   .dec, .var { color: #606 }  /* a declaration; a variable name */
15   .fun { color: red }  /* a function name */
16 }
17
18 /* Use higher contrast and text-weight for printable form. */
19 @media print, projection {
20   .str { color: #060 }
21   .kwd { color: #006; font-weight: bold }
22   .com { color: #600; font-style: italic }
23   .typ { color: #404; font-weight: bold }
24   .lit { color: #044 }
25   .pun, .opn, .clo { color: #440 }
26   .tag { color: #006; font-weight: bold }
27   .atn { color: #404 }
28   .atv { color: #060 }
29 }
30
31 pre.prettyprint {
32   padding: 8px;
33   background-color: #f7f7f9;
34   border: 1px solid #e1e1e8;
35 }
36 pre.prettyprint.linenums {
37   -webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
38      -moz-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
39           box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
40 }
41 ol.linenums {
42   margin: 0 0 0 33px; /* IE indents via margin-left */
43
44 ol.linenums li {
45   padding-left: 12px;
46   font-size:12px;
47   color: #bebec5;
48   line-height: 18px;
49   text-shadow: 0 1px 0 #fff;
50   list-style-type:decimal!important;
51 }