No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

231 líneas
4.3 KiB

  1. @import '../../_global/styles/mixins';
  2. @import '../../_global/styles/vars';
  3. @import '../../components/event-teaser-large/event-teaser-large.scss';
  4. .right-open-container{
  5. @media (min-width: 1000px) {
  6. width: calc((var(--container-width) / 2) + 50vw - var(--col-padding));
  7. margin-left:auto;
  8. margin-right:0;
  9. padding-right:0;
  10. }
  11. }
  12. .eventteaserlargeslider {
  13. opacity: 0;
  14. transition: opacity 0.4s linear;
  15. &.initiated {
  16. opacity: 1;
  17. }
  18. &.single-slide {
  19. .controls {
  20. display: none;
  21. }
  22. }
  23. .slide-overflow {
  24. overflow: hidden;
  25. transition: height 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  26. }
  27. img.loading {
  28. opacity: 0;
  29. }
  30. img.loaded {
  31. transition: 0.3s ease;
  32. opacity: 1;
  33. }
  34. .slide-wrapper {
  35. position: relative;
  36. display: flex;
  37. align-items: flex-start;
  38. width: 80000px;
  39. contain: layout;
  40. margin:0 calc(var(--col-padding) * -1);
  41. @media(max-width: 999px) {
  42. width: 10000%;
  43. margin:0;
  44. }
  45. &.no-transition {
  46. -webkit-user-select: none;
  47. -moz-user-select: none;
  48. -ms-user-select: none;
  49. user-select: none;
  50. .image-box:after {
  51. content: "";
  52. @include full-size;
  53. z-index: 2;
  54. }
  55. }
  56. img, a {
  57. -webkit-user-select: none;
  58. -moz-user-select: none;
  59. -ms-user-select: none;
  60. user-select: none;
  61. -webkit-user-drag: none;
  62. -moz-user-drag: none;
  63. }
  64. }
  65. .slide {
  66. position: relative;
  67. width:1%;
  68. max-width:1%;
  69. min-width:1%;
  70. min-height:400px;
  71. @media(min-width: 1000px) {
  72. padding:var(--col-padding);
  73. }
  74. }
  75. .prev-clone,
  76. .next-clone {
  77. position: absolute;
  78. display: flex;
  79. width: 100%;
  80. }
  81. .prev-clone {
  82. position: absolute;
  83. right: 100%;
  84. justify-content: flex-end;
  85. }
  86. }
  87. .rotationslider{
  88. margin-bottom:calc(var(--section-margin) + 2rem) !important;
  89. }
  90. .rotationslider h1{
  91. max-width: 50%;
  92. display: inline-block;
  93. }
  94. .rotationslider .eventteaserlargeslider {
  95. margin-bottom:2rem;
  96. position: relative;
  97. display: block;
  98. button {
  99. border: 0;
  100. background-color: transparent;
  101. padding: 0;
  102. cursor: pointer;
  103. }
  104. .slider-tabs, .tabs {
  105. position: absolute;
  106. bottom: -2rem;
  107. left: 50%;
  108. right: 0;
  109. padding: 0;
  110. list-style: none;
  111. transform: translate(-50%, 0);
  112. text-align: center;
  113. font-size: 0;
  114. line-height: 0;
  115. margin: 0;
  116. li {
  117. display: inline-block;
  118. vertical-align: top;
  119. &.active button:before {
  120. background-color: var(--theme-color-primary);
  121. box-shadow: 0 0 0 2px var(--theme-color-primary);
  122. }
  123. }
  124. .btn {
  125. --button-min-size: 24px;
  126. font-size: 0;
  127. line-height: 0;
  128. display: flex;
  129. align-items: center;
  130. justify-content: center;
  131. &::before {
  132. content: "";
  133. position: relative;
  134. display: block;
  135. width: 10px;
  136. height: 10px;
  137. border: 2px solid var(--theme-color-primary);
  138. border-radius: 5px;
  139. transition: 0.2s ease;
  140. }
  141. &::after {
  142. display: none;
  143. }
  144. &:hover {
  145. background-color: transparent;
  146. &::before {
  147. background-color: var(--theme-color-primary);
  148. }
  149. }
  150. }
  151. }
  152. .prev, .next {
  153. position: absolute;
  154. top: -94px;
  155. width: 60px;
  156. height: 60px;
  157. text-align: center;
  158. line-height: 60px;
  159. left: calc(var(--container-width) - 2 * var(--container-padding) - 60px);
  160. color: var(--theme-color-primary);
  161. right:auto;
  162. border-radius: 24px;
  163. background: var(--theme-color-primary-dimmed-04);
  164. @media(max-width: 1580px) {
  165. left:auto;
  166. right: var(--container-padding);
  167. }
  168. @media(max-width: 1339px) {
  169. top: -90px;
  170. }
  171. @media(max-width: 999px) {
  172. right:0px;
  173. top: -80px;
  174. }
  175. @media(max-width: 767px) {
  176. }
  177. &:before {
  178. @include icon-small-arrow-right-simple;
  179. font-family: "Icons", sans-serif;
  180. font-size: 30px;
  181. }
  182. }
  183. .prev {
  184. left: calc(var(--container-width) - 2 * var(--container-padding) - 140px);
  185. transform: rotate(180deg);
  186. @media(max-width: 1580px) {
  187. left:auto;
  188. right:calc(var(--container-padding) + 80px);
  189. }
  190. @media(max-width: 999px) {
  191. right:80px;
  192. }
  193. }
  194. .count{
  195. display:none;
  196. }
  197. h2, .like-h2 {
  198. margin-top: 0.3em;
  199. margin-bottom: 0.4em;
  200. }
  201. }