Advertisement
Guest User

Untitled

a guest
Jul 18th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. .footer_corporate {
  2. .container {
  3. display: flex;
  4. justify-content: space-between;
  5. flex-wrap: wrap;
  6. }
  7.  
  8. .drivy_logo {
  9. color: color(graphite);
  10. margin-right: 16px;
  11. }
  12.  
  13. .social_logo {
  14. padding-left: 8px;
  15. }
  16.  
  17. .flag_container button{
  18. display: flex;
  19. flex-direction: row;
  20.  
  21. .arrow {
  22. transform: rotate(90deg);
  23. padding-top: 10px;
  24. }
  25. }
  26.  
  27. .logo-flag-container {
  28. display: flex;
  29. flex-direction: row;
  30. justify-content: flex-start;
  31. line-height: 0;
  32. @media(min-width: $screen-md-min) {
  33. margin-right: auto;
  34. }
  35. }
  36.  
  37. .socials_logos_container {
  38. display: flex;
  39. justify-content: flex-end;
  40. @media(min-width: $screen-md-min) {
  41. order: 2;
  42. }
  43. }
  44.  
  45. .copyright-links-container {
  46. display: flex;
  47. flex-direction: column;
  48. font-size: 12px;
  49.  
  50. @media(min-width: $screen-md-min) {
  51. flex-direction: row;
  52. }
  53.  
  54. .copyright{
  55. color: color(graphite);
  56. margin: 0 8px 8px 0;
  57.  
  58. @media(max-width: $screen-sm-max) {
  59. line-height: 0;
  60. }
  61. }
  62. }
  63.  
  64. .copyright-links-container-light {
  65. @media(min-width: $screen-md-min) {
  66. flex-grow: 1;
  67. justify-content: space-between;
  68.  
  69. .footer_corporate_links {
  70. align-self: flex-end;
  71. }
  72. }
  73. }
  74.  
  75. a {
  76. color: color(blue);
  77. white-space: nowrap;
  78.  
  79. &.footer_locale_switch__link,
  80. .footer_locale_switch__link {
  81. color: color(graphite);
  82. }
  83. }
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement