blob: cf08c38d461154c8a023f449413b8b313e8e5fab (
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
|
/* Copyright (c) 2011 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,
body {
background-color: #EEE;
height: 100%;
margin: 0;
overflow: hidden;
}
.vbox {
-webkit-box-align: center;
-webkit-box-orient: vertical;
-webkit-box-pack: center;
display: -webkit-box;
height: 100%;
width: 100%;
}
.vbox > div {
-webkit-box-align: center;
-webkit-box-flex: 1;
-webkit-box-pack: center;
display: -webkit-box;
width: 80%;
}
.vbox > div.area-hidden {
display: none;
}
.vbox > div.buttons-area {
-webkit-box-pack: end;
}
.buttons-area > div {
padding: 3px;
width: 30%;
}
button {
width: 100%;
}
|