| 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 html { | 5 html { |
| 6 height: 100%; | 6 height: 100%; |
| 7 width: 100%; | 7 width: 100%; |
| 8 } | 8 } |
| 9 | 9 |
| 10 body { | 10 body { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 #footer-container { | 36 #footer-container { |
| 37 display: none; | 37 display: none; |
| 38 position: fixed; | 38 position: fixed; |
| 39 text-align: center; | 39 text-align: center; |
| 40 width: 100%; | 40 width: 100%; |
| 41 } | 41 } |
| 42 | 42 |
| 43 #footer { | 43 #footer { |
| 44 color: #646464; | 44 color: #646464; |
| 45 font-size: 1.3em; |
| 45 } | 46 } |
| 46 | 47 |
| 47 #take-a-tour { | 48 #take-a-tour { |
| 48 background: -webkit-gradient( | 49 background: -webkit-gradient( |
| 49 linear, left top, left bottom, from(#f5f5f5), to(#f1f1f1)); | 50 linear, left top, left bottom, from(#f5f5f5), to(#f1f1f1)); |
| 50 border: 1px solid #ccc; | 51 border: 1px solid #ccc; |
| 51 border-radius: 2px; | 52 border-radius: 2px; |
| 52 box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08), | 53 box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08), |
| 53 inset 0 0 2px rgba(255, 255, 255, 0.6); | 54 inset 0 0 2px rgba(255, 255, 255, 0.6); |
| 54 color: rgb(73, 73, 74); | 55 color: rgb(73, 73, 74); |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 margin-right: auto; | 149 margin-right: auto; |
| 149 } | 150 } |
| 150 } | 151 } |
| 151 @media only screen and (max-width: 605px) { | 152 @media only screen and (max-width: 605px) { |
| 152 #footer { | 153 #footer { |
| 153 /* the footer horizontally fills the page, so add some margin */ | 154 /* the footer horizontally fills the page, so add some margin */ |
| 154 margin-left: 20px; | 155 margin-left: 20px; |
| 155 margin-right: 20px; | 156 margin-right: 20px; |
| 156 } | 157 } |
| 157 } | 158 } |
| OLD | NEW |