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 5body { 6 overflow: hidden; 7 padding-top: 20px; 8} 9 10html.changing-content body { 11 -webkit-transition: -webkit-transform 100ms; 12} 13 14h1 { 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 22ul { 23 list-style-type: none; 24 padding: 0; 25} 26 27li { 28 -webkit-border-start: 6px solid transparent; 29 -webkit-padding-start: 18px; 30 -webkit-user-select: none; 31 cursor: pointer; 32} 33 34li:hover { 35 color: #777; 36} 37 38li.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 48button { 49 background-color: white; 50 border: 0; 51 color: #999; 52 cursor: pointer; 53 font: inherit; 54 line-height: 1.417em; /* 17px based on default 12px font size. */ 55 margin: 6px 0; 56 padding: 0; 57} 58 59.selected > button { 60 color: rgb(70, 78, 90); 61} 62