Skip to content

Commit

Permalink
自适应手机版
Browse files Browse the repository at this point in the history
自适应手机版
  • Loading branch information
JacquesVonHamsterviel committed Oct 4, 2021
1 parent 98976db commit 1a44467
Show file tree
Hide file tree
Showing 1,151 changed files with 177,257 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
Binary file added app/app.apk
Binary file not shown.
Binary file added app/app.mobileconfig
Binary file not shown.
148 changes: 148 additions & 0 deletions app/css/reset.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,148 @@
body,
p,
h1,
h2,
h3,
h4,
h5,
li,
span,
i,
ul,
img,
a,
strong,
input,
button,
textarea,
select,
dl,
dd,
dt {
margin: 0;
padding: 0;
}


body {
font-family: "microsoft yahei", "Arial";
font-size: .24rem;
line-height: 1;
-webkit-user-select: none;
-webkit-text-size-adjust: 100% !important;
text-size-adjust: 100% !important;
-moz-text-size-adjust: 100% !important;
}

::-webkit-scrollbar {
width: 0;
height: 0;
}

* {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}

[class|="ico"] {
display: inline-block;
vertical-align: middle;
}

li {
list-style-type: none;
}

a {
text-decoration: none;
outline: none;
}

img {
border: none;
}

i,
var,
em {
font-style: normal;
}

button {
font-family: "microsoft yahei", "Arial";
outline: none;
cursor: pointer;
font-size: .24rem;
border: none;
}

iframe {
border: none;
}

input,
select,
textarea {
outline: none;
font-family: "microsoft yahei", "Arial";
font-size: .24rem;
border-radius: 0;
border: none;
background: none;
}

input:disabled {
opacity: 1;
color: #333;
}

input[type="submit"],
input[type="reset"],
input[type="text"],
input[type="password"],
input[type="number"],
input[type="button"],
button,
input[type="date"],
textarea {
-webkit-appearance: none;
border: none;
background: none;
}

textarea {
resize: none;
}

.fl {
float: left;
}

.fr {
float: right;
}

.clear {
clear: both;
}

.hide {
display: none !important;
}

.column{
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
}

.column > * {
column-count:1;
flex-grow:1;
flex-shrink 0;
text-align: center;
}
Loading

0 comments on commit 1a44467

Please sign in to comment.