_footer.scss 475 B

1234567891011121314151617181920212223242526272829
  1. #footer{
  2. width: 100%;
  3. background: grey;
  4. .sub-content{
  5. @include inlineflex;
  6. width: 100%;
  7. margin: 20px 0;
  8. justify-content: center;
  9. h3{
  10. margin-top: 20px;
  11. }
  12. p{
  13. img{
  14. width: 50%;
  15. min-width: 200px;
  16. height: auto;
  17. }
  18. &:nth-of-type(1){
  19. img{
  20. float: right;
  21. }
  22. }
  23. &:not(:nth-of-type(1)){
  24. border-left: 1px solid black;
  25. padding: 0 20px;
  26. }
  27. }
  28. }
  29. }