footer.component.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. .footer {
  2. width: 100%;
  3. height: 160px;
  4. bottom: 0;
  5. background: url('../../../assets/image/bg-patt.gif') center center;
  6. /* background-size: cover;
  7. margin-top: -13px;*/
  8. position: relative;
  9. direction: rtl;
  10. font-family: 'Cairo', sans-serif;
  11. overflow: hidden;
  12. }
  13. .overlayFooter-w {
  14. position: absolute;
  15. width: 100%;
  16. height: 100%;
  17. top: 0;
  18. bottom: 0;
  19. right: 0;
  20. left: 0;
  21. background: rgba(179, 151, 117, 0.55);
  22. }
  23. .leftFooter-w {
  24. width: 100%;
  25. height: 80px;
  26. margin-top: 45px;
  27. }
  28. .leftFooter-w ul {
  29. width: 100%;
  30. display: inline-block;
  31. }
  32. .leftFooter-w ul li{
  33. display: inline-block;
  34. margin: 0 10px;
  35. }
  36. .leftFooter-w img {
  37. width: 80px;
  38. }
  39. .linksSection-w {
  40. width: 100%;
  41. display: inline-block;
  42. margin-top: 30px;
  43. }
  44. .linksSection-w ul {
  45. width: 100%;
  46. display: inline-block;
  47. margin: 0;
  48. padding: 0px 0px 10px 0px;
  49. }
  50. .linksSection-w ul li{
  51. display: inline-block;
  52. margin: 0 5px;
  53. margin: 10px 0;
  54. border-right: 0.5px solid #967750;
  55. border-left: 0.5px solid #967750;
  56. }
  57. .linksSection-w ul li:first-child{
  58. border-right: 0px;
  59. border-left: 0px;
  60. }
  61. .linksSection-w ul li:last-child{
  62. border-right: 0px;
  63. border-left: 0px;
  64. }
  65. .linksSection-w ul li a {
  66. text-decoration: none;
  67. font-size: 14px;
  68. font-weight: 600;
  69. color: #ffffff;
  70. transition: all 0.5s;
  71. padding: 0px 20px 0px 20px;
  72. text-shadow: 0 1px 1px #737373;
  73. }
  74. .linksSection-w ul li a img {
  75. width: 30px;
  76. height: 30px;
  77. }
  78. .linksSection-w ul li a:hover {
  79. color: #252525;
  80. text-shadow: 0 0 0 transparent;
  81. }
  82. .rightFooter-w {
  83. width: 100%;
  84. height: 80px;
  85. margin-top: 45px;
  86. }
  87. .rightFooter-w img {
  88. width: 200px;
  89. }
  90. .rights {
  91. text-align: center;
  92. color: #fff;
  93. font-weight: bold;
  94. text-shadow: 0 1px 1px #737373;
  95. }
  96. /* start media query */
  97. @media(max-width: 767px) {
  98. .linksSection-w{
  99. margin-top: 20px !important;
  100. }
  101. .linksSection-w ul{
  102. padding: 0;
  103. }
  104. .linksSection-w ul li{
  105. display: inline-block;
  106. margin: 0 5px;
  107. }
  108. .rights{
  109. font-size: 14px;
  110. margin: 20px 0;
  111. }
  112. .linksSection-w ul li {
  113. margin: 0 0;
  114. }
  115. .linksSection-w {
  116. padding: 10px 0;
  117. }
  118. }