aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/tooltip-viewport/tooltip-viewport.css
blob: b9a237cfcff1a261a19e8a131ae4afa90b151ed7 (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
body {
  height: 1200px;
}
.tooltip {
  min-width: 250px;
  max-width: 500px;
}
.tooltip .tooltip-inner {
  min-width: 250px;
  max-width: 500px;
  min-height: 200px;
}
.placeholder {
  height: 900px;
}
.container-viewport {
  position: absolute;
  top: 600px;
  left: 200px;
  width: 600px;
  height: 400px;
  background: #c00;
}
.btn-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}