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

Side by Side Diff: stylesheets/partials/_syntax.scss

Issue 85333007: Begin the redesign process, starting with the navbar. (Closed) Base URL: git@github.com:dart-lang/pub-dartlang.git@master
Patch Set: Created 7 years 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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // These styles come from https://github.com/dart-lang/dartlang.org/blob/master/ src/site/scss/_syntax.scss. 5 // These styles come from https://github.com/dart-lang/dartlang.org/blob/master/ src/site/scss/_syntax.scss.
Bob Nystrom 2013/11/26 19:00:11 Are they still up to date?
Andrei Mouravski 2013/11/29 21:21:21 Not sure. I'll add an issue.
6 .highlight { 6 .highlight {
7 .c { color: #999988; font-style: italic } // Comment 7 .c { color: #999988; font-style: italic } // Comment
8 .err { color: #a61717; background-color: #e3d2d2 } // Error 8 .err { color: #a61717; background-color: #e3d2d2 } // Error
9 .k { font-weight: bold } // Keyword 9 .k { font-weight: bold } // Keyword
10 .o { font-weight: bold } // Operator 10 .o { font-weight: bold } // Operator
11 .cm { color: #999988; font-style: italic } // Comment.Multiline 11 .cm { color: #999988; font-style: italic } // Comment.Multiline
12 .cp { color: #999999; font-weight: bold } // Comment.Preproc 12 .cp { color: #999999; font-weight: bold } // Comment.Preproc
13 .c1 { color: #999988; font-style: italic } // Comment.Single 13 .c1 { color: #999988; font-style: italic } // Comment.Single
14 .cs { color: #999999; font-weight: bold; font-style: italic } // Comment.Speci al 14 .cs { color: #999999; font-weight: bold; font-style: italic } // Comment.Speci al
15 .gd { color: #000000; background-color: #ffdddd } // Generic.Deleted 15 .gd { color: #000000; background-color: #ffdddd } // Generic.Deleted
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 .sx { color: #d14 } // Literal.String.Other 57 .sx { color: #d14 } // Literal.String.Other
58 .sr { color: #009926 } // Literal.String.Regex 58 .sr { color: #009926 } // Literal.String.Regex
59 .s1 { color: #d14 } // Literal.String.Single 59 .s1 { color: #d14 } // Literal.String.Single
60 .ss { color: #990073 } // Literal.String.Symbol 60 .ss { color: #990073 } // Literal.String.Symbol
61 .bp { color: #999999 } // Name.Builtin.Pseudo 61 .bp { color: #999999 } // Name.Builtin.Pseudo
62 .vc { color: #008080 } // Name.Variable.Class 62 .vc { color: #008080 } // Name.Variable.Class
63 .vg { color: #008080 } // Name.Variable.Global 63 .vg { color: #008080 } // Name.Variable.Global
64 .vi { color: #008080 } // Name.Variable.Instance 64 .vi { color: #008080 } // Name.Variable.Instance
65 .il { color: #009999 } // Literal.Number.Integer.Long 65 .il { color: #009999 } // Literal.Number.Integer.Long
66 } 66 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698