aboutsummaryrefslogtreecommitdiff
path: root/vfd-main/public/images/hud/overlay.html
blob: 58b0ef71edeef300b5266d661c040eb66cf243df (plain) (blame)
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
<!DOCTYPE html>

<html>
  <head>
    <style>
      html,body {
      margin: 0;
      width: 100%;
      height: 100%;
      }
    </style>
  </head>
  <body>

    <div style="width: 100%; height: 100%; display: flex; align-content: flex-start; align-items: stretch; flex-direction: row">
      <div style="flex: 1; background-color: yellow;">side menu</div>
      
      <div style="flex: 1 1 70%; background-color: red; position: relative;">
	<div style="background-color: green; z-index: 0; display: flex; align-content: center; align-items: stretch; flex-direction: column; position: absolute; left: 0; right: 0; top: 0; bottom: 0;">
	  <object style="flex: 1 1 100%;" type="image/svg+xml" data="horizon.svg">level0</object>
	</div>
	
	<div style="z-index: 1; display: flex; align-content: center; align-items: stretch; flex-direction: column; position: absolute; left: 0; right: 0; top: 0; bottom: 0;">
	  <object style="flex: 1 1 100%;" type="image/svg+xml" data="roll.svg">level0</object>
	</div>
      </div>
    </div>
  </body>
</html>