25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

185 satır
3.2 KiB

  1. @charset "UTF-8";
  2. section.social {
  3. @media(max-width: 767px) {
  4. .container {
  5. padding: 0;
  6. }
  7. }
  8. h2 {
  9. margin-bottom: 0.4em;
  10. }
  11. .social-wrapper {
  12. position: relative;
  13. background-color: $color-primary-light-04;
  14. background-color: var(--theme-color-primary-dimmed-04, $color-primary-light-04);
  15. padding: 60px;
  16. display: flex;
  17. border-bottom: 8px solid $color-secondary;
  18. border-bottom: 8px solid var(--theme-color-secondary, $color-secondary);
  19. @media(max-width: 999px) {
  20. padding: 40px;
  21. flex-direction: column;
  22. }
  23. @media(max-width: 767px) {
  24. padding: 20px;
  25. }
  26. @media(min-width: 1000px) {
  27. > div {
  28. flex: 1 1 50%;
  29. max-width: 50%;
  30. }
  31. }
  32. }
  33. .social-box {
  34. position: relative;
  35. min-height: 500px;
  36. display: block;
  37. line-height: 0 !important;
  38. @media(max-width: 767px) {
  39. min-height: 350px;
  40. }
  41. iframe {
  42. min-height: 100%;
  43. }
  44. .fb_iframe_widget {
  45. float: right;
  46. @media(max-width: 999px) {
  47. float: none;
  48. display: inline-block;
  49. transform: translateX(-50%);
  50. left: 50%;
  51. }
  52. }
  53. }
  54. @media(min-width: 1000px) {
  55. .social-profiles {
  56. position: absolute;
  57. bottom: 60px;
  58. left: 60px;
  59. ~ .text-box {
  60. padding-bottom: 120px;
  61. }
  62. }
  63. .text-box {
  64. padding-right: 40px;
  65. }
  66. }
  67. @media(max-width: 999px) {
  68. .social-profiles {
  69. position: absolute;
  70. bottom: 24px;
  71. left: 20px;
  72. ~ .social-box {
  73. margin-bottom: 120px;
  74. }
  75. }
  76. .text-box {
  77. margin-bottom: 10px;
  78. }
  79. }
  80. }
  81. .social-icons {
  82. margin: 0 0 -15px -15px;
  83. padding: 0;
  84. font-size: 0;
  85. line-height: 0;
  86. li {
  87. display: inline-block;
  88. vertical-align: top;
  89. margin-left: 15px;
  90. margin-bottom: 15px;
  91. }
  92. a {
  93. position: relative;
  94. display: block;
  95. width: 50px;
  96. height: 50px;
  97. color: $color-white;
  98. text-decoration: none;
  99. text-align: center;
  100. font-size: 0;
  101. line-height: 0;
  102. @include focusvisible;
  103. transition: 0.3s ease;
  104. z-index: 1;
  105. overflow: hidden;
  106. &:after {
  107. content: "";
  108. @include fullsize;
  109. margin: 1px;
  110. background-color: $color-white;
  111. z-index: -1;
  112. }
  113. &:before {
  114. display: block;
  115. font-size: 52px;
  116. line-height: 52px;
  117. font-family: "Icons";
  118. margin: -1px;
  119. }
  120. &.facebook {
  121. @extend .icon-social-facebook;
  122. color: $color-facebook;
  123. }
  124. &.twitter {
  125. @extend .icon-social-twitter;
  126. color: $color-twitter;
  127. }
  128. &.linkedin {
  129. @extend .icon-social-linkedin;
  130. color: $color-linkedin;
  131. }
  132. &.youtube {
  133. @extend .icon-social-youtube;
  134. color: $color-youtube;
  135. }
  136. &.instagram {
  137. @extend .icon-social-instagram;
  138. color: $color-instagram;
  139. }
  140. &.xing {
  141. @extend .icon-social-xing;
  142. color: #126567;
  143. }
  144. &.threema {
  145. @extend .icon-social-threema;
  146. color: #05a63f;
  147. }
  148. &.telegram {
  149. @extend .icon-social-telegram;
  150. color: #0088cc;
  151. }
  152. &.whatsapp {
  153. @extend .icon-social-whatsapp;
  154. color: #25D366;
  155. }
  156. &.pinterest {
  157. @extend .icon-social-pinterest;
  158. color: #FF0000;
  159. }
  160. }
  161. }