multi-project/projects/app-vniigaz/src/assets/css/grid.scss

63 lines
1.1 KiB
SCSS

.footer {
width: 100%;
padding: 40px 100px;
background-color: var(--prime-act);
color: white;
display: flex;
flex-direction: column;
.block{
a{
cursor: pointer;
color: white;
:hover{
color: white;
}
}
display: flex;
flex-wrap: wrap;
grid-gap: 20px;
&>div{
padding-bottom: 40px;
}
div{
display: block;
flex-grow: 1;
flex-basis: 196px;
flex-shrink: 0;
margin-bottom: -16px;
div {
margin-bottom: 16px;
}
}
.icons a{
margin-right: 16px;
}
.menu{
display: block;
}
}
.line{
width: 100%;
height: 1px;
background-color: var(--prime);
margin-bottom: 40px;
}
.copyright{
display: flex;
justify-content: space-between;
font-size: 16px;
font-style: normal;
font-weight: 400;
}
}
@media screen and (max-width: 1330px){
.footer{
padding: 40px 24px;
}
}