_footer.scss 800 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. footer{
  2. @include flexbox;
  3. margin-bottom: 1rem;
  4. margin-top: 6rem;
  5. & > div{
  6. display: inline-flex;
  7. flex-direction: column;
  8. width: calc(100% / 3);
  9. margin-bottom: 10px;
  10. min-width: 400px;
  11. &.adress{
  12. span:nth-child(1){
  13. display: block
  14. }
  15. .align{
  16. @include flexbox;
  17. span{
  18. margin-right: 1rem;
  19. }
  20. }
  21. }
  22. &.partenair{
  23. justify-content: center;
  24. .logo{
  25. height: 30px;
  26. img{
  27. width: auto;
  28. height: 100%;
  29. vertical-align: baseline!important;
  30. }
  31. }
  32. }
  33. &.newsletter{
  34. p{
  35. text-decoration: underline;
  36. }
  37. }
  38. &.rs{
  39. }
  40. & > span{
  41. margin-right: 1rem;
  42. }
  43. & > a {
  44. margin-right: 1rem;
  45. }
  46. }
  47. }