Spaces:
Runtime error
Runtime error
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>{{ slide_title }}</title> | |
| <style> | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| .body { | |
| font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
| background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); | |
| width: 1920px; | |
| height: 1080px; | |
| overflow: hidden; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| } | |
| .slide-container { | |
| width: 100%; | |
| height: 100%; | |
| position: relative; | |
| background: white; | |
| } | |
| .background-circle-large { | |
| position: absolute; | |
| top: -200px; | |
| right: -200px; | |
| width: 800px; | |
| height: 800px; | |
| background: {{ circle_large_color }}; | |
| border-radius: 50%; | |
| opacity: 0.3; | |
| } | |
| .background-circle-small { | |
| position: absolute; | |
| bottom: -150px; | |
| left: -150px; | |
| width: 500px; | |
| height: 500px; | |
| background: {{ circle_small_color }}; | |
| border-radius: 50%; | |
| opacity: 0.2; | |
| } | |
| .content { | |
| position: relative; | |
| z-index: 10; | |
| width: 100%; | |
| height: 100%; | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| justify-content: center; | |
| text-align: center; | |
| padding: 100px; | |
| } | |
| .main-title { | |
| font-size: 96px; | |
| font-weight: 700; | |
| color: #1a202c; | |
| margin-bottom: 40px; | |
| animation: fadeInUp 1s ease-out; | |
| } | |
| .subtitle { | |
| font-size: 48px; | |
| color: #4a5568; | |
| animation: fadeInUp 1.3s ease-out; | |
| } | |
| .logo { | |
| position: absolute; | |
| bottom: 60px; | |
| right: 80px; | |
| width: 200px; | |
| height: auto; | |
| opacity: 0; | |
| animation: fadeIn 1s ease-out {{ logo_delay }} forwards; | |
| } | |
| @keyframes fadeInUp { | |
| from { | |
| opacity: 0; | |
| transform: translateY(30px); | |
| } | |
| to { | |
| opacity: 1; | |
| transform: translateY(0); | |
| } | |
| } | |
| @keyframes fadeIn { | |
| to { | |
| opacity: 1; | |
| } | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="slide-container"> | |
| </div> | |
| </body> | |
| </html> |