- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / browser / resources / uber / uber_frame.css
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2  * Use of this source code is governed by a BSD-style license that can be
3  * found in the LICENSE file. */
4
5 body {
6   overflow: hidden;
7   padding-top: 20px;
8 }
9
10 html.changing-content body {
11   -webkit-transition: -webkit-transform 100ms;
12 }
13
14 h1 {
15   -webkit-margin-after: 1em;
16   /* This value must match the top padding of the uber page header. */
17   -webkit-margin-before: 21px;
18   -webkit-margin-start: 23px;
19   color: rgb(92, 97, 102);
20 }
21
22 ul {
23   list-style-type: none;
24   padding: 0;
25 }
26
27 li {
28   -webkit-border-start: 6px solid transparent;
29   -webkit-padding-start: 18px;
30   -webkit-user-select: none;
31   cursor: pointer;
32 }
33
34 li:hover {
35   color: #777;
36 }
37
38 li.selected {
39   -webkit-border-start-color: rgb(78, 87, 100);
40   cursor: default;
41   pointer-events: none;
42 }
43
44 #helpNavItem {
45   margin-top: 27px;
46 }
47
48 button {
49   background-color: white;
50   border: 0;
51   color: #999;
52   cursor: pointer;
53   font: inherit;
54   line-height: 17px;
55   margin: 6px 0;
56   padding: 0;
57 }
58
59 .selected > button {
60   color: rgb(70, 78, 90);
61 }