You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

185 lines
3.8 KiB

  1. @import '../../_global/styles/mixins';
  2. @import '../../_global/styles/vars';
  3. .event-teaser-large, .events-list-large a:not(.btn) {
  4. background-color: white;
  5. border-radius: 8px;
  6. overflow: hidden;
  7. display: flex;
  8. transition: 0.3s ease;
  9. text-decoration: none;
  10. min-height:400px;
  11. @include focus-visible;
  12. &:hover {
  13. color: var(--theme-color-secondary-intensed);
  14. .blue-box {
  15. background-color: var(--theme-color-secondary-intensed);
  16. }
  17. }
  18. .icon-box {
  19. font-family: 'Pictograms', sans-serif;
  20. font-size: 70px;
  21. line-height: 1;
  22. color: var(--theme-color-white);
  23. position:absolute;
  24. top:20px;
  25. left:15px;
  26. @media(max-width: 567px) {
  27. font-size: 50px;
  28. margin-top: 0;
  29. }
  30. }
  31. .blue-box {
  32. display: flex;
  33. flex-direction: column;
  34. justify-content: flex-end;
  35. background: linear-gradient(158deg, #003366 4%, #4BA490 39%, #AFCC7A 98%);
  36. color: var(--theme-color-white);
  37. margin-right: 18px;
  38. font-family: "Korb", sans-serif;
  39. min-height: 80px;
  40. font-size: 14px;
  41. line-height: 1;
  42. padding: 20px 15px;
  43. min-width: 80px;
  44. transition: 0.2s ease;
  45. position:relative;
  46. @media(max-width: 767px) {
  47. margin-right: 12px;
  48. justify-content: flex-start;
  49. padding-top: 10px;
  50. }
  51. .ev-title{
  52. font-size: 36px;
  53. font-weight: 400;
  54. text-decoration: underline;
  55. line-height: 43.20px;
  56. }
  57. .ev-cat{
  58. color: #003366;
  59. font-size: 16px;
  60. font-family: Source Sans Pro;
  61. font-weight: 400;
  62. text-transform: uppercase;
  63. line-height: 16px;
  64. letter-spacing: 0.32px;
  65. background-color:white;
  66. border-radius:7px;
  67. display:inline-block;
  68. padding:5px 7px;
  69. }
  70. span {
  71. white-space: nowrap;
  72. }
  73. span:nth-child(2) {
  74. font-size: 36px;
  75. margin-left: -2px;
  76. }
  77. &.no-date {
  78. align-items: flex-start;
  79. &:before {
  80. @include icon-sanduhr;
  81. font-family: 'Icons', sans-serif;
  82. font-size: var(--icon-size);
  83. line-height: 1;
  84. margin-bottom: 4px;
  85. margin-top: 5px;
  86. }
  87. * {
  88. display: none;
  89. }
  90. }
  91. }
  92. .text-box {
  93. align-self: center;
  94. padding: 10px 18px 10px 0;
  95. line-height: 1.2;
  96. @media(max-width: 767px) {
  97. font-size: var(--font-size-small);
  98. }
  99. }
  100. p {
  101. margin: 0;
  102. &:not(:last-child) {
  103. margin: 2px 0 0.3em;
  104. }
  105. }
  106. .detail-box {
  107. > div {
  108. display: inline-block;
  109. font-size: var(--font-size-small);
  110. line-height: 1.2em;
  111. margin-right: 15px;
  112. margin-bottom: 2px;
  113. color: var(--theme-color-primary);
  114. &::before {
  115. position: relative;
  116. display: inline-block;
  117. font-family: 'Icons', sans-serif;
  118. font-size: 18px;
  119. line-height: 20px;
  120. margin-right: 5px;
  121. vertical-align: top;
  122. color: var(--theme-color-primary);
  123. }
  124. @media(max-width: 567px) {
  125. display: block;
  126. padding-left: 24px;
  127. position: relative;
  128. &:before {
  129. position: absolute;
  130. left: 0;
  131. }
  132. }
  133. &.date::before {
  134. @include icon-xsmall-kalender;
  135. }
  136. &.time::before {
  137. @include icon-xsmall-uhr;
  138. }
  139. &.location::before {
  140. @include icon-xsmall-pin;
  141. }
  142. &.interested-parties::before {
  143. @include icon-xsmall-liste;
  144. }
  145. &.price::before {
  146. @include icon-xsmall-euro;
  147. }
  148. &.status {
  149. &::before {
  150. @include icon-xsmall-offen;
  151. color: #2E8533;
  152. }
  153. &.interested-parties, &.waiting-list {
  154. &::before {
  155. @include icon-xsmall-liste;
  156. color: var(--theme-color-primary);
  157. }
  158. }
  159. &.reserved::before {
  160. @include icon-xsmall-geschlossen;
  161. color: #EA515A;
  162. }
  163. }
  164. }
  165. }
  166. }