| 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 .app { | 5 .app { |
| 6 outline: none; | 6 outline: none; |
| 7 position: absolute; | 7 position: absolute; |
| 8 text-align: center; | 8 text-align: center; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 cursor: pointer; | 92 cursor: pointer; |
| 93 } | 93 } |
| 94 | 94 |
| 95 .app-img-container > img:first-child { | 95 .app-img-container > img:first-child { |
| 96 display: block; | 96 display: block; |
| 97 } | 97 } |
| 98 | 98 |
| 99 .app .invisible { | 99 .app .invisible { |
| 100 visibility: hidden; | 100 visibility: hidden; |
| 101 } | 101 } |
| 102 | |
| 103 #app-launcher-promo { | |
| 104 background-color: white; | |
| 105 border: 1px solid lightgray; | |
| 106 border-bottom-width: 3px; | |
| 107 border-radius: 2px; | |
| 108 border-top-width: 2px; | |
| 109 bottom: 90px; | |
| 110 height: 120px; | |
| 111 left: 50%; | |
| 112 margin-left: -300px; | |
| 113 position: fixed; | |
| 114 width: 600px; | |
| 115 } | |
| 116 | |
| 117 #app-launcher-promo > .close-button { | |
| 118 position: absolute; | |
| 119 right: 10px; | |
| 120 top: 10px; | |
| 121 width: 14px; | |
| 122 } | |
| 123 | |
| 124 .apps-promo-text { | |
| 125 color: #222; | |
| 126 font-size: 16px; | |
| 127 left: 30px; | |
| 128 line-height: 24px; | |
| 129 position: absolute; | |
| 130 top: 30px; | |
| 131 } | |
| 132 | |
| 133 .apps-promo-learn-more { | |
| 134 background-color: rgb(77, 144, 254); | |
| 135 border: 1px solid rgb(47, 91, 183); | |
| 136 border-radius: 2px; | |
| 137 color: white; | |
| 138 cursor: default; | |
| 139 font-size: 11px; | |
| 140 font-weight: bold; | |
| 141 height: 27px; | |
| 142 left: 30px; | |
| 143 line-height: 27px; | |
| 144 padding: 0 8px; | |
| 145 position: absolute; | |
| 146 text-align: center; | |
| 147 text-decoration: none; | |
| 148 top: 70px; | |
| 149 width: 90px; | |
| 150 } | |
| 151 | |
| 152 .apps-promo-learn-more:hover { | |
| 153 background-image: -webkit-linear-gradient( | |
| 154 top, rgb(77, 144, 254), rgb(53, 122, 232)); | |
| 155 border: 1px solid rgb(47, 91, 183); | |
| 156 } | |
| 157 | |
| 158 #app-launcher-promo > img { | |
| 159 bottom: 0; | |
| 160 position: absolute; | |
| 161 right: 30px; | |
| 162 } | |
| OLD | NEW |