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