summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/pdf/elements/viewer-progress-bar/viewer-progress-bar.css
blob: ecc142b59b78ca9ad3ca6522e2c4f6c749856556 (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
/* Copyright 2013 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. */

:host {
  -webkit-transition: opacity 400ms ease-in-out;
  background: rgb(29, 39, 57);
  border-radius: 5px;
  bottom: 26px;
  box-shadow: 0 1px 2px gray, 0 3px 3px rgba(0, 0, 0, .2);
  height: auto;
  left: 26px;
  pointer-events: none;
  position: fixed;
  width: auto;
}

.scaler {
  -webkit-transform: scale(0.25);
  -webkit-transform-origin: 0 0;
  float: left;
  height: 44px;
  margin: 8px;
  width: 44px;
}

#segments {
  border-radius: 50%;
  height: 176px;
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 176px;
}

.segment {
  -webkit-transform-origin: 0 100%;
  background: rgb(227, 234, 249);
  box-shadow: 0 0 0 6px rgb(29, 39, 57) inset;
  height: 50%;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
}

.center-circle {
  background-color: rgb(29, 39, 57);
  border-radius: 50%;
  height: 80px;
  left: 48px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 48px;
  width: 80px;
}

#text {
  color: rgb(227, 234, 249);
  float: left;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 58px;
  margin-right: 10px;
  margin-top: 1px;
}