1// Copyright (c) 2010 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 5html { 6 overflow-x: hidden; 7} 8 9body { 10 font-family: Helvetica, Arial, sans-serif; 11} 12 13#search_container { 14 text-align: center; 15} 16 17#search { 18 width: 85%; 19} 20 21.app { 22 width: 100%; 23 margin-top: 7px; 24 margin-bottom: 7px; 25 margin-left: 2px; 26 margin-right: 20px; 27 white-space: nowrap; 28} 29 30.app img { 31 vertical-align: middle; 32 height: 38px; 33 width: 38px; 34} 35 36.app_title { 37 vertical-align: middle; 38 margin-left: 5px; 39} 40 41.app:hover { 42 background-color: rgb(250,250,250); 43 cursor:pointer; 44 outline: 1px dotted rgb(100,100,200); 45} 46 47.app_selected,.app_selected:hover { 48 background-color: rgb(230,230,230); 49} 50