mirror of
https://github.com/Doodle3D/doodle3d-connect.git
synced 2024-11-05 07:03:24 +01:00
Fixed Web App icon and some style tweaks
This commit is contained in:
parent
f21734be84
commit
7a866beaf6
49
chosen.html
49
chosen.html
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Chosen</title>
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
||||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="./img/webpage_icons/apple-touch-icon-144x144-precomposed.png" />
|
||||
<link rel="icon" type="image/ico" href="./img/favicon.ico"/>
|
||||
<meta id="Viewport" name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=yes">
|
||||
|
||||
<link href="css/normalize.css" rel="stylesheet" media="screen">
|
||||
<link href="css/chosen.min.css" rel="stylesheet" media="screen">
|
||||
<style>
|
||||
#network {
|
||||
width: 200px;
|
||||
}
|
||||
</style>
|
||||
<script src="js/libs/jquery-1.8.3.min.js" type="text/javascript"></script>
|
||||
<script src="js/libs/chosen.jquery.min.js" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
$(function() {
|
||||
console.log("ready");
|
||||
var networkSelector = $("#network");
|
||||
networkSelector.chosen();
|
||||
|
||||
setTimeout(function() {
|
||||
console.log("fill");
|
||||
networkSelector.append(
|
||||
$("<option></option>").val("a").html("Optie a"),
|
||||
$("<option></option>").val("b").html("Optie b"),
|
||||
$("<option></option>").val("c").html("Optie c")
|
||||
);
|
||||
networkSelector.trigger("chosen:updated");
|
||||
},1000);
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<form id="networkForm">
|
||||
<select id="network" name="" data-placeholder="Choose a country...">
|
||||
<!-- <option value=""></option> -->
|
||||
</select>
|
||||
</form>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -46,27 +46,6 @@ only screen and (max-width: 720px) and (-webkit-min-device-pixel-ratio : 1.5) {
|
||||
list-style-type: none;
|
||||
float: none;
|
||||
}
|
||||
#list a {
|
||||
background-color: #fff;
|
||||
margin: 0 0 1em 0;
|
||||
padding: 2em 0 0 0;
|
||||
|
||||
width: 100%;
|
||||
height: 3.0em;
|
||||
|
||||
border: 1px solid #333;
|
||||
border-radius: 15px;
|
||||
|
||||
-moz-box-shadow: 0 2px 7px 0 rgba(16, 16, 16, 0.60);
|
||||
-webkit-box-shadow: 0 2px 7px 0 rgba(16, 16, 16, 0.60);
|
||||
box-shadow: 0 2px 7px 0 rgba(16, 16, 16, 0.60);
|
||||
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
cursor: pointer;
|
||||
|
||||
transition:background-color 0.1s, color 0.1s;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
BIN
img/apple-touch-icon-144x144-precomposed.png
Normal file
BIN
img/apple-touch-icon-144x144-precomposed.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.3 KiB |
12
index.html
12
index.html
@ -3,14 +3,16 @@
|
||||
<head>
|
||||
<title>Doodle3D Connect</title>
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="./img/webpage_icons/apple-touch-icon-144x144-precomposed.png" />
|
||||
<link rel="icon" type="image/ico" href="./img/favicon.ico"/>
|
||||
<meta id="Viewport" name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=yes">
|
||||
|
||||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="./img/apple-touch-icon-144x144-precomposed.png">
|
||||
<link rel="shortcut" sizes="144x144" href="./img/apple-touch-icon-144x144-precomposed.png">
|
||||
<link rel="icon" type="image/ico" href="./img/favicon.ico">
|
||||
|
||||
<link href="css/normalize.css" rel="stylesheet" media="screen">
|
||||
<link href="css/chosen.min.css" rel="stylesheet" media="screen">
|
||||
<link href="css/add2home.css" rel="stylesheet" media="screen">
|
||||
|
Loading…
Reference in New Issue
Block a user