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

Side by Side Diff: chrome/common/extensions/docs/server2/static/css/site.css

Issue 10689117: Extensions Docs Server: Support APIs with properties (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Storage API looking good Created 8 years, 5 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 body { 1 body {
2 color: #333; 2 color: #333;
3 font: 13px/22px 'Open Sans',arial,sans-serif; 3 font: 13px/22px 'Open Sans',arial,sans-serif;
4 font-weight: 400; 4 font-weight: 400;
5 background-color: white; 5 background-color: white;
6 margin: 0; 6 margin: 0;
7 padding: 0; 7 padding: 0;
8 } 8 }
9 9
10 p { 10 p {
11 margin: 1em 0 0 0; 11 margin: 1em 0 0 0;
12 color: #767676; 12 color: #767676;
13 font-size: 14px; 13 font-size: 14px;
14 } 14 }
15 15
16 p.note, 16 p.note,
17 p.caution, 17 p.caution,
18 p.warning { 18 p.warning {
19 margin: 1em 0 0 0; 19 margin: 1em 0 0 0;
20 padding: .2em .5em .2em .9em; 20 padding: .2em .5em .2em .9em;
21 background-color: #EFEFEF; 21 background-color: #EFEFEF;
22 border-top: 1px solid; 22 border-top: 1px solid;
23 border-bottom: 1px solid; 23 border-bottom: 1px solid;
24 } 24 }
25 25
26 p.note { 26 p.note {
27 border-color: #36C; 27 border-color: #36C;
28 } 28 }
29 29
30 p.caution {
31 border-color: #FC3;
32 }
33
34 p.warning {
35 border-color: #A03;
36 }
37
30 a, a:link { 38 a, a:link {
31 text-decoration: none; 39 text-decoration: none;
32 color: black; 40 color: black;
33 font-weight: 600; 41 font-weight: 600;
34 } 42 }
35 43
36 a:visited { 44 a:visited {
37 color: #61C; 45 color: #61C;
38 } 46 }
39 47
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 z-index: 1; 358 z-index: 1;
351 position: relative; 359 position: relative;
352 } 360 }
353 361
354 #gc-toc div.line { 362 #gc-toc div.line {
355 border-top: thin solid #FAFAFA; 363 border-top: thin solid #FAFAFA;
356 height: 1px; 364 height: 1px;
357 margin: 1.3em 1em 0 0; 365 margin: 1.3em 1em 0 0;
358 padding: 0; 366 padding: 0;
359 } 367 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698