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

Side by Side Diff: lib/dartdoc/static/styles.css

Issue 10809035: Several new features and improvements for dartdoc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated cf. comments Created 8 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « lib/dartdoc/dartdoc.dart ('k') | lib/dom/frog/dom_frog.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 font-weight: 700; 45 font-weight: 700;
46 } 46 }
47 47
48 pre, code { 48 pre, code {
49 font: 14px/22px Menlo, Monaco, Consolas, Courier, monospace; 49 font: 14px/22px Menlo, Monaco, Consolas, Courier, monospace;
50 color: hsl(220, 20%, 30%); 50 color: hsl(220, 20%, 30%);
51 background: hsl(220, 20%, 95%); 51 background: hsl(220, 20%, 95%);
52 margin: 22px 0; 52 margin: 22px 0;
53 padding: 0 4px; 53 padding: 0 4px;
54 border-radius: 4px; 54 border-radius: 4px;
55 overflow: hidden; 55 overflow-x:auto;
56 overflow-y:hidden;
56 } 57 }
57 58
58 a { 59 a {
59 color: #15c; 60 color: #15c;
60 text-decoration: none; 61 text-decoration: none;
61 } 62 }
62 63
63 a:hover { 64 a:hover {
64 text-decoration: underline; 65 text-decoration: underline;
65 } 66 }
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 } 375 }
375 376
376 p { 377 p {
377 border-left: solid 4px purple; 378 border-left: solid 4px purple;
378 } 379 }
379 380
380 section { 381 section {
381 border-left: solid 4px gray; 382 border-left: solid 4px gray;
382 } 383 }
383 */ 384 */
OLDNEW
« no previous file with comments | « lib/dartdoc/dartdoc.dart ('k') | lib/dom/frog/dom_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698