1/* Copyright 2014 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 6.gaia-input { 7 border: 1px solid #d9d9d9; 8 border-radius: 1px; 9 border-top: 1px solid #c0c0c0; 10 font-size: 15px; 11 height: 32px; 12 margin: 0; 13 padding: 0 8px; 14 width: 100%; 15} 16 17.gaia-input:focus { 18 border: 1px solid rgb(77, 144, 254); 19 box-shadow: inset 0 1px 2px rgba(0,0,0,0.3); 20 outline: none; 21} 22 23.blue-button { 24 background-color: rgb(77, 144, 254); 25 background-image: -webkit-linear-gradient(top, 26 rgb(77, 144, 254), 27 rgb(71, 135, 237)); 28 border: 1px solid rgb(48, 121, 237); 29 border-radius: 2px; 30 color: #fff; 31 font-size: 13px; 32 font-weight: bold; 33 height: 32px; 34 margin: 0 1.5em 1.2em 0; 35 text-shadow: 0 1px rgba(0, 0, 0, 0.1); 36} 37 38.blue-button:hover { 39 background-color: rgb(53, 122, 232); 40 background-image: -webkit-linear-gradient(top, 41 rgb(77, 144, 254), 42 rgb(53, 122, 232)); 43 border: 1px solid rgb(47, 91, 183); 44 text-shadow: 0 1px rgba(0, 0, 0, 0.3); 45} 46 47.blue-button:focus { 48 -webkit-box-shadow: inset 0 0 0 1px #fff; 49} 50 51.blue-button:focus:hover { 52 -webkit-box-shadow: inset 0 0 0 1px #fff, 0 1px 1px rgba(0, 0, 0, 0.1); 53} 54 55