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

Side by Side Diff: chrome/common/extensions/docs/examples/api/webNavigation/basic/popup.css

Issue 8318001: Adding `content_security_policy` to a few sample extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Docs. Zips. Created 9 years, 1 month 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
(Empty)
1 /**
2 * Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7
8 body {
9 margin: 5px 10px 10px;
10 }
11
12 h1 {
13 color: #53637D;
14 font: 26px/1.2 Helvetica, sans-serif;
15 font-size: 200%;
16 margin: 0;
17 padding-bottom: 4px;
18 text-shadow: white 0 1px 2px;
19 }
20
21 body > section {
22 border-radius: 5px;
23 background: -webkit-linear-gradient(rgba(234, 238, 243, 0.2), #EAEEF3),
24 -webkit-linear-gradient(
25 left, #EAEEF3, #EAEEF3 97%, #D3D7DB);
26 font: 14px/1 Arial,Sans Serif;
27 padding: 10px;
28 width: 563px;
29 max-height: 400px;
30 overflow-y: auto;
31 box-shadow: inset 0px 2px 5px rgba(0,0,0,0.5);
32 }
33
34 body > section > ol {
35 padding: 0;
36 margin: 0;
37 list-style: none inside;
38 }
39
40 body > section > ol > li {
41 position: relative;
42 margin: 0.5em 0 0.5em 40px;
43 }
44
45 code {
46 word-wrap: break-word;
47 background: rgba(255,255,0, 0.5);
48 }
49
50 em {
51 position: absolute;
52 top: 0px;
53 left: -40px;
54 width: 30px;
55 text-align: right;
56 font: 30px/1 Helvetica, sans-serif;
57 font-weight: 700;
58 }
59
60 p {
61 min-height: 30px;
62 line-height: 1.2;
63 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698