Spaces:
Running
Running
Update templates/talkDetail.html
Browse files- templates/talkDetail.html +12 -3
templates/talkDetail.html
CHANGED
@@ -11,6 +11,17 @@
|
|
11 |
href="{{ url_for('static', filename='loading.css') }}"
|
12 |
/>
|
13 |
<style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
.main-content {
|
15 |
border: 5px solid rgba(255, 255, 255, 0.2);
|
16 |
border-radius: 1rem;
|
@@ -82,9 +93,7 @@
|
|
82 |
}
|
83 |
</style>
|
84 |
</head>
|
85 |
-
<body
|
86 |
-
class="bg-gray-100 dark:bg-gray-900 text-gray-900 dark:text-gray-100 min-h-screen flex items-center justify-center"
|
87 |
-
>
|
88 |
<div class="main-content relative">
|
89 |
<div class="loader" id="loader">
|
90 |
<div class="one"></div>
|
|
|
11 |
href="{{ url_for('static', filename='loading.css') }}"
|
12 |
/>
|
13 |
<style>
|
14 |
+
/* Main Container */
|
15 |
+
body {
|
16 |
+
background: linear-gradient(135deg, #2c3e50, #1f2937);
|
17 |
+
display: flex;
|
18 |
+
align-items: center;
|
19 |
+
justify-content: center;
|
20 |
+
min-height: 100vh;
|
21 |
+
font-family: "Arial", sans-serif;
|
22 |
+
color: #fff;
|
23 |
+
}
|
24 |
+
|
25 |
.main-content {
|
26 |
border: 5px solid rgba(255, 255, 255, 0.2);
|
27 |
border-radius: 1rem;
|
|
|
93 |
}
|
94 |
</style>
|
95 |
</head>
|
96 |
+
<body>
|
|
|
|
|
97 |
<div class="main-content relative">
|
98 |
<div class="loader" id="loader">
|
99 |
<div class="one"></div>
|