]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/assets/en/css/light_theme.css
Create dark theme versions of Guide and About. Implements https://redmine.stoutner...
[PrivacyBrowserAndroid.git] / app / src / main / assets / en / css / light_theme.css
1 /*
2  * Copyright © 2017 Soren Stoutner <soren@stoutner.com>.
3  *
4  * This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
5  *
6  * Privacy Browser is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Privacy Browser is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 a {
21     color: #1976D2;
22     text-decoration: none;
23 }
24
25 h3 {
26     color: #0D4781;
27 }
28
29 strong.red {
30     color: #B71C1C;
31 }
32
33 strong.blue {
34     color: #1565C0;
35 }
36
37 item {
38     color: #1976D2;
39     font-weight: bold;
40 }
41
42 img.inline {
43     height: 16;
44     width: 16;
45 }
46
47 img.title {
48     vertical-align: bottom;
49     height: 32;
50     width: 32;
51 }
52
53 img.icon {
54     vertical-align: middle;
55     height: 32;
56     width: 32;
57 }
58
59 img.left {
60     float: left;
61     height: 32;
62     width: 32;
63 }
64
65 /* An image must be a block to be centered. */
66 img.center {
67     display: block;
68     margin-left: auto;
69     margin-right: auto;
70     height: 640;
71     width: 360;
72 }