footer.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. footer {
  2. background-color: #121212;
  3. display: flex;
  4. justify-content: center;
  5. height: 110px;
  6. align-items: center;
  7. }
  8. .footer_input {
  9. width: 50%;
  10. display: flex;
  11. justify-content: space-between;
  12. align-items: center;
  13. }
  14. footer .guarantee {
  15. font-family: "Roboto", sans-serif;
  16. font-size: 12px;
  17. line-height: 14px;
  18. text-align: left;
  19. color: #7E7E7E;
  20. }
  21. footer .post svg{
  22. margin-right: 5px;
  23. }
  24. footer .post a {
  25. font-family: "Roboto", sans-serif;
  26. font-style: medium;
  27. font-size: 16px;
  28. line-height: 19px;
  29. vertical-align: top;
  30. color: #ffffff;
  31. text-decoration: none;
  32. }
  33. footer .fb {
  34. display: flex;
  35. }
  36. footer .fb a {
  37. width: 48px;
  38. height: 48px;
  39. background-color: #706e6e;
  40. border-radius: 50%;
  41. display: flex;
  42. justify-content: center;
  43. align-items: center;
  44. margin: 5px;
  45. }
  46. footer.fb svg path {
  47. width: 9px;
  48. height: 16px;
  49. }
  50. @media screen and (max-width: 1700px) {
  51. footer .footer_input {
  52. width: 90%;
  53. }
  54. }
  55. @media screen and (max-width: 1500px) {
  56. .post {
  57. display: none;
  58. }
  59. footer .guarantee {
  60. display: none;
  61. }
  62. }