Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(215)

Side by Side Diff: src/site/css/syntax.css

Issue 10700168: massive CL is massive (Closed) Base URL: https://code.google.com/p/dartlang-site/@master
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/site/css/style.css ('k') | src/site/dartium/home.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 .highlight { background: #F0F0F0; border-radius: 5px; margin-bottom: 1em;}
2
3 .bad .highlight {
4 border-radius: 5px;
5
6 background-image: linear-gradient(bottom, rgb(255,242,242) 16%, rgb(255,204,20 4) 86%);
7 background-image: -o-linear-gradient(bottom, rgb(255,242,242) 16%, rgb(255,204 ,204) 86%);
8 background-image: -moz-linear-gradient(bottom, rgb(255,242,242) 16%, rgb(255,2 04,204) 86%);
9 background-image: -webkit-linear-gradient(bottom, rgb(255,242,242) 16%, rgb(25 5,204,204) 86%);
10 background-image: -ms-linear-gradient(bottom, rgb(255,242,242) 16%, rgb(255,20 4,204) 86%);
11
12 background-image: -webkit-gradient(
13 linear,
14 left bottom,
15 left top,
16 color-stop(0.16, rgb(255,242,242)),
17 color-stop(0.86, rgb(255,204,204))
18 );
19 }
20
21 .good .highlight {
22 border-radius: 5px;
23
24 background-image: linear-gradient(bottom, rgb(243,255,240) 16%, rgb(213,255,20 4) 86%);
25 background-image: -o-linear-gradient(bottom, rgb(243,255,240) 16%, rgb(213,255 ,204) 86%);
26 background-image: -moz-linear-gradient(bottom, rgb(243,255,240) 16%, rgb(213,2 55,204) 86%);
27 background-image: -webkit-linear-gradient(bottom, rgb(243,255,240) 16%, rgb(21 3,255,204) 86%);
28 background-image: -ms-linear-gradient(bottom, rgb(243,255,240) 16%, rgb(213,25 5,204) 86%);
29
30 background-image: -webkit-gradient(
31 linear,
32 left bottom,
33 left top,
34 color-stop(0.16, rgb(243,255,240)),
35 color-stop(0.86, rgb(213,255,204))
36 );
37 }
38
39 .good .highlight pre:before {
40 content: "good";
41 color: #696;
42 float: right;
43 }
44
45 .bad .highlight pre:before {
46 content: "bad";
47 float: right;
48 }
49
50
51 .highlight .c { color: #999988; font-style: italic } /* Comment */
52 .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
53 .highlight .k { font-weight: bold } /* Keyword */
54 .highlight .o { font-weight: bold } /* Operator */
55 .highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
56 .highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
57 .highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
58 .highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comm ent.Special */
59 .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
60 .highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Delet ed.Specific */
61 .highlight .ge { font-style: italic } /* Generic.Emph */
62 .highlight .gr { color: #aa0000 } /* Generic.Error */
63 .highlight .gh { color: #999999 } /* Generic.Heading */
64 .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
65 .highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inser ted.Specific */
66 .highlight .go { color: #888888 } /* Generic.Output */
67 .highlight .gp { color: #555555 } /* Generic.Prompt */
68 .highlight .gs { font-weight: bold } /* Generic.Strong */
69 .highlight .gu { color: #aaaaaa } /* Generic.Subheading */
70 .highlight .gt { color: #aa0000 } /* Generic.Traceback */
71 .highlight .kc { font-weight: bold } /* Keyword.Constant */
72 .highlight .kd { font-weight: bold } /* Keyword.Declaration */
73 .highlight .kp { font-weight: bold } /* Keyword.Pseudo */
74 .highlight .kr { font-weight: bold } /* Keyword.Reserved */
75 .highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
76 .highlight .m { color: #009999 } /* Literal.Number */
77 .highlight .s { color: #d14 } /* Literal.String */
78 .highlight .na { color: #008080 } /* Name.Attribute */
79 .highlight .nb { color: #0086B3 } /* Name.Builtin */
80 .highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
81 .highlight .no { color: #008080 } /* Name.Constant */
82 .highlight .ni { color: #800080 } /* Name.Entity */
83 .highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
84 .highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
85 .highlight .nn { color: #555555 } /* Name.Namespace */
86 .highlight .nt { color: #000080 } /* Name.Tag */
87 .highlight .nv { color: #008080 } /* Name.Variable */
88 .highlight .ow { font-weight: bold } /* Operator.Word */
89 .highlight .w { color: #bbbbbb } /* Text.Whitespace */
90 .highlight .mf { color: #009999 } /* Literal.Number.Float */
91 .highlight .mh { color: #009999 } /* Literal.Number.Hex */
92 .highlight .mi { color: #009999 } /* Literal.Number.Integer */
93 .highlight .mo { color: #009999 } /* Literal.Number.Oct */
94 .highlight .sb { color: #d14 } /* Literal.String.Backtick */
95 .highlight .sc { color: #d14 } /* Literal.String.Char */
96 .highlight .sd { color: #d14 } /* Literal.String.Doc */
97 .highlight .s2 { color: #d14 } /* Literal.String.Double */
98 .highlight .se { color: #d14 } /* Literal.String.Escape */
99 .highlight .sh { color: #d14 } /* Literal.String.Heredoc */
100 .highlight .si { color: #d14 } /* Literal.String.Interpol */
101 .highlight .sx { color: #d14 } /* Literal.String.Other */
102 .highlight .sr { color: #009926 } /* Literal.String.Regex */
103 .highlight .s1 { color: #d14 } /* Literal.String.Single */
104 .highlight .ss { color: #990073 } /* Literal.String.Symbol */
105 .highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
106 .highlight .vc { color: #008080 } /* Name.Variable.Class */
107 .highlight .vg { color: #008080 } /* Name.Variable.Global */
108 .highlight .vi { color: #008080 } /* Name.Variable.Instance */
109 .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
OLDNEW
« no previous file with comments | « src/site/css/style.css ('k') | src/site/dartium/home.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698