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

Side by Side Diff: src/site/scss/style.scss

Issue 19291003: basic code highlighting for our docs (Closed) Base URL: git@github.com:dart-lang/dartlang.org.git@master
Patch Set: Created 7 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') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 @import url(https://fonts.googleapis.com/css?family=Open+Sans:400|Montserrat:400 ); 1 @import url(https://fonts.googleapis.com/css?family=Open+Sans:400|Montserrat:400 );
2 2
3 /* Override bootstrap variables */ 3 /* Override bootstrap variables */
4 $sansFontFamily: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif !de fault; 4 $sansFontFamily: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif !de fault;
5 $baseFontSize: 14px !default; 5 $baseFontSize: 14px !default;
6 $baseLineHeight: 22px !default; 6 $baseLineHeight: 22px !default;
7 7
8 $dartFont: 'Montserrat', sans-serif; 8 $dartFont: 'Montserrat', sans-serif;
9 9
10 @import "compass_twitter_bootstrap_awesome"; 10 @import "compass_twitter_bootstrap_awesome";
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 244
245 .spec-rationale { 245 .spec-rationale {
246 color: blue; 246 color: blue;
247 font-style: italic; 247 font-style: italic;
248 } 248 }
249 249
250 .spec-change { 250 .spec-change {
251 background: yellow; 251 background: yellow;
252 } 252 }
253 253
254 code.highlight {
255 background: yellow;
256 }
257
254 footer { 258 footer {
255 border-top: 1px solid #CECECE; 259 border-top: 1px solid #CECECE;
256 background-color: #EFEFEF; 260 background-color: #EFEFEF;
257 color: $grayLight; 261 color: $grayLight;
258 font-size: $baseFontSize - 1; 262 font-size: $baseFontSize - 1;
259 padding: 70px 0; 263 padding: 70px 0;
260 margin-top: 50px; 264 margin-top: 50px;
261 ul { 265 ul {
262 list-style: none; 266 list-style: none;
263 margin: 0; 267 margin: 0;
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 @import "syntax"; 326 @import "syntax";
323 @import "tutorial"; 327 @import "tutorial";
324 @import "dartisans_live"; 328 @import "dartisans_live";
325 @import "up_and_running_book"; 329 @import "up_and_running_book";
326 330
327 @media print { 331 @media print {
328 .no-print { 332 .no-print {
329 display: none; 333 display: none;
330 } 334 }
331 } 335 }
OLDNEW
« no previous file with comments | « src/site/css/style.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698