footer.component.scss 689 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*next step*/
  2. .footer {
  3. position: fixed;
  4. left: 0;
  5. bottom: 0;
  6. width: 100%;
  7. background-color: #393939;
  8. color: white;
  9. z-index: 99999;
  10. }
  11. .footer_class{
  12. list-style-type: none;
  13. display: inline-flex;
  14. margin: 12px 0px;
  15. width: 100%;
  16. float: left;
  17. }
  18. .footer_class li{
  19. // padding: 0px 90px;
  20. border-right: 1px solid #fff;
  21. font-size: 14px;
  22. width: 25%;
  23. text-align: center;
  24. float: left;
  25. }
  26. .footer_class li a{
  27. text-decoration:none;
  28. color:#fff;
  29. cursor: pointer !important;
  30. }
  31. .footer_class li:last-child{
  32. border-right: none !important;
  33. }
  34. .active {
  35. color: #37b1ec !important;
  36. }