blob: 300c96f564bd74948c3c8e36f4990736f5a57381 (
plain)
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
|
/*
* Copyright (c) 2012 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 {
height: 100%;
}
body {
-webkit-box-orient: vertical;
-webkit-box-sizing: border-box;
display: -webkit-box;
font-family: Arial, Helvetica, sans-serif;
font-size: 84%;
height: 100%;
margin: 0;
padding: 8px;
}
.spacer {
-webkit-box-flex: 1;
}
.cookies-tree {
-webkit-box-flex: 1;
border: 1px solid lightgrey;
padding: 5px;
}
#info-banner {
background: -webkit-linear-gradient(#fff2b7, #fae691 97%, #878787);
padding: 2px 0;
}
.button-strip {
-webkit-box-orient: horizontal;
display: -webkit-box;
}
.button-strip > button {
-webkit-margin-end: 10px;
}
.button-strip > button:last-child {
-webkit-margin-end: 0;
}
|