Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

242 řádky
4.9 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: 16px;
  6. overflow: hidden;
  7. display: flex;
  8. transition: 0.3s ease;
  9. text-decoration: none;
  10. min-height:400px;
  11. flex-wrap: wrap;
  12. &:not(.widemode){
  13. flex-wrap: wrap;
  14. align-content: baseline;
  15. flex-flow: column;
  16. justify-content: flex-start;
  17. background-color: var(--theme-grey-light);
  18. .blue-box {
  19. height:250px;
  20. }
  21. .text-box{
  22. height: calc(100% - 250px);
  23. }
  24. }
  25. @include focus-visible;
  26. &:hover {
  27. color: var(--theme-color-secondary-intensed);
  28. .blue-box {
  29. background-color: var(--theme-color-secondary-intensed);
  30. }
  31. }
  32. .blue-box {
  33. display: flex;
  34. //flex-direction: column;
  35. justify-content: flex-end;
  36. background: linear-gradient(135deg, #036 45.14%, #368484 100%), #D9D9D9;
  37. color: var(--theme-color-white);
  38. margin-right: 18px;
  39. font-family: "Korb", sans-serif;
  40. min-height: 80px;
  41. font-size: 14px;
  42. line-height: 1;
  43. padding: 70px 15px 15px 15px;
  44. min-width: 80px;
  45. transition: 0.2s ease;
  46. position:relative;
  47. flex-flow: column;
  48. align-items: baseline;
  49. width:100%;
  50. margin-right: 0;
  51. min-height:250px;
  52. .icon-box {
  53. font-family: 'Pictograms', sans-serif;
  54. font-size: 48px;
  55. line-height: 1;
  56. color: var(--theme-color-white);
  57. position:absolute;
  58. top:15px;
  59. left:15px;
  60. }
  61. .ev-title{
  62. font-weight: 400;
  63. text-decoration: underline;
  64. line-height: normal;
  65. font-size: 28px;
  66. }
  67. .ev-cat{
  68. color: #003366;
  69. font-size: 16px;
  70. font-family: Source Sans Pro;
  71. font-weight: 400;
  72. text-transform: uppercase;
  73. line-height: 16px;
  74. letter-spacing: 0.32px;
  75. background-color:white;
  76. border-radius:8px;
  77. display:inline-block;
  78. padding:5px 7px;
  79. }
  80. span {
  81. white-space: nowrap;
  82. }
  83. span:nth-child(2) {
  84. font-size: 36px;
  85. margin-left: -2px;
  86. }
  87. &.no-date {
  88. align-items: flex-start;
  89. &:before {
  90. @include icon-sanduhr;
  91. font-family: 'Icons', sans-serif;
  92. font-size: var(--icon-size);
  93. line-height: 1;
  94. margin-bottom: 4px;
  95. margin-top: 5px;
  96. }
  97. * {
  98. display: none;
  99. }
  100. }
  101. }
  102. .text-box {
  103. //align-self: center;
  104. padding: 15px;
  105. //line-height: 1.2;
  106. background-color: var(--theme-grey-light);
  107. width:100%;
  108. display:flex;
  109. justify-content:space-between;
  110. flex-flow: column;
  111. @media(max-width: 767px) {
  112. font-size: var(--font-size-small);
  113. }
  114. .ev-desc{
  115. line-height: 27px;
  116. letter-spacing: 0.18px;
  117. font-size:18px;
  118. }
  119. }
  120. p {
  121. margin: 0;
  122. &:not(:last-child) {
  123. margin: 2px 0 0.3em;
  124. }
  125. }
  126. .detail-box {
  127. padding-top: 15px;
  128. border-top: 1px #CCD7E6 solid;
  129. .btn{
  130. float: right;
  131. margin-top:15px;
  132. display:none;
  133. }
  134. > div {
  135. display: block;
  136. font-size: var(--font-size-small);
  137. line-height: 1.2em;
  138. margin-right: 15px;
  139. margin-bottom: 5px;
  140. color: var(--theme-color-primary);
  141. &::before {
  142. position: relative;
  143. display: inline-block;
  144. font-family: 'Icons', sans-serif;
  145. font-size: 18px;
  146. line-height: 20px;
  147. margin-right: 5px;
  148. vertical-align: top;
  149. color: var(--theme-color-primary);
  150. }
  151. @media(max-width: 567px) {
  152. display: block;
  153. padding-left: 24px;
  154. position: relative;
  155. &:before {
  156. position: absolute;
  157. left: 0;
  158. }
  159. }
  160. &.date::before {
  161. @include icon-xsmall-kalender;
  162. }
  163. &.time::before {
  164. @include icon-xsmall-uhr;
  165. }
  166. &.location::before {
  167. @include icon-xsmall-pin;
  168. }
  169. &.interested-parties::before {
  170. @include icon-xsmall-liste;
  171. }
  172. &.price::before {
  173. @include icon-xsmall-euro;
  174. }
  175. &.status {
  176. &::before {
  177. @include icon-xsmall-offen;
  178. color: #2E8533;
  179. }
  180. &.interested-parties, &.waiting-list {
  181. &::before {
  182. @include icon-xsmall-liste;
  183. color: var(--theme-color-primary);
  184. }
  185. }
  186. &.reserved::before {
  187. @include icon-xsmall-geschlossen;
  188. color: #EA515A;
  189. }
  190. }
  191. }
  192. }
  193. &.widemode{
  194. @media screen and (min-width:992px){
  195. border-radius: 4px;
  196. .blue-box{
  197. width:50%;
  198. padding: 100px 15px 20px 15px;
  199. .icon-box {
  200. font-size: 70px;
  201. top:20px;
  202. }
  203. .ev-title{
  204. font-size: 36px;
  205. line-height: 43.20px;
  206. }
  207. }
  208. .text-box{
  209. width:50%;
  210. padding: 20px;
  211. .detail-box {
  212. .btn{
  213. display:inline-block;
  214. }
  215. }
  216. .ev-desc{
  217. font-size:18px;
  218. }
  219. }
  220. }
  221. }
  222. }