Hatman commited on
Commit
e00dfab
·
verified ·
1 Parent(s): 268eab3

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +24 -20
main.py CHANGED
@@ -20,27 +20,31 @@ async def read_root():
20
  <html>
21
  <head>
22
  <title>Fullscreen IFrame</title>
 
23
  <style>
24
- html, body {
25
- margin: 0;
26
- padding: 0;
27
- width: 100%;
28
- height: 100%;
29
- overflow: hidden;
30
- }
31
-
32
- iframe {
33
- position: fixed;
34
- top: 0;
35
- left: 0;
36
- width: 100%;
37
- height: 100%;
38
- border: none;
39
- margin: 0;
40
- padding: 0;
41
- overflow: hidden;
42
- }
43
- </style>
 
 
 
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>