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

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

Issue 9020028: Hook up favicon, link to main page, and fix process bug. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: r 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/static/favicon.ico ('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 /* 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 .icon-library { 173 .icon-library {
174 background: url('library.png'); 174 background: url('library.png');
175 width: 16px; 175 width: 16px;
176 height: 14px; 176 height: 14px;
177 display: inline-block; 177 display: inline-block;
178 margin: 4px 8px 0 0; 178 margin: 4px 8px 0 0;
179 vertical-align: top; 179 vertical-align: top;
180 } 180 }
181 181
182 .content { 182 .content {
183 margin-left: 308px; /* 14 x 22px */ 183 margin-left: 308px; /* 14 x 22 */
184 padding: 22px 22px; 184 padding: 22px 22px;
185 } 185 }
186 186
187 .footer { 187 .footer {
Emily Fortuna 2011/12/21 23:23:33 I'm going to make one more preference for the data
Bob Nystrom 2011/12/21 23:35:07 Oh, crap, that's a bug. Thanks for noticing. It's
188 clear: both; 188 max-width: 956px; /* 1000 - 22 - 22 */
189 text-align: center;
190 margin: 22px auto;
191 color: #888;
192 }
193
194 .footer p {
195 font: 400 13px/22px 'Open Sans', 'Lucida Sans Unicode', 'Lucida Grande',
196 sans-serif;
189 } 197 }
190 198
191 .method .doc, 199 .method .doc,
192 .field .doc { 200 .field .doc {
193 padding-left: 44px; 201 padding-left: 44px;
194 } 202 }
195 203
196 .param { 204 .param {
197 font: 600 14px/22px 'Open Sans', 'Lucida Sans Unicode', 'Lucida Grande', 205 font: 600 14px/22px 'Open Sans', 'Lucida Sans Unicode', 'Lucida Grande',
198 sans-serif; 206 sans-serif;
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 } 331 }
324 332
325 p { 333 p {
326 border-left: solid 4px purple; 334 border-left: solid 4px purple;
327 } 335 }
328 336
329 section { 337 section {
330 border-left: solid 4px gray; 338 border-left: solid 4px gray;
331 } 339 }
332 */ 340 */
OLDNEW
« no previous file with comments | « utils/dartdoc/static/favicon.ico ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698