http://git-wip-us.apache.org/repos/asf/cordova-tizen/blob/705f5283/www/cordova-tizen.css ---------------------------------------------------------------------- diff --git a/www/cordova-tizen.css b/www/cordova-tizen.css new file mode 100644 index 0000000..4c9c07d --- /dev/null +++ b/www/cordova-tizen.css @@ -0,0 +1,83 @@ +/* + * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + * +*/ + +.ui-popupwindow-screen { + background: #000000; + opacity: 0.4; +} +.ui-popupwindow { + background: #828282; + padding: 1px 1px; + color: white; + width: 80%; + margin-left: 10%; +} + +.popup-title { + background: #018ccc; + padding: 5px 5px; +} + +.popup-title p { + padding: 0px; + margin: 0px; + text-align: center; +} + +.popup-text { + background: #2d2d2d; + padding: 5px 5px; +} + +.popup-text p { + padding: 0px; + margin: 0px; + text-align: center; + vertical-align: middle; + line-height:100px; +} + +.popup-button-bg { + background: #424242; + padding: 5px 5px; +} + +.popup-button-bg ul { + list-style-type:none; + width: 80%; + margin-left: 10%; + text-align: center; + padding: 0px; +} + +.popup-button-bg li { + display: inline; +} + +.popup-button-bg li input { + border-radius:4px 4px 4px 4px; + border: 0px; + background: #545454; + padding:5px 15px; + color: white; + min-width: 80px; + margin: 0px 5px; +}
http://git-wip-us.apache.org/repos/asf/cordova-tizen/blob/705f5283/www/cordova_117.png ---------------------------------------------------------------------- diff --git a/www/cordova_117.png b/www/cordova_117.png new file mode 100644 index 0000000..c6fdaac Binary files /dev/null and b/www/cordova_117.png differ http://git-wip-us.apache.org/repos/asf/cordova-tizen/blob/705f5283/www/icon.png ---------------------------------------------------------------------- diff --git a/www/icon.png b/www/icon.png new file mode 100644 index 0000000..c6fdaac Binary files /dev/null and b/www/icon.png differ http://git-wip-us.apache.org/repos/asf/cordova-tizen/blob/705f5283/www/index.html ---------------------------------------------------------------------- diff --git a/www/index.html b/www/index.html new file mode 100644 index 0000000..a115b38 --- /dev/null +++ b/www/index.html @@ -0,0 +1,37 @@ +<!-- + + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +--> + +<!DOCTYPE html> +<html lang="en"> + <head> + <link rel="stylesheet" type="text/css" href="./cordova-tizen.css" /> + <script src="cordova-2.9.0.js"></script> + </head> + + <body> + <script> + document.addEventListener('deviceready', function () { + // Cordova is ready, do all your stuf here + console.log("Cordova is ready for platform " + window.device.platform + " v" + window.device.version + "!"); + }, false); + </script> + </body> +</html>
