summaryrefslogtreecommitdiff
path: root/docs/src/css/power-estimate.css
blob: e876ec28e718b28e79f486c5b1c5ea4144873d5e (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
81
/*
 * Copyright (c) 2021 The ZMK Contributors
 *
 * SPDX-License-Identifier: MIT
 */

.powerEstimate {
  margin: 20px 0;
}

.powerEstimate > h3 > span {
  text-transform: capitalize;
}

.powerEstimateBar {
  height: 64px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.03) 0px 10px 20px 0px,
    rgba(0, 0, 0, 0.1) 0px 1px 4px 0px;
  border-radius: 64px;
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
}

.powerEstimateBarSection {
  transition: all 0.2s ease;
  flex-grow: 1;
}

.powerEstimateBarSection.rightSection {
  display: flex;
  justify-content: flex-end;
}

.powerEstimateTooltipWrap {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transform: translateY(calc(-100% - 8px));
  transition: opacity 0.2s ease;
}

.powerEstimateBarSection:hover .powerEstimateTooltipWrap {
  visibility: visible;
  opacity: 1;
}

.powerEstimateTooltip {
  display: block;
  position: relative;
  box-shadow: var(--ifm-global-shadow-tl);
  width: 260px;
  padding: 10px;
  border-radius: 4px;
  background: var(--ifm-background-surface-color);
  transform: translateX(-15px);
}

.rightSection .powerEstimateTooltip {
  transform: translateX(15px);
}

.powerEstimateTooltip:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 27px;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-top: 8px solid var(--ifm-background-surface-color);
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}

.rightSection .powerEstimateTooltip:after {
  left: unset;
  right: 27px;
  margin-right: -8px;
}