Files
atom/HTML/index.html
2011-08-26 17:05:55 -07:00

68 lines
1.1 KiB
HTML

<html>
<head>
<style>
* {
margin: 0;
padding: 0;
}
#app-horizontal {
background-color: orange;
display: -webkit-box;
height: 100%;
-webkit-box-orient: horizontal;
}
#app-vertical {
background-color: yellow;
display: -webkit-box;
-webkit-box-flex: 1;
-webkit-box-orient: vertical;
}
.main {
width: 100%;
-webkit-box-flex: 1;
background-color: black;
}
.left {
width: 100px;
background-color: gray;
}
.right {
width: 100px;
background-color: green;
}
.top {
height: 100px;
background-color: purple;
}
.bottom {
height: 100px;
background-color: blue;
}
</style>
</head>
<body>
<div id='app-horizontal'>
<div id='app-vertical'>
</div>
</div>
</body>
<script src="vendor/underscore.js" type="text/javascript" charset="utf-8"></script>
<script src="vendor/jquery.js" type="text/javascript" charset="utf-8"></script>
<script>
var tabs = require('lib/tabs')
tabs.show()
</script>
</html>