| OLD | NEW |
| 1 /* Reset */ | 1 /* Reset */ |
| 2 body, h1, h2, h3, h4, li, ol, p, pre, section, ul { | 2 body, h1, h2, h3, h4, li, ol, p, pre, section, ul { |
| 3 margin: 0; | 3 margin: 0; |
| 4 padding: 0; | 4 padding: 0; |
| 5 } | 5 } |
| 6 | 6 |
| 7 body { | 7 body { |
| 8 font-family: Georgia, serif; | 8 font-family: Georgia, serif; |
| 9 background: #e8e8e8; | 9 background: #e8e8e8; |
| 10 color: #333; | 10 color: #333; |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 margin: 0 -22px; | 354 margin: 0 -22px; |
| 355 border: solid 4px hsl(40, 100%, 85%); | 355 border: solid 4px hsl(40, 100%, 85%); |
| 356 padding: 0 18px; | 356 padding: 0 18px; |
| 357 border-top: none; | 357 border-top: none; |
| 358 border-bottom: none; | 358 border-bottom: none; |
| 359 } | 359 } |
| 360 | 360 |
| 361 /* Only show the "code" link for the highlighted member. */ | 361 /* Only show the "code" link for the highlighted member. */ |
| 362 .show-code, .show-inherited { | 362 .show-code, .show-inherited { |
| 363 float: right; | 363 float: right; |
| 364 font: 600 11px/22px 'Open Sans', 'Lucida Sans Unicode', 'Lucida Grande', | 364 font: 600 11px 'Open Sans', 'Lucida Sans Unicode', 'Lucida Grande', |
| 365 sans-serif; | 365 sans-serif; |
| 366 padding: 0 0 6px 0; /* In case it gets too close to the member. */ | 366 padding: 0 0 0 6px; /* In case it gets too close to the member. */ |
| 367 border: none; | 367 border: none; |
| 368 background: transparent; | 368 background: transparent; |
| 369 margin: 0; | 369 margin: 0; |
| 370 } | 370 } |
| 371 | 371 |
| 372 .method:hover .show-code, | 372 .method:hover .show-code, |
| 373 .field:hover .show-code { | 373 .field:hover .show-code { |
| 374 display: inline; | 374 display: inline; |
| 375 } | 375 } |
| 376 | 376 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 388 pre.source { | 388 pre.source { |
| 389 display: none; | 389 display: none; |
| 390 } | 390 } |
| 391 | 391 |
| 392 pre.source.expanded { | 392 pre.source.expanded { |
| 393 display: block; | 393 display: block; |
| 394 } | 394 } |
| 395 | 395 |
| 396 /* Links that don't cause a page refresh. */ | 396 /* Links that don't cause a page refresh. */ |
| 397 .anchor-link, .anchor-link:visited, | 397 .anchor-link, .anchor-link:visited, |
| 398 .show-code, .show-code:visited, | 398 .show-code, .show-code:visited, |
| 399 .show-inherited, .show-inherited:visited { | 399 .show-inherited, .show-inherited:visited { |
| 400 color: hsl(40, 100%, 40%); | 400 color: hsl(40, 100%, 40%); |
| 401 cursor: pointer; | 401 cursor: pointer; |
| 402 } | 402 } |
| 403 | 403 |
| 404 .anchor-link, .anchor-link:visited, | 404 .anchor-link, .anchor-link:visited, |
| 405 .show-code, .show-code:visited { | 405 .show-code, .show-code:visited { |
| 406 display: none; | 406 display: none; |
| 407 } | 407 } |
| 408 | 408 |
| 409 .anchor-link:hover, | 409 .anchor-link:hover, |
| 410 .show-code:hover, | 410 .show-code:hover, |
| 411 .show-inherited:hover { | 411 .show-inherited:hover { |
| 412 color: hsl(40, 100%, 60%); | 412 color: hsl(40, 100%, 60%); |
| 413 } | 413 } |
| 414 | 414 |
| 415 /* Syntax highlighting. */ | 415 /* Syntax highlighting. */ |
| 416 /* Note: these correspond to the constants in classify.dart. */ | 416 /* Note: these correspond to the constants in classify.dart. */ |
| 417 pre.source .e { color: hsl( 0, 100%, 70%); } /* Error */ | 417 pre.source .e { color: hsl( 0, 100%, 70%); } /* Error */ |
| 418 pre.source .c { color: hsl(220, 20%, 65%); } /* Comment */ | 418 pre.source .c { color: hsl(220, 20%, 65%); } /* Comment */ |
| 419 pre.source .i { color: hsl(220, 20%, 20%); } /* Identifier */ | 419 pre.source .i { color: hsl(220, 20%, 20%); } /* Identifier */ |
| 420 pre.source .k { color: hsl(220, 100%, 50%); } /* Keyword */ | 420 pre.source .k { color: hsl(220, 100%, 50%); } /* Keyword */ |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 } | 465 } |
| 466 | 466 |
| 467 p { | 467 p { |
| 468 border-left: solid 4px purple; | 468 border-left: solid 4px purple; |
| 469 } | 469 } |
| 470 | 470 |
| 471 section { | 471 section { |
| 472 border-left: solid 4px gray; | 472 border-left: solid 4px gray; |
| 473 } | 473 } |
| 474 */ | 474 */ |
| OLD | NEW |