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

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

Issue 9225039: Integrate MDN content into API documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove temp code. Created 8 years, 10 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
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 } 61 }
62 62
63 a:hover { 63 a:hover {
64 text-decoration: underline; 64 text-decoration: underline;
65 } 65 }
66 66
67 a:visited { 67 a:visited {
68 color: #15c; 68 color: #15c;
69 } 69 }
70 70
71 /* Style external links differently. */
72 a[rel~="custom"]:after,
Jacob 2012/01/30 21:36:21 why are "custom" links styled as if they were exte
Bob Nystrom 2012/01/31 20:56:29 The mozilla docs seemed to have some links that us
73 a[rel~="external"]:after {
74 content: url('external-link.png');
75 }
76
71 li { 77 li {
72 font-size: 16px; 78 font-size: 16px;
73 line-height: 22px; 79 line-height: 22px;
74 } 80 }
75 81
76 ol, ul { 82 ol, ul {
77 padding-left: 22px; 83 padding-left: 22px;
78 } 84 }
79 85
80 hr { 86 hr {
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 } 227 }
222 228
223 .footer p { 229 .footer p {
224 font: 400 13px/22px 'Open Sans', 'Lucida Sans Unicode', 'Lucida Grande', 230 font: 400 13px/22px 'Open Sans', 'Lucida Sans Unicode', 'Lucida Grande',
225 sans-serif; 231 sans-serif;
226 } 232 }
227 233
228 .method .doc, 234 .method .doc,
229 .field .doc { 235 .field .doc {
230 padding-left: 44px; 236 padding-left: 44px;
237 /* Ensure there is some space between members with no documentation. */
238 min-height: 22px;
231 } 239 }
232 240
233 .param { 241 .param {
234 font: 600 14px 'Open Sans', 'Lucida Sans Unicode', 'Lucida Grande', 242 font: 600 14px 'Open Sans', 'Lucida Sans Unicode', 'Lucida Grande',
235 sans-serif; 243 sans-serif;
236 } 244 }
237 245
238 .crossref { 246 .crossref {
239 font: 600 15px 'Open Sans', 'Lucida Sans Unicode', 'Lucida Grande', 247 font: 600 15px 'Open Sans', 'Lucida Sans Unicode', 'Lucida Grande',
240 sans-serif; 248 sans-serif;
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 } 368 }
361 369
362 p { 370 p {
363 border-left: solid 4px purple; 371 border-left: solid 4px purple;
364 } 372 }
365 373
366 section { 374 section {
367 border-left: solid 4px gray; 375 border-left: solid 4px gray;
368 } 376 }
369 */ 377 */
OLDNEW
« utils/dartdoc/dartdoc.dart ('K') | « utils/dartdoc/static/external-link.png ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698