footer.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. * {
  2. outline: none;
  3. }
  4. html, body {
  5. height: 100%;
  6. margin: 0;
  7. padding: 0;
  8. overflow-y: hidden;
  9. }
  10. body {
  11. background: #FFFFFF;
  12. font-family: 'Open Sans', sans-serif;
  13. font-size: 11px;
  14. }
  15. b, strong {
  16. font-weight: 700;
  17. }
  18. span {
  19. border: 0;
  20. }
  21. #footer {
  22. width: 100%;
  23. height: 24px;
  24. border: none;
  25. padding: 14px 0px 14px 0px;
  26. margin: 0px 0px 0px 0px;
  27. background: url(layout/login/footer_wrapper.gif) repeat-x;
  28. font-size: 12px;
  29. font-weight: 300;
  30. font-family: 'Open Sans', sans-serif;
  31. line-height: 24px;
  32. color: #FFFFFF;
  33. overflow:hidden;
  34. position:relative;
  35. }
  36. /* Estilos para IE9+ */
  37. @media screen and (min-width:0\0) {
  38. #footer {
  39. padding: 13px 0px 15px 0px;
  40. }
  41. }
  42. #footer_container {
  43. margin-left: auto;
  44. margin-right: auto;
  45. min-width: 320px;
  46. width: 1156px;
  47. height: 100%;
  48. padding: 0px 15px 0px 15px;
  49. }
  50. #footer_inner {
  51. margin-left: -15px;
  52. margin-right: -15px;
  53. line-height: 24px;
  54. }
  55. /* Estilos para IE11+ */
  56. @media screen and (-ms-high-contrast: none) {
  57. #footer_inner {
  58. margin-left: -7px;
  59. margin-right: -7px;
  60. line-height: 24px;
  61. }
  62. }
  63. #footer_content {
  64. margin-left: 15px;
  65. }
  66. #footer_content a:link,
  67. #footer_content a:visited,
  68. #footer_content a:active {
  69. text-decoration:none;
  70. color: #FFFFFF;
  71. }
  72. #footer_content a:hover {
  73. text-decoration: underline;
  74. }
  75. .separator {
  76. padding: 0px 2px;
  77. font-size: 12px;
  78. font-weight: 300;
  79. font-family: 'Open Sans', sans-serif;
  80. line-height: 24px;
  81. color: #FFFFFF;
  82. }
  83. @media only screen and (min-width: 1200px) {
  84. #footer_container{
  85. margin-left: 0;
  86. margin-right: 0;
  87. max-width: 100%;
  88. }
  89. }