Skip to content

Commit

Permalink
mi
Browse files Browse the repository at this point in the history
  • Loading branch information
sykeswh committed Sep 15, 2020
0 parents commit 413ffac
Show file tree
Hide file tree
Showing 120 changed files with 2,635 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>小米官网实战</name>
<comment>Create By HBuilder</comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.aptana.ide.core.unifiedBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.aptana.projects.webnature</nature>
</natures>
<filteredResources>
<filter>
<id>1589190864303</id>
<name></name>
<type>10</type>
<matcher>
<id>org.eclipse.ui.ide.orFilterMatcher</id>
<arguments>
<matcher>
<id>org.eclipse.ui.ide.multiFilter</id>
<arguments>1.0-projectRelativePath-matches-false-false-bin</arguments>
</matcher>
<matcher>
<id>org.eclipse.ui.ide.multiFilter</id>
<arguments>1.0-projectRelativePath-matches-false-false-setting</arguments>
</matcher>
</arguments>
</matcher>
</filter>
</filteredResources>
</projectDescription>
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
###小米官网仿写首页
HTML+CSS3+原生JS
25 changes: 25 additions & 0 deletions css/base.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/*公共样式*/
.clearfix::before,
.clearfix::after{
content: "";
display: table;
clear: both;
}
body{
font: 14px/1.5 Helvetica Neue,Helvetica,Arial,Microsoft Yahei,Hiragino Sans GB,Heiti SC,WenQuanYi Micro Hei,sans-serif;
color: #333;
min-width: 1226px;
height: 3000px;
}

/*设置一个类,用来表示中间容器的宽度和居中效果*/
.w{
width: 1226px;
margin: 0 auto;
}

/*去除下划线*/
a{
text-decoration: none;
color: #333;
}
Loading

0 comments on commit 413ffac

Please sign in to comment.