Cleanup
This commit is contained in:
parent
03a4c83d90
commit
7fe0d8570a
4 changed files with 11 additions and 31 deletions
11
.gitignore
vendored
11
.gitignore
vendored
|
@ -24,7 +24,10 @@ build/Release
|
||||||
|
|
||||||
# Dependency directory
|
# Dependency directory
|
||||||
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
|
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
|
||||||
node_modules
|
|
||||||
plugins
|
|
||||||
platforms
|
node_modules/
|
||||||
www
|
plugins/
|
||||||
|
platforms/
|
||||||
|
www/
|
||||||
|
ionic.project
|
||||||
|
|
|
@ -14,12 +14,12 @@ body {
|
||||||
-webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
|
-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' */
|
-webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */
|
||||||
background-color:#E4E4E4;
|
background-color:#E4E4E4;
|
||||||
font-family: Roboto sans-serif;
|
font-family: 'Roboto' sans-serif;
|
||||||
font-size:12px;
|
font-size:12px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
height:100%;
|
height:100%;
|
||||||
margin:0px;
|
margin:0px;
|
||||||
padding:0px;
|
padding:7px;
|
||||||
width:100%;
|
width:100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -37,6 +37,6 @@ footer {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100vw;
|
||||||
height: 10vh;
|
padding-bottom: 15px;
|
||||||
}
|
}
|
||||||
|
|
BIN
www/img/logo.png
BIN
www/img/logo.png
Binary file not shown.
Before Width: | Height: | Size: 21 KiB |
|
@ -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>
|
|
Reference in a new issue