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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 visibility: hidden; | 100 visibility: hidden; |
101 } | 101 } |
102 | 102 |
103 #app-launcher-promo { | 103 #app-launcher-promo { |
104 background-color: white; | 104 background-color: white; |
105 border: 1px solid lightgray; | 105 border: 1px solid lightgray; |
106 border-bottom-width: 3px; | 106 border-bottom-width: 3px; |
107 border-radius: 2px; | 107 border-radius: 2px; |
108 border-top-width: 2px; | 108 border-top-width: 2px; |
109 bottom: 90px; | 109 bottom: 90px; |
110 font-family: Arial, Helvetica, sans-serif; | |
111 height: 120px; | 110 height: 120px; |
112 left: 50%; | 111 left: 50%; |
113 margin-left: -300px; | 112 margin-left: -300px; |
114 position: fixed; | 113 position: fixed; |
115 width: 600px; | 114 width: 600px; |
116 } | 115 } |
117 | 116 |
118 #app-launcher-promo > .close-button { | 117 #app-launcher-promo > .close-button { |
119 position: absolute; | 118 position: absolute; |
120 right: 10px; | 119 right: 10px; |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 background-image: -webkit-linear-gradient( | 153 background-image: -webkit-linear-gradient( |
155 top, rgb(77, 144, 254), rgb(53, 122, 232)); | 154 top, rgb(77, 144, 254), rgb(53, 122, 232)); |
156 border: 1px solid rgb(47, 91, 183); | 155 border: 1px solid rgb(47, 91, 183); |
157 } | 156 } |
158 | 157 |
159 #app-launcher-promo > img { | 158 #app-launcher-promo > img { |
160 bottom: 0; | 159 bottom: 0; |
161 position: absolute; | 160 position: absolute; |
162 right: 30px; | 161 right: 30px; |
163 } | 162 } |
OLD | NEW |