blob: f999c586f2b1ef3978937c6b55c72b19426ce84f (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
/* 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. */
#font-settings > section {
overflow: hidden;
}
#font-settings .action-area {
-webkit-box-pack: start;
}
#font-settings .action-area .spacer {
-webkit-box-flex: 1;
display: -webkit-box;
}
#font-settings .button-strip {
width: 100%;
}
.font-setting-container {
display: -webkit-box;
}
#font-settings input[type='range'] {
width: 100%;
}
#minimum-font-sample {
height: 35px;
overflow: hidden;
width: 270px;
}
.font-input-div {
-webkit-margin-end: 3em;
width: 12em;
}
.font-input-div > div > select {
margin-bottom: 10px;
}
.font-input {
width: 100%;
}
.font-sample-div {
direction: ltr;
height: 70px;
overflow: hidden;
width: 270px;
}
.font-settings-huge {
float: right;
}
html[dir=rtl] .font-settings-huge {
float: left;
}
|