index.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. .rc-footer {
  2. position: relative;
  3. clear: both;
  4. color: rgba(255, 255, 255, 0.4);
  5. font-size: 14px;
  6. line-height: 1.5;
  7. background-color: #000;
  8. }
  9. .rc-footer a {
  10. transition: all 0.3s;
  11. color: rgba(255, 255, 255, 0.9);
  12. text-decoration: none;
  13. }
  14. .rc-footer a:hover {
  15. color: #40a9ff;
  16. }
  17. .rc-footer-container {
  18. width: 100%;
  19. max-width: 1200px;
  20. padding: 80px 0;
  21. margin: auto;
  22. }
  23. .rc-footer-columns {
  24. display: flex;
  25. justify-content: space-around;
  26. }
  27. .rc-footer-column h2 {
  28. position: relative;
  29. margin: 0 auto 24px;
  30. font-weight: 500;
  31. font-size: 16px;
  32. color: #fff;
  33. }
  34. .rc-footer-column-icon {
  35. margin-right: 0.5em;
  36. width: 22px;
  37. display: inline-block;
  38. vertical-align: middle;
  39. top: -1px;
  40. position: relative;
  41. text-align: center;
  42. }
  43. .rc-footer-column-icon > span,
  44. .rc-footer-column-icon > svg,
  45. .rc-footer-column-icon img {
  46. width: 100%;
  47. display: block;
  48. }
  49. .rc-footer-item {
  50. margin: 12px 0;
  51. }
  52. .rc-footer-item-icon {
  53. margin-right: 0.4em;
  54. width: 16px;
  55. display: inline-block;
  56. vertical-align: middle;
  57. top: -1px;
  58. position: relative;
  59. text-align: center;
  60. }
  61. .rc-footer-item-icon > span,
  62. .rc-footer-item-icon > svg,
  63. .rc-footer-item-icon img {
  64. width: 100%;
  65. display: block;
  66. }
  67. .rc-footer-item-separator {
  68. margin: 0 0.3em;
  69. }
  70. .rc-footer-bottom-container {
  71. border-top: 1px solid rgba(255, 255, 255, 0.25);
  72. width: 100%;
  73. max-width: 1200px;
  74. text-align: center;
  75. margin: 0 auto;
  76. padding: 16px 0;
  77. line-height: 32px;
  78. font-size: 16px;
  79. }
  80. .rc-footer-light {
  81. background-color: transparent;
  82. color: rgba(0, 0, 0, 0.85);
  83. }
  84. .rc-footer-light h2,
  85. .rc-footer-light a {
  86. color: rgba(0, 0, 0, 0.85);
  87. }
  88. .rc-footer-light .rc-footer-bottom-container {
  89. border-top-color: #e8e8e8;
  90. }
  91. .rc-footer-light .rc-footer-item-separator,
  92. .rc-footer-light .rc-footer-item-description {
  93. color: rgba(0, 0, 0, 0.45);
  94. }
  95. @media only screen and (max-width: 767.99px) {
  96. .rc-footer {
  97. text-align: center;
  98. }
  99. .rc-footer-container {
  100. padding: 40px 0;
  101. }
  102. .rc-footer-columns {
  103. display: block;
  104. }
  105. .rc-footer-column {
  106. display: block;
  107. margin-bottom: 40px;
  108. }
  109. .rc-footer-column:last-child {
  110. margin-bottom: 0;
  111. }
  112. }