Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
r00tSe7en authored Jan 20, 2019
1 parent 1871cf8 commit 12a1d4a
Show file tree
Hide file tree
Showing 8 changed files with 413 additions and 0 deletions.
4 changes: 4 additions & 0 deletions comonjs/jquery-1.11.2.min.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions comonjs/modernizr-2.6.2.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

133 changes: 133 additions & 0 deletions css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
/**Variables 变量**/
/**背景图片**/
.fixedTop {
position: fixed;
width: 100%;
left: 0;
top: 0;
}
.fixedBottom {
position: fixed;
width: 100%;
left: 0;
bottom: 0;
}
/**圆角*/
/* Mixin 四边圆角 */
/**boxS*/
.box_S {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}
* {
margin: 0;
padding: 0;
outline: none;
}
body {
color: #ffffff;
font-size: 14px;
font-family: tahoma, "Microsoft YaHei", 'PingFang SC', 'Helvetica Neue', 'Helvetica', 'STHeitiSC-Light', 'Arial', sans-serif;
}
/**Nested Rules 嵌套的规则**/
.bordered {
border-bottom: solid 1px #e8e8e8;
}
.borderTop {
border-top: solid 1px #e8e8e8;
}
.blockMid {
display: block;
margin: 0 auto;
}
.prelative {
position: relative;
}
.pabsolute {
position: absolute;
}
.content {
padding: 0 4%;
width: 100%;
margin: 0 auto;
}
.pright {
right: 4%;
}
.bgcolor {
background: #fa5527;
}
.white {
color: #ffffff;
}
.input_wrap_box {
background: #0f1034;
text-align: center;
display: block;
margin: 0 auto;
border-radius: 25px;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
width: 770px;
height: 50px;
line-height: 50px;
margin-top: 20px;
position: relative;
}
.input_wrap_box .input_cover {
text-align: center;
line-height: 48px;
width: 100%;
position: absolute;
left: 0;
top: 1px;
z-index: 3;
background: #0f1034;
border-radius: 27px;
-webkit-border-radius: 27px;
-moz-border-radius: 27px;
/*pointer-events:none;*/
}
.input_wrap_box #sercHead {
background: #0f1034;
width: 100%;
display: block;
text-align: center;
line-height: 48px;
border: 1px solid #1d2556;
border-radius: 25px;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
color: #ffffff;
}
.input_wrap_box #sercHead.cur {
border: 1px solid #6974b3;
}
.iconlogo {
display: block;
margin: 0 auto;
padding: 45px 0;
}
.options {
width: 100%;
text-align: center;
margin-top:20px;
}
.footer {
width: 100%;
margin-top: 50px;
}
/*@media screen and (max-width:359px){
body{ font-size: 12px;}
}
@media only screen and (min-width:360px)and(max-width:639px ){
body{ font-size: 13px;}
}
@media screen and (min-width:640px)and(max-width:749px ){
body{ font-size: 16px;}
}
@media screen and (min-width:750px){
body{ font-size: 24px;}
}
*/
Binary file added favicon.ico
Binary file not shown.
Binary file added google.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 12a1d4a

Please sign in to comment.