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

Side by Side Diff: chrome/common/extensions/docs/examples/apps/hello-php/main.css

Issue 3122030: Adding Chrome Web Store PHP Hello World (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 10 years, 4 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
Property Changes:
Added: svn:executable
+ *
OLDNEW
(Empty)
1 body {
2 font-family: Arial, Verdana, san-serif;
3 font-size: 11pt;
4 color: #666;
5 margin: 0;
6 }
7
8 nav {
9 display: block; /* for older browsers */
10 text-align: right;
11 margin-bottom: 10px;
12 padding: 10px;
13 border-bottom: 1px solid #C6D2EB;
14 background: -moz-linear-gradient(top, #fff, #EEF1F9 60%, #EEF1F9);
15 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#EEF1F9), color-stop(.6, #EEF1F9));
16 text-shadow: 1px 1px 1px #fff;
17 }
18
19 nav span {
20 float: left;
21 font-weight: bold;
22 }
23
24 a {
25 color: #2F58A4;
26 text-decoration: none;
27 }
28
29 a:hover {
30 text-decoration: underline;
31 }
32
33 form {
34 margin: 0;
35 }
36
37 input[type='text'] {
38 padding: 3px;
39 }
40
41 li {
42 list-style: none;
43 }
44
45 .error {
46 margin: 10px 0 10px;
47 padding: 10px;
48 text-align: center;
49 border: 1px solid red;
50 color: red;
51 font-weight: bold;
52 background-color: #ffffcc;
53 -moz-border-radius: 5px;
54 border-radius: 5px;
55 text-shadow: 2px 2px 2px #ccc;
56 }
57
58 #container {
59 margin-top: 10px;
60 padding: 10px;
61 }
62
63 #access-level {
64 text-align: center;
65 padding: 15px;
66 border: 1px dotted #C6D2EB;
67 font-size: 12pt;
68 -moz-border-radius: 15px;
69 border-radius: 15px;
70 width: 550px;
71 margin-left: auto;
72 margin-right: auto;
73 }
74
75 #license-server-response span {
76 font-weight: bold;
77 }
78
79 #license-server-response span.full {
80 color: green;
81 }
82
83 #license-server-response span.free_trial {
84 color: orange;
85 }
86
87 #license-server-response span.no {
88 color: red;
89 }
90
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698