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/* Separates the Help nav item if there are at least 3 items. */ 45li:not([hidden]) ~ li:not([hidden]) ~ #helpNavItem { 46 margin-top: 27px; 47} 48 49button { 50 background-color: white; 51 border: 0; 52 color: #999; 53 cursor: pointer; 54 font: inherit; 55 line-height: 1.417em; /* 17px based on default 12px font size. */ 56 margin: 6px 0; 57 padding: 0; 58} 59 60.selected > button { 61 color: rgb(70, 78, 90); 62} 63