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

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

Issue 8725007: Lots of stuff hooking up markdown to dartdoc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Respond to awesome reviews. Created 9 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 | Annotate | Revision Log
« no previous file with comments | « utils/dartdoc/dartdoc.dart ('k') | utils/markdown/block_parser.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, p, pre, section { 2 body, h1, h2, h3, h4, p, pre, section {
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: #eee; 9 background: #eee;
10 color: #333; 10 color: #333;
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 margin: 0 auto 22px auto; 85 margin: 0 auto 22px auto;
86 border: solid 1px #ccc; 86 border: solid 1px #ccc;
87 border-top: none; 87 border-top: none;
88 } 88 }
89 89
90 .method .doc, 90 .method .doc,
91 .field .doc { 91 .field .doc {
92 padding-left: 44px; 92 padding-left: 44px;
93 } 93 }
94 94
95 .param {
96 font: 600 14px/22px 'Open Sans', 'Lucida Sans Unicode', 'Lucida Grande',
97 sans-serif;
98 }
99
100 .crossref {
101 font: 600 15px/22px 'Open Sans', 'Lucida Sans Unicode', 'Lucida Grande',
102 sans-serif;
103 }
104
105 .doc h1 {
106 font: 700 17px/22px 'Open Sans', 'Lucida Sans Unicode', 'Lucida Grande',
107 sans-serif;
108 color: #666;
109 }
110
111 .doc h2 {
112 font: 600 16px/22px 'Open Sans', 'Lucida Sans Unicode',
113 'Lucida Grande', sans-serif;
114 color: #666;
115 }
116
95 /* Highlight members on hover so you can see which docs are for which member. */ 117 /* Highlight members on hover so you can see which docs are for which member. */
96 .method:hover, 118 .method:hover,
97 .field:hover { 119 .field:hover {
98 margin: 0 -22px; 120 margin: 0 -22px;
99 border: solid 4px hsl(40, 100%, 85%); 121 border: solid 4px hsl(40, 100%, 85%);
100 padding: 0 18px; 122 padding: 0 18px;
101 border-top: none; 123 border-top: none;
102 border-bottom: none; 124 border-bottom: none;
103 } 125 }
104 126
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 } 222 }
201 223
202 p { 224 p {
203 border-left: solid 4px purple; 225 border-left: solid 4px purple;
204 } 226 }
205 227
206 section { 228 section {
207 border-left: solid 4px gray; 229 border-left: solid 4px gray;
208 } 230 }
209 */ 231 */
OLDNEW
« no previous file with comments | « utils/dartdoc/dartdoc.dart ('k') | utils/markdown/block_parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698