yapi/client/components/Footer/Footer.scss

74 lines
1.3 KiB
SCSS
Raw Normal View History

2017-07-13 16:39:14 +08:00
@import '../../styles/common.scss';
2017-07-26 22:09:13 +08:00
@import '../../styles/mixin.scss';
2017-07-13 16:39:14 +08:00
.footer{
@include wrap-width-limit;
2017-07-24 16:41:11 +08:00
margin: 0px auto;
2017-07-13 16:39:14 +08:00
clear: both;
font-size: 12px;
background: #000c15;
position: relative;
z-index: 1;
color: rgba(255,255,255,.65);
box-shadow: 0 1000px 0 1000px #fff;
2017-07-24 18:17:30 +08:00
// background-image: url('image/footer-bac.jpg');
background-repeat: no-repeat;
background-position: center center;
2017-07-13 16:39:14 +08:00
h4{
margin-bottom: 20px;
color: #FFF;
i{
margin-left: -20px;
}
}
}
2017-07-24 18:17:30 +08:00
.footerMask{
@include wrap-width-limit;
2017-07-24 18:17:30 +08:00
position: absolute;
top: 0px;
height: 100%;
width: 100%;
background-color: #404040;
opacity: .65;
z-index: 1;
}
2017-07-13 16:39:14 +08:00
.footContent{
2017-07-26 22:09:13 +08:00
@include row-width-limit;
2017-07-13 16:39:14 +08:00
width:90%;
margin:0px auto;
overflow: hidden;
2017-07-24 18:17:30 +08:00
position: relative;
z-index: 2;
2017-07-13 16:39:14 +08:00
}
.footItem{
padding: 24px 2%;
width: 25%;
float: left;
2017-07-24 18:17:30 +08:00
div{
2017-07-13 16:39:14 +08:00
margin: 6px 0px;
2017-07-24 18:17:30 +08:00
}
a{
2017-07-13 16:39:14 +08:00
font-weight: 200;
color: #b3bdc1;
2017-07-24 18:17:30 +08:00
&:hover{
color: white;
}
2017-07-13 16:39:14 +08:00
}
2017-07-26 22:09:13 +08:00
2017-07-13 16:39:14 +08:00
}
.copyRight{
padding: 24px 2%;
width: 25%;
float: left;
font-size: 12px;
text-indent: 1em;
h4{
font-size: 14px;
margin: 0 auto 12px;
font-weight: 500;
position: relative;
text-indent: 0em;
}
2017-07-26 22:09:13 +08:00
}