Add footer page, so that it's easy to click next page

This commit is contained in:
Kyle Fang
2013-12-29 17:26:41 +08:00
parent 37024a4362
commit fe71e67adb
3 changed files with 16 additions and 0 deletions

View File

@@ -14,6 +14,11 @@
</div>
<div id="content">
</div>
<div id="footer">
<div class="copyright">
@2013 Combee
</div>
</div>
<script src="bower_components/requirejs/require.js" data-main="scripts/main"></script>
</body>
</html>

10
app/styles/_footer.scss Normal file
View File

@@ -0,0 +1,10 @@
#footer {
height: 45px;
background-color: #FFF;
.copyright {
line-height: 45px;
font-size: 14px;
color: $gray-dark;
margin-left: 5px;
}
}

View File

@@ -5,6 +5,7 @@ $icon-font-path: "/bower_components/sass-bootstrap/fonts/";
@import "helper";
@import "variables";
@import "header";
@import "footer";
@import "content";
@import "login";
@import "receipts";