2019-08-19 23:47:53 -06:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
2019-08-20 12:38:01 -06:00
|
|
|
<title>Vue Sample Aspect Ratio</title>
|
2019-08-19 23:47:53 -06:00
|
|
|
<style>
|
2019-08-20 12:24:39 -06:00
|
|
|
#pagestyle {
|
2019-08-19 23:47:53 -06:00
|
|
|
border: 0px;
|
|
|
|
padding 0px;
|
|
|
|
margin: 0px;
|
|
|
|
background: #aaa;
|
|
|
|
}
|
|
|
|
#appstyle {
|
|
|
|
position: fixed;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%)
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
2019-08-20 12:24:39 -06:00
|
|
|
<body id="pagestyle">
|
|
|
|
<div id="appstyle">
|
2019-08-19 23:47:53 -06:00
|
|
|
<div id="app"></div>
|
|
|
|
</div>
|
|
|
|
<!-- built files will be auto injected -->
|
|
|
|
</body>
|
|
|
|
</html>
|