Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /** | |
| 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
| 3 * Use of this source code is governed by a BSD-style license that can be | |
| 4 * found in the LICENSE file. | |
| 5 */ | |
| 6 | |
| 7 body { | |
| 8 font: 14px Arial; | |
| 9 } | |
| 10 | |
| 11 h1 { | |
| 12 margin: 30px 0 5px 0; | |
| 13 padding: 0; | |
| 14 } | |
| 15 code { | |
| 16 padding: 0; | |
| 17 margin: 5px 0; | |
| 18 display: block; | |
| 19 } | |
| 20 table { | |
| 21 border-collapse: collapse; | |
| 22 width: 100%; | |
| 23 margin: 15px 0; | |
| 24 } | |
| 25 td, th { | |
| 26 padding: 4px; | |
| 27 } | |
| 28 th { | |
| 29 text-align: left; | |
| 30 width: 130px; | |
| 31 } | |
| 32 tr { | |
| 33 display: none; | |
| 34 } | |
| 35 tr.rendered { | |
| 36 display: block; | |
| 37 } | |
| 38 tr.rendered:nth-child(odd) { | |
| 39 background: #eee; | |
| 40 } | |
| 41 #thumbnail { | |
| 42 position: fixed; | |
| 43 right: 20px; | |
| 44 top: 20px; | |
| 45 -webkit-box-shadow: 1px 1px 6px #000; | |
| 46 border: 4px solid #fff; | |
| 47 background: #fff; | |
| 48 } | |
| 49 #loader { | |
| 50 font: 30px Arial; | |
| 51 text-align: center; | |
| 52 padding: 100px; | |
| 53 } | |
| 54 #exif, #output { | |
| 55 display: none; | |
| 56 } | |
| OLD | NEW |