OLD | NEW |
---|---|
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 h2 { | 5 h2 { |
6 color: rgb(74, 142, 230); | 6 color: rgb(74, 142, 230); |
7 font-size: 100%; | 7 font-size: 100%; |
8 margin-bottom: 0; | 8 margin-bottom: 0; |
9 } | 9 } |
10 | 10 |
(...skipping 12 matching lines...) Expand all Loading... | |
23 div { | 23 div { |
24 -webkit-column-break-inside: avoid; | 24 -webkit-column-break-inside: avoid; |
25 display: inline-block; | 25 display: inline-block; |
26 width: 100%; | 26 width: 100%; |
27 } | 27 } |
28 | 28 |
29 div#signin-info { | 29 div#signin-info { |
30 -webkit-columns: 2; | 30 -webkit-columns: 2; |
31 } | 31 } |
32 | 32 |
33 div#token-info { | 33 div#token-info div#cookie-info { |
Evan Stade
2014/08/08 19:33:53
this selector doesn't make much sense. I think you
Mike Lerman
2014/08/08 20:02:04
I gave cookie-info its own section. When I tried t
Evan Stade
2014/08/08 20:05:20
just put a line return after the comma
| |
34 -webkit-columns: 1; | 34 -webkit-columns: 1; |
35 } | 35 } |
36 | 36 |
37 table.signin-details { | 37 table.signin-details { |
38 width: 100%; | 38 width: 100%; |
39 } | 39 } |
40 | 40 |
41 tr:nth-child(odd) { | 41 tr:nth-child(odd) { |
42 background: rgb(239, 243, 255); | 42 background: rgb(239, 243, 255); |
43 } | 43 } |
(...skipping 23 matching lines...) Expand all Loading... | |
67 tr[highlighted] { | 67 tr[highlighted] { |
68 -webkit-animation-duration: 3s; | 68 -webkit-animation-duration: 3s; |
69 -webkit-animation-name: highlight1; | 69 -webkit-animation-name: highlight1; |
70 -webkit-animation-timing-function: linear; | 70 -webkit-animation-timing-function: linear; |
71 } | 71 } |
72 | 72 |
73 tr[highlighted]:nth-child(odd) { | 73 tr[highlighted]:nth-child(odd) { |
74 -webkit-animation-duration: 3s; | 74 -webkit-animation-duration: 3s; |
75 -webkit-animation-name: highlight2; | 75 -webkit-animation-name: highlight2; |
76 -webkit-animation-timing-function: linear; | 76 -webkit-animation-timing-function: linear; |
77 } | 77 } |
OLD | NEW |