aboutsummaryrefslogtreecommitdiff
path: root/arc-firefox-theme/chrome/browser/devtools/font-inspector.css
blob: 2c4a36534c239ff2ffda7f98f44e5347191eab8d (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding-bottom: 20px;
}

#all-fonts {
  padding: 0;
  margin: 0;
}

#showall {
  border-radius: 0;
  border: 1px solid black;
  margin: 3px;
  cursor: pointer;
  position: fixed;
  bottom: 0;
  right: 0;
}

.font {
  padding: 10px 10px;
}

.theme-dark .font {
  border-bottom: 1px solid #444;
}

.theme-light .font {
  border-bottom: 1px solid #DDD;
}

.font:last-of-type {
  border-bottom: 0;
}

.theme-light .font:nth-child(even) {
  background: #F4F4F4;
}

.font-preview {
  margin-left: -4px;
  height: 60px;
  display: block;
}

.font-info {
  display: block;
}

.font-name {
  display: inline;
}

.font-css-code {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 5px;
}

.theme-light .font-css-code,
.theme-light .font-url {
  border: 1px solid #CCC;
  background: white;
}

.theme-dark .font-css-code,
.theme-dark .font-url {
  border: 1px solid #333;
  background: black;
  color: white;
}