clipbucket/upload/styles/cb_28/theme/scss/_footer.scss

125 lines
1.9 KiB
SCSS
Raw Normal View History

@import "mymixins";
#footer{
position:absolute;
width:100%;
bottom:0;
background:$blue;
padding:18px 0;
font-size: 16px;
line-height:20px;
color: #fff;
z-index: 5;
.container{
padding: 0;
}
a{
color: #fff;
&:hover{
text-decoration: none;
//color: $blue;
}
}
.icon-holder{
display: table-cell;
vertical-align: middle;
width: 50px;
height:50px;
background: #000;
border-radius: 50%;
span{
display: block;
width: 50px;
height: 50px;
padding: 11px;
}
}
ul{
@include list-style();
text-transform: capitalize;
2016-04-04 17:10:09 +05:00
width: 440px;
li{
margin: 0 0 0 25px;
float: left;
&:first-child{
margin: 0;
}
}
}
.footer-holder{
display: table;
width: 100%;
}
.column{
padding: 0 5px;
display: table-cell;
vertical-align:middle;
form{
//float: right;
}
&.copyright-poweredby{
text-align: right;
p{
font-weight: 700;
span{
font-weight: 400;
}
~span{
font-size: 12px;
}
}
}
}
}
/**/
@media only screen and (max-width: 991px) {
#footer{
ul{
2016-04-07 15:22:30 +05:00
width: 400px;
li{
float: none;
@include vertical-top();
2016-04-07 15:22:30 +05:00
width: 33%;
margin: 0 0 10px -4px;
padding: 0 5px;
&:first-child{
2016-04-07 15:22:30 +05:00
margin: 0 0 10px -4px;
}
}
}
}
}
@media only screen and (max-width: 767px) {
#footer{
.footer-holder{
2016-04-07 15:22:30 +05:00
display: block;
}
2016-04-07 15:22:30 +05:00
.column{
display: block;
width: 100%;
&.lang_wrapper,
&.copyright-poweredby{
text-align: center;
}
&.lang_wrapper{
margin: 0 0 10px;
form{
text-align: center;
}
}
}
2016-04-07 15:22:30 +05:00
ul{
width: 100%;
li{
float: none;
@include vertical-top();
width: 50%;
margin: 0 0 10px -4px;
padding: 0 5px;
&:first-child{
margin: 0 0 10px -4px;
}
}
}
2016-04-07 15:22:30 +05:00
}
}