61 lines
918 B
HTML
61 lines
918 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>The bundle</title>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="row">
|
|
<div class="column" id="bundle-left">
|
|
<img src="../static/bundle-imgs/foo-0.jpg">
|
|
</div>
|
|
<div class="column" id="bundle-center">
|
|
|
|
</div>
|
|
<div class="column" id="bundle-right">
|
|
<img src="../static/bundle-imgs/foo-1.jpg">
|
|
<img src="../static/bundle-imgs/debris.found.ssw_lumsden_primary_school.leossoundday.jpg"></div>
|
|
</div>
|
|
|
|
<style type="text/css">
|
|
html,body{
|
|
top:0;
|
|
left: 0;
|
|
margin:0px;
|
|
}
|
|
.column{
|
|
float:left;
|
|
overflow-y:scroll;
|
|
height: 10%;
|
|
height: 100vh;
|
|
|
|
|
|
}
|
|
#bundle-left{
|
|
width: 30%;
|
|
background-color: lime;
|
|
|
|
}
|
|
#bundle-center{
|
|
width: 36%;
|
|
/*background-color: red;*/
|
|
padding: 0 2% 0 2%;
|
|
|
|
}
|
|
#bundle-right{
|
|
width: 30%;
|
|
background-color: blue;
|
|
|
|
}
|
|
img{
|
|
width: 100%;
|
|
}
|
|
.row:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
</style>
|
|
</body>
|
|
</html> |