| Line | |
|---|
| 1 |
<?xml version="1.0" encoding="utf-8"?> |
|---|
| 2 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
|---|
| 3 |
<html xmlns="http://www.w3.org/1999/xhtml"> |
|---|
| 4 |
<head> |
|---|
| 5 |
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> |
|---|
| 6 |
<script type="text/ecmascript" defer="defer" encoding="utf-8" src="roomTopicBanner.js"></script> |
|---|
| 7 |
<style type="text/css"> |
|---|
| 8 |
html { |
|---|
| 9 |
height: 100%; |
|---|
| 10 |
width: 100%; |
|---|
| 11 |
overflow: hidden; |
|---|
| 12 |
} |
|---|
| 13 |
|
|---|
| 14 |
body { |
|---|
| 15 |
display: table; |
|---|
| 16 |
border: none; |
|---|
| 17 |
border-spacing: 0; |
|---|
| 18 |
margin: 0; |
|---|
| 19 |
height: 100%; |
|---|
| 20 |
width: 100%; |
|---|
| 21 |
} |
|---|
| 22 |
|
|---|
| 23 |
.banner { |
|---|
| 24 |
display: table-row; |
|---|
| 25 |
background-color: white; |
|---|
| 26 |
} |
|---|
| 27 |
|
|---|
| 28 |
.banner > * { |
|---|
| 29 |
display: table-cell; |
|---|
| 30 |
border: none; |
|---|
| 31 |
vertical-align: top; |
|---|
| 32 |
} |
|---|
| 33 |
|
|---|
| 34 |
.body { |
|---|
| 35 |
display: table-row; |
|---|
| 36 |
border: none; |
|---|
| 37 |
} |
|---|
| 38 |
|
|---|
| 39 |
.body > * { |
|---|
| 40 |
display: table-cell; |
|---|
| 41 |
border: none; |
|---|
| 42 |
height: 100%; |
|---|
| 43 |
width: 100%; |
|---|
| 44 |
vertical-align: top; |
|---|
| 45 |
} |
|---|
| 46 |
|
|---|
| 47 |
.body > * > iframe { |
|---|
| 48 |
border: none; |
|---|
| 49 |
height: 100%; |
|---|
| 50 |
width: 100%; |
|---|
| 51 |
} |
|---|
| 52 |
</style> |
|---|
| 53 |
</head> |
|---|
| 54 |
<body> |
|---|
| 55 |
<div class="body"><div><iframe id="content"></iframe></div></div> |
|---|
| 56 |
</body> |
|---|
| 57 |
</html> |
|---|