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

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: Respond to review. 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 .clear {
188 clear: both;
189 }
190
187 .footer { 191 .footer {
188 clear: both; 192 max-width: 956px; /* 1000 - 22 - 22 */
193 text-align: center;
194 margin: 22px auto;
195 color: #888;
196 }
197
198 .footer p {
199 font: 400 13px/22px 'Open Sans', 'Lucida Sans Unicode', 'Lucida Grande',
200 sans-serif;
189 } 201 }
190 202
191 .method .doc, 203 .method .doc,
192 .field .doc { 204 .field .doc {
193 padding-left: 44px; 205 padding-left: 44px;
194 } 206 }
195 207
196 .param { 208 .param {
197 font: 600 14px/22px 'Open Sans', 'Lucida Sans Unicode', 'Lucida Grande', 209 font: 600 14px/22px 'Open Sans', 'Lucida Sans Unicode', 'Lucida Grande',
198 sans-serif; 210 sans-serif;
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 } 335 }
324 336
325 p { 337 p {
326 border-left: solid 4px purple; 338 border-left: solid 4px purple;
327 } 339 }
328 340
329 section { 341 section {
330 border-left: solid 4px gray; 342 border-left: solid 4px gray;
331 } 343 }
332 */ 344 */
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