30 lines
507 B
SCSS
Raw Normal View History

2019-04-03 15:29:46 +02:00
#footer{
width: 100%;
2019-05-14 19:59:47 +02:00
background: $light-grey;
.block{
2019-05-09 00:26:27 +02:00
@include inlineflex;
width: 100%;
margin: 20px 0;
2019-05-27 17:03:03 +02:00
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
2019-05-09 00:26:27 +02:00
p{
2019-05-14 19:59:47 +02:00
padding: 0 20px;
2019-05-09 00:26:27 +02:00
img{
2019-05-14 19:59:47 +02:00
width: 100%;
max-width: 150px;
2019-05-09 00:26:27 +02:00
height: auto;
}
&:nth-of-type(1){
img{
float: right;
}
}
&:not(:nth-of-type(1)){
border-left: 1px solid black;
}
}
2019-04-05 00:19:26 +02:00
}
}