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 5h2 { 6 color: rgb(74, 142, 230); 7 font-size: 100%; 8 margin-bottom: 0; 9} 10 11.zero { 12 color: rgb(127, 127, 127); 13} 14 15.ok { 16 background: rgb(204, 255, 204); 17} 18 19tr.header { 20 font-weight: bold; 21} 22 23div { 24 -webkit-column-break-inside: avoid; 25 display: inline-block; 26 width: 100%; 27} 28 29div#signin-info { 30 -webkit-columns: 2; 31} 32 33div#token-info { 34 -webkit-columns: 1; 35} 36 37table.signin-details { 38 width: 100%; 39} 40 41tr:nth-child(odd) { 42 background: rgb(239, 243, 255); 43} 44 45table.signin-details tr:nth-child(odd).ok { 46 background: rgb(204, 243, 204); 47} 48 49@-webkit-keyframes highlight1 { 50 0% { 51 background: rgb(255, 255, 0); 52 } 53 100% { 54 background: rgb(255, 255, 255); 55 } 56} 57 58@-webkit-keyframes highlight2 { 59 0% { 60 background: rgb(155, 158, 166); 61 } 62 100% { 63 background: rgb(239, 243, 255); 64 } 65} 66 67tr[highlighted] { 68 -webkit-animation-duration: 3s; 69 -webkit-animation-name: highlight1; 70 -webkit-animation-timing-function: linear; 71} 72 73tr[highlighted]:nth-child(odd) { 74 -webkit-animation-duration: 3s; 75 -webkit-animation-name: highlight2; 76 -webkit-animation-timing-function: linear; 77}