Spaces:
Running
Running
Update templates/index.html
Browse files- templates/index.html +3 -50
templates/index.html
CHANGED
@@ -6,61 +6,14 @@
|
|
6 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
7 |
<title>University Assistant</title>
|
8 |
<script src="https://cdn.tailwindcss.com"></script>
|
|
|
|
|
|
|
9 |
<script>
|
10 |
tailwind.config = {
|
11 |
darkMode: 'class',
|
12 |
};
|
13 |
</script>
|
14 |
-
<style>
|
15 |
-
html,
|
16 |
-
body {
|
17 |
-
margin: 0;
|
18 |
-
padding: 0;
|
19 |
-
height: 100%;
|
20 |
-
font-family: 'Inter', sans-serif;
|
21 |
-
}
|
22 |
-
|
23 |
-
@keyframes wave {
|
24 |
-
0%,100% {
|
25 |
-
transform: translateY(0);
|
26 |
-
}
|
27 |
-
|
28 |
-
50% {
|
29 |
-
transform: translateY(-5px);
|
30 |
-
}
|
31 |
-
}
|
32 |
-
|
33 |
-
/* @keyframes wave {
|
34 |
-
0%,100% {
|
35 |
-
transform: translateY(0);
|
36 |
-
}
|
37 |
-
|
38 |
-
50% {
|
39 |
-
transform: translateY(-5px);
|
40 |
-
}
|
41 |
-
} */
|
42 |
-
|
43 |
-
.dot-typing span {
|
44 |
-
display: inline-block;
|
45 |
-
animation: wave 1.4s infinite ease-in-out;
|
46 |
-
font-size: 1.5rem;
|
47 |
-
margin: 0 2px;
|
48 |
-
color: black;
|
49 |
-
/* Or white in dark mode */
|
50 |
-
}
|
51 |
-
|
52 |
-
.dot-typing span:nth-child(1) {
|
53 |
-
animation-delay: 0s;
|
54 |
-
}
|
55 |
-
|
56 |
-
.dot-typing span:nth-child(2) {
|
57 |
-
animation-delay: 0.2s;
|
58 |
-
}
|
59 |
-
|
60 |
-
.dot-typing span:nth-child(3) {
|
61 |
-
animation-delay: 0.4s;
|
62 |
-
}
|
63 |
-
</style>
|
64 |
</head>
|
65 |
|
66 |
<body class="bg-zinc-100 dark:bg-slate-950 text-black dark:text-white flex items-center justify-center min-h-screen">
|
|
|
6 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
7 |
<title>University Assistant</title>
|
8 |
<script src="https://cdn.tailwindcss.com"></script>
|
9 |
+
<link rel="stylesheet"
|
10 |
+
href="{{ url_for('static', filename='style.css') }}">
|
11 |
+
|
12 |
<script>
|
13 |
tailwind.config = {
|
14 |
darkMode: 'class',
|
15 |
};
|
16 |
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
</head>
|
18 |
|
19 |
<body class="bg-zinc-100 dark:bg-slate-950 text-black dark:text-white flex items-center justify-center min-h-screen">
|