| 1 | <template> |
| 2 | <div class="slide"> |
| 3 | <div class="aspect-16/9" /> |
| 4 | <div class="absolute top-0 left-0 right-0 bottom-0"> |
| 5 | <slot /> |
| 6 | </div> |
| 7 | </div> |
| 8 | </template> |
| 9 | |
| 10 | <style lang="postcss"> |
| 11 | .slide { |
| 12 | background: var(--c-bg); |
| 13 | font-size: 1em; |
| 14 | line-height: 1.2em; |
| 15 | border-radius: 7px; |
| 16 | position: relative; |
| 17 | box-shadow: |
| 18 | 0 0 0 1px rgba(0, 0, 0, 0.05), |
| 19 | 0 0 30px 1px rgba(0, 0, 0, 0.15); |
| 20 | @apply mt-4 transform translate-x-20 -translate-y-20 overflow-hidden; |
| 21 | } |
| 22 | |
| 23 | .dark .slide { |
| 24 | @apply bg-gray-400 bg-opacity-5 border border-gray-400 border-opacity-10; |
| 25 | } |
| 26 | </style> |
| 27 |