-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
288 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,32 +5,29 @@ | |
> .footer-logo { | ||
display block; | ||
width 145px; | ||
height 62px; | ||
img { | ||
width 100%; | ||
height 100%; | ||
} | ||
} | ||
> .footer-thank { | ||
font-size: 16px; | ||
color: #333333; | ||
line-height: 22px; | ||
margin: 13px 0 20px; | ||
span { | ||
display inline-block; | ||
font-size: 16px; | ||
color: #333333; | ||
line-height: 22px; | ||
margin: 13px 0 20px; | ||
} | ||
} | ||
> .footer-links { | ||
.footer-links-item { | ||
display flex; | ||
margin-bottom 20px; | ||
&:last-child { | ||
margin-bottom 0; | ||
} | ||
dd { | ||
display inline-block; | ||
> p, > span { | ||
display inline-block; | ||
} | ||
> p { | ||
font-size: 16px; | ||
font-weight: 500; | ||
font-weight: bold; | ||
color: #0D5AFE; | ||
line-height: 22px; | ||
margin-right 10px; | ||
|
@@ -45,3 +42,52 @@ | |
} | ||
} | ||
} | ||
|
||
// 响应式 | ||
// 兼容568px - 1024px手机横屏宽度 | ||
@media all and (min-width 568px) { | ||
This comment has been minimized.
Sorry, something went wrong.
shenghanqin
Contributor
|
||
.footer { | ||
display flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
.footer-logo { | ||
text-align center; | ||
letter-spacing 1px; | ||
img { | ||
height 58px; | ||
} | ||
span { | ||
margin-bottom 0; | ||
} | ||
} | ||
.footer-links { | ||
display flex; | ||
justify-content: flex-end; | ||
flex 1; | ||
.footer-links-item { | ||
display inline; | ||
margin-bottom 0; | ||
margin-right: 3%; | ||
dd { | ||
span, p { | ||
margin-right 0; | ||
} | ||
p { | ||
margin-bottom 14px; | ||
} | ||
span { | ||
display inline-block; | ||
font-size 16px; | ||
margin-bottom 10px; | ||
} | ||
&:last-child span{ | ||
margin-bottom 0; | ||
} | ||
} | ||
&:last-child { | ||
margin-right 0; | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
shenghanqinJan 29, 2021
•
edited
Loading
Contributor