Commit | Line | Data |
---|---|---|
6b94b4db RK |
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: #FF9F00; | |
12 | font-family: "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif; | |
13 | overflow: hidden; | |
14 | max-width: 600px; | |
15 | margin: auto; | |
16 | padding: 20px 0; | |
17 | background-color: #000000; | |
18 | } | |
19 | ||
20 | button { | |
21 | border: none; | |
22 | border-radius: 300px; | |
23 | padding-top: 1px; | |
24 | padding-bottom: 2px; | |
dae45075 RK |
25 | padding-inline-start: .5em; |
26 | padding-inline-end: calc(.5em + 1px); | |
6b94b4db RK |
27 | cursor: pointer; |
28 | background-color: #C09070; | |
29 | text-transform: uppercase; | |
30 | color: #000000; | |
31 | } | |
32 | ||
33 | button:hover { | |
34 | background-color: #FFCF00; | |
35 | color: #000000; | |
36 | } | |
37 | ||
38 | button:hover:active { | |
39 | padding-top: 2px; | |
40 | padding-bottom: 1px; | |
dae45075 RK |
41 | padding-inline-start: calc(.5em + 1px); |
42 | padding-inline-end: .5em; | |
6b94b4db RK |
43 | } |
44 | ||
45 | a, a:visited { | |
46 | color: #3333FF; | |
47 | } | |
48 | ||
49 | #close-button { | |
50 | float: right; | |
51 | } |