archive
/
oriment
Archived
1
Fork 0
This commit is contained in:
Jake Howard 2015-12-20 21:01:26 +00:00
parent 03a4c83d90
commit 7fe0d8570a
4 changed files with 11 additions and 31 deletions

11
.gitignore vendored
View File

@ -24,7 +24,10 @@ build/Release
# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules
plugins
platforms
www
node_modules/
plugins/
platforms/
www/
ionic.project

View File

@ -14,12 +14,12 @@ body {
-webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
-webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */
background-color:#E4E4E4;
font-family: Roboto sans-serif;
font-family: 'Roboto' sans-serif;
font-size:12px;
text-align: center;
height:100%;
margin:0px;
padding:0px;
padding:7px;
width:100%;
}
@ -37,6 +37,6 @@ footer {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 10vh;
width: 100vw;
padding-bottom: 15px;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

View File

@ -1,23 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *">
<meta name="format-detection" content="telephone=no">
<meta name="msapplication-tap-highlight" content="no">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="text/javascript" src="js/jquery.js"></script>
<title>Oriment</title>
</head>
<body id="main">
<div class="container jumbotron header">
<h1 class="animated rubberBand">Hi There</h1>
</div>
<footer>
<a class="btn btn-success btn-lg">Continue</a>
</footer>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/libs.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>