updated 添加应用下载

This commit is contained in:
mumuy 2016-04-29 16:56:12 +08:00
parent 3ba32fc7b5
commit f2824609c1
6 changed files with 72 additions and 0 deletions

27
app.html Normal file
View File

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>三姑六婆计算器</title>
<meta name="keywords" content="过年走亲访友,拜年神器,android">
<meta name="description" content="">
<link rel="stylesheet" href="style/app.css">
</head>
<body>
<div class="wrapper">
<div class="container">
<div class="mod-app">
<div class="icon"><img src="image/icon.png" width="72" height="72"/></div>
<div class="info">
<p>三姑六婆计算器</p>
<p><a href="app/relationship.apk">下载</a></p>
</div>
</div>
<div class="mod-view">
<img src="image/1.jpg" height="300">
<img src="image/2.jpg" height="300">
</div>
</div>
</div>
</body>
</html>

BIN
app/relationship.apk Normal file

Binary file not shown.

BIN
image/1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

BIN
image/2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

BIN
image/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

45
style/app.css Normal file
View File

@ -0,0 +1,45 @@
html{color:#000;background:#FFF}body,div,dl,dt,dd,ul,ol,li,h1,h3,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}ol,ul{list-style:none}caption,th{text-align:left}h1,h3,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;*font-size:100%}legend{color:#000}
html{
height:100%;
}
body{
height: 100%;
font-size: 14px;
font-family: Arial,Helvetica,"Microsoft Yahei";
background: #fdfdfd;
color:#757575;
}
a{
color:#333;
text-decoration: none;
}
a:hover{
text-decoration: underline;
}
.container{
width:640px;
margin:0 auto;
}
.mod-app{
height: 72px;
padding-top: 100px;
margin-bottom: 25px;
}
.mod-app .icon{
float:left;
width: 72px;
height: 72px;
}
.mod-app .info{
margin-left: 90px;
line-height: 28px;
}
.mod-view{
padding:20px 15px;
background: #f8f8f8;
}
.mod-view img{
height: 300px;
margin-right: 10px;
}