OLD | NEW |
| (Empty) |
1 /* Copyright (c) 2015 The Chromium Authors. All rights reserved. | |
2 * Use of this source code is governed by a BSD-style license that can be | |
3 * found in the LICENSE file. | |
4 */ | |
5 | |
6 .security-main-view { | |
7 -webkit-user-select: text; | |
8 margin: 1em; | |
9 } | |
10 | |
11 .security-main-view .lock-icon { | |
12 display: inline-block; | |
13 margin: 0.2em; | |
14 vertical-align: middle; | |
15 } | |
16 | |
17 .security-main-view .security-state { | |
18 display: inline-block; | |
19 font-size: 1.2em; | |
20 font-weight: bold; | |
21 margin: 0.2em; | |
22 vertical-align: middle; | |
23 } | |
24 | |
25 .security-explanation { | |
26 margin: 16px 0px; | |
27 } | |
28 | |
29 .security-explanation .lock-icon { | |
30 display: inline-block; | |
31 vertical-align: bottom; | |
32 } | |
33 | |
34 .security-explanation .explanation-title { | |
35 display: inline-block; | |
36 font-size: 1.2em; | |
37 font-weight: bold; | |
38 margin-left: 4px; | |
39 } | |
40 | |
41 .security-explanation .explanation-text { | |
42 margin: 4px 0px; | |
43 } | |
OLD | NEW |