- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / examples / apps / calculator / tests / manual.css
1 /**
2  * Copyright (c) 2012 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 body {
8   font-family: "Open Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
9   margin: 8px;
10 }
11
12 .bottom {
13   background: LightSteelBlue;
14   height: 1em;
15 }
16
17 .browser {
18   background: SteelBlue;
19   font-size: 80%;
20   font-weight: normal;
21   text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 1px;
22   padding: 0.5em 0 0.5em 1.25em;
23 }
24
25 .details {
26   color: black;
27 }
28
29 .failure, .failure .success {
30   background: LightCoral;
31 }
32
33 .header {
34   color: GhostWhite;
35   padding: 0;
36 }
37
38 li {
39   margin: 0.5em 0;
40   padding: 0;
41   font-weight: bold;
42 }
43
44 li.failure .difference {
45   background: IndianRed;
46 }
47
48 li li {
49   margin: 0;
50   padding: 0;
51 }
52
53 li li p {
54   font-weight: normal;
55 }
56
57 li p {
58   margin: 0;
59 }
60
61 ol {
62   list-style: decimal inside;
63   margin: 0;
64   padding: 0;
65 }
66
67 ol p {
68   font-style: italic;
69   padding: 1em 1em 0 1em;
70 }
71
72 ol ol {
73   list-style: lower-alpha;
74   padding: 0.5em 0.5em 0.5em 4em;
75 }
76
77 ol ol p {
78   font-family: "Courier", "Courier New", monospace;
79   font-style: normal;
80   padding: 0;
81   margin: 0 0 0 0.5em;
82   white-space: pre;
83 }
84
85 .status {
86   height: 0.4em;
87   padding: 0;
88 }
89
90 .success {
91   background: LightGreen;
92 }
93
94 .summary {
95   background: WhiteSmoke;
96   color: Black;
97   padding: 0.5em 0 0.5em 1em;
98   position: static;
99 }
100
101 .summary .results .failed {
102   color: LightCoral;
103   text-shadow: rgba(0, 0, 0, 1) 1px 1px 1px;
104 }
105
106 .summary .results .failed.none {
107   color: Black;
108   text-shadow: none;
109 }
110
111 .summary .results .passed {
112   color: LightGreen;
113   text-shadow: rgba(0, 0, 0, 1) 1px 1px 1px;
114 }
115
116 .summary .results .passed.none {
117   color: Black;
118   text-shadow: none;
119 }
120
121 .title {
122   background: rgb(34, 34, 85);
123   border-radius: 8px 8px 0 0;
124   cursor: default;
125   font-size: 125%;
126   line-height: 1em;
127   margin: 0;
128   -webkit-user-select: none;
129   font-weight: lighter;
130   padding: 0.5em 0 0.5em 0.8em;
131 }