Spaces:
Running
Running
Update main.py
Browse files
main.py
CHANGED
@@ -20,27 +20,31 @@ async def read_root():
|
|
20 |
<html>
|
21 |
<head>
|
22 |
<title>Fullscreen IFrame</title>
|
|
|
23 |
<style>
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
|
|
|
|
|
|
44 |
</head>
|
45 |
<body>
|
46 |
<h1><a href="https://production.d2iujulgl0aoba.amplifyapp.com/">Pixel Prompt</a> has moved</h1>
|
|
|
20 |
<html>
|
21 |
<head>
|
22 |
<title>Fullscreen IFrame</title>
|
23 |
+
|
24 |
<style>
|
25 |
+
body {
|
26 |
+
background-color: #333; /* Charcoal background */
|
27 |
+
color: #fff; /* White text color for contrast */
|
28 |
+
font-family: Arial, sans-serif;
|
29 |
+
margin: 0;
|
30 |
+
padding: 20px;
|
31 |
+
}
|
32 |
+
h1 {
|
33 |
+
font-size: 2em;
|
34 |
+
text-align: center;
|
35 |
+
transition: font-size 0.3s ease;
|
36 |
+
}
|
37 |
+
h1:hover {
|
38 |
+
font-size: 4em;
|
39 |
+
}
|
40 |
+
a {
|
41 |
+
color: #EA3C53;
|
42 |
+
text-decoration: none;
|
43 |
+
}
|
44 |
+
a:hover {
|
45 |
+
text-decoration: none;
|
46 |
+
}
|
47 |
+
</style>
|
48 |
</head>
|
49 |
<body>
|
50 |
<h1><a href="https://production.d2iujulgl0aoba.amplifyapp.com/">Pixel Prompt</a> has moved</h1>
|