OLD | NEW |
| (Empty) |
1 /* Copyright 2014 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 html, div, span, body, ul, li { | |
7 border: 0; | |
8 margin: 0; | |
9 padding: 0; | |
10 font-family: "Arial", "Helvetica", sans-serif; | |
11 font-weight: normal; | |
12 /* Allows the user to move the window by dragging its content. */ | |
13 -webkit-app-region: drag; | |
14 } | |
15 | |
16 .header { | |
17 height: 46px; | |
18 background: #1c91c0; | |
19 padding: 15px; | |
20 } | |
21 | |
22 .header .title { | |
23 color: white; | |
24 float: left; | |
25 font-size: 24px; | |
26 line-height: 46px; | |
27 padding-left: 15px; | |
28 } | |
29 | |
30 .header .logo { | |
31 float: left; | |
32 height: 46px; | |
33 width: 46px; | |
34 background: url('chromoting48.webp'); | |
35 } | |
36 | |
37 .content { | |
38 text-align: center; | |
39 margin: auto; | |
40 width: 70%; | |
41 } | |
42 | |
43 .content .message { | |
44 padding: 30px; | |
45 font-size: 20px; | |
46 } | |
47 | |
48 .content ul { | |
49 list-style: none; | |
50 border-width: 0px 0px 1px 0px; | |
51 border-style: solid; | |
52 border-color: #f0f0f0; | |
53 } | |
54 | |
55 .content li { | |
56 border-width: 1px 0px 0px 0px; | |
57 border-style: solid; | |
58 border-color: #f0f0f0; | |
59 padding: 15px; | |
60 text-align: left; | |
61 font-size: 14px; | |
62 } | |
63 | |
64 .button { | |
65 padding: 0px 20px; | |
66 border: 1px solid #f0f0f0; | |
67 border-radius: 5px; | |
68 font-size: 14px; | |
69 font-weight: bold; | |
70 line-height: 36px; | |
71 color: #737373; | |
72 -webkit-app-region: no-drag; | |
73 } | |
74 | |
75 .footer { | |
76 padding-top: 30px; | |
77 padding-bottom: 30px; | |
78 /* Clear the float of its children. */ | |
79 overflow: auto; | |
80 width: 100% | |
81 } | |
82 | |
83 .button.default { | |
84 background: #427fed; | |
85 color: white; | |
86 } | |
87 | |
88 .button:hover { | |
89 border-color: #cecece; | |
90 } | |
91 | |
92 .button.default:active { | |
93 background: #2c56b1; | |
94 } | |
95 | |
96 .ok-button { | |
97 float: right; | |
98 margin-left: 10px; | |
99 } | |
100 | |
101 .cancel-button { | |
102 float: right; | |
103 } | |
OLD | NEW |