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

content / test / data / popup.html [blame]

<html>
<head>
<meta charset="utf8">
<title>Test Popup Overlay</title>
<style type="text/css">
.overlay {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}
.modal {
  position: fixed;
  z-index: 1001;
  left: 50%;
  top: 50%; 
  width: 200px;
  height: 100px;
  margin-left: -100px;
  margin-top: -50px;
  background-color: #ffffff;
  text-align: center;
  line-height: 100px;
}
</style>
</head>
<body>
<div class="overlay"></div>
<div class="modal">Popup</div>
<div>Some text.</div>
</body>
</html>