|
1 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
4 |
|
5 html, body { |
|
6 margin: 0; |
|
7 height: 100%; |
|
8 } |
|
9 |
|
10 body { |
|
11 color: #555; |
|
12 font-family: Lucida Grande, Helvetica, Helvetica Neue, sans-serif; |
|
13 overflow: hidden; |
|
14 max-width: 600px; |
|
15 margin: auto; |
|
16 padding: 20px 0; |
|
17 background-color: #FFF; |
|
18 } |
|
19 |
|
20 button { |
|
21 border: 1px solid #CCC; |
|
22 padding: 5px 15px; |
|
23 cursor: pointer; |
|
24 background: rgba(255,255,255,0.4); |
|
25 text-transform: uppercase; |
|
26 color: #3498DB; |
|
27 } |
|
28 |
|
29 button:hover { |
|
30 background-color: #3498DB; |
|
31 color: #FFF; |
|
32 } |
|
33 |
|
34 a, a:visited { |
|
35 color: rgb(39,109,163); |
|
36 } |
|
37 |
|
38 #close-button { |
|
39 float: right; |
|
40 } |