var764 commited on
Commit
a1d83ab
·
verified ·
1 Parent(s): 8245f92

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +32 -1
index.html CHANGED
@@ -1,7 +1,38 @@
1
  <!DOCTYPE html>
2
- <html>
3
  <head>
 
 
4
  <title>Space Paused</title>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  </head>
6
  <body>
7
  <h1>We're live - message founders@envariant.ai to join!</h1>
 
1
  <!DOCTYPE html>
2
+ <html lang="en">
3
  <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
  <title>Space Paused</title>
7
+ <style>
8
+ /* Base styles */
9
+ body {
10
+ font-family: 'Courier New', Courier, monospace; /* sleek monospace font */
11
+ font-size: 14px; /* smaller font */
12
+ text-align: center;
13
+ padding: 2rem;
14
+ transition: background-color 0.3s, color 0.3s; /* smooth color transition */
15
+ }
16
+
17
+ /* Light mode */
18
+ body {
19
+ background-color: #ffffff;
20
+ color: #000000;
21
+ }
22
+
23
+ /* Dark mode */
24
+ @media (prefers-color-scheme: dark) {
25
+ body {
26
+ background-color: #121212;
27
+ color: #ffffff;
28
+ }
29
+ }
30
+
31
+ h1 {
32
+ font-weight: normal;
33
+ font-size: 1.5rem; /* slightly smaller than default */
34
+ }
35
+ </style>
36
  </head>
37
  <body>
38
  <h1>We're live - message founders@envariant.ai to join!</h1>