Skip to content

Commit

Permalink
Added recipes to cordova
Browse files Browse the repository at this point in the history
  • Loading branch information
heynemann committed May 15, 2011
1 parent 6a1d007 commit 2254292
Show file tree
Hide file tree
Showing 25 changed files with 5,651 additions and 0 deletions.
9 changes: 9 additions & 0 deletions cordova/recipes/big3/config.xml
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns="http://www.w3.org/ns/widgets" xmlns:pg="http://phonegap.com/ns/1.0" id="org.savagelook.big3" version="0.0.0">
<name>Big 3</name>
<description>A basic app for iOS, Android, and Blackberry</description>
<author href="http://savagelook.com" email="anthony.lukasavage@gmail.com">@tonylukasavage</author>
<icon src="img/icon-57.png" width="57" height="57" />
<icon src="img/icon-72.png" width="72" height="72" />
<icon src="img/icon-114.png" width="114" height="114" />
</widget>
28 changes: 28 additions & 0 deletions cordova/recipes/big3/css/app.css
@@ -0,0 +1,28 @@
* {
-webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */
-webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
-webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
-webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */
margin: 0;
padding: 0;
border: 0;
}

html, body {
height:100%;
}

body {
font: 24px Georgia;
color: #000;
text-align: center;
overflow: hidden;
background-repeat:no-repeat;
background: #fcfff4; /* old browsers */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcfff4), color-stop(40%,#dfe5d7), color-stop(100%,#b3bead)); /* webkit */
}

h1 {
text-shadow: 2px 2px 2px #444;
color: #aaa;
}
Binary file added cordova/recipes/big3/img/icon-114.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cordova/recipes/big3/img/icon-57.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cordova/recipes/big3/img/icon-72.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cordova/recipes/big3/img/icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cordova/recipes/big3/img/icon_hover.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cordova/recipes/big3/img/loading_foreground.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions cordova/recipes/big3/index.html
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<title>Cordova</title>
<link rel="stylesheet" href="css/app.css" type="text/css" media="screen" title="no title" charset="utf-8">
<script src="phonegap-0.9.4.js" type="text/javascript" charset="utf-8"></script>
<script src="js/json2.js" type="text/javascript" charset="utf-8"></script>
<script src="js/xui-bb-2.0.0.js" type="text/javascript" charset="utf-8"></script>
<script src="js/GloveBox.js" type="text/javascript" charset="utf-8"></script>
<script src="js/app.js" type="text/javascript" charset="utf-8"></script>
<!-- weinre -->
<!--
<script type="text/javascript" charset="utf-8" src="http://localhost:8080/target/target-script-min.js"></script>
-->
</head>
<body onload="onLoad();">
<h1>Cordova</h1>
<p>Now for Android, iOS, and Blackberry!</p>
</body>
</html>

0 comments on commit 2254292

Please sign in to comment.