74 lines
1.2 KiB
SCSS
74 lines
1.2 KiB
SCSS
|
@charset "utf-8";
|
||
|
|
||
|
@import "../initial";
|
||
|
|
||
|
.layout-footer {
|
||
|
position: relative;
|
||
|
padding: 2em 0;
|
||
|
color: $theme-color-main;
|
||
|
font-size: 0.8125em;
|
||
|
background-color: #3f3f3f;
|
||
|
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
|
||
|
font-family: 'IndustryW00-Medium';
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
@extend .response-container;
|
||
|
width: 90%!important;
|
||
|
}
|
||
|
.footer-counter a { padding-right: 0.5em; }
|
||
|
a {
|
||
|
color: #fff;
|
||
|
|
||
|
&:hover,
|
||
|
&:focus {
|
||
|
color:#D6D6DD;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.footer-counter{
|
||
|
display: none;
|
||
|
}
|
||
|
.layout-footer-content{
|
||
|
color:#bcbac2;
|
||
|
.fab{
|
||
|
font-size: 20px;
|
||
|
padding-right: 10px;
|
||
|
}
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
.footer_block_l{
|
||
|
display: inline-block;
|
||
|
width: 25%;
|
||
|
@media(max-width:768px){
|
||
|
width:100%;
|
||
|
}
|
||
|
}
|
||
|
.footer_block_2{
|
||
|
display: inline-block;
|
||
|
width: 32%;
|
||
|
@media(max-width:768px){
|
||
|
width:100%;
|
||
|
}
|
||
|
}
|
||
|
.footer_block_3{
|
||
|
display: inline-block;
|
||
|
width: 39%;
|
||
|
@media(max-width:768px){
|
||
|
width:100%;
|
||
|
}
|
||
|
.divset{
|
||
|
display: inline-block;
|
||
|
width: 49%;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
@media(max-width:$screen-xs){
|
||
|
.footer-content{
|
||
|
flex-wrap: wrap;
|
||
|
}
|
||
|
.part{
|
||
|
width: 100%!important;
|
||
|
}
|
||
|
}
|