Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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/. */
5 html, body {
6 margin: 0;
7 height: 100%;
8 }
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 }
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 }
29 button:hover {
30 background-color: #3498DB;
31 color: #FFF;
32 }
34 a, a:visited {
35 color: rgb(39,109,163);
36 }
38 #close-button {
39 float: right;
40 }