-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
120 lines (109 loc) · 3.16 KB
/
index.html
File metadata and controls
120 lines (109 loc) · 3.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>It's Working!</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
color: white;
line-height: 1.6;
}
.container {
text-align: center;
padding: 2rem;
max-width: 600px;
width: 90%;
}
h1 {
font-size: clamp(2.5rem, 8vw, 4rem);
font-weight: 700;
margin-bottom: 1rem;
text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
animation: fadeInUp 1s ease-out;
}
.subtitle {
font-size: clamp(1rem, 3vw, 1.25rem);
font-weight: 300;
opacity: 0.9;
margin-bottom: 2rem;
animation: fadeInUp 1s ease-out 0.3s both;
}
.status-indicator {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: rgba(255, 255, 255, 0.1);
padding: 0.75rem 1.5rem;
border-radius: 50px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
animation: fadeInUp 1s ease-out 0.6s both;
}
.status-dot {
width: 8px;
height: 8px;
background: #4ade80;
border-radius: 50%;
animation: pulse 2s infinite;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
/* Mobile optimizations */
@media (max-width: 768px) {
.container {
padding: 1.5rem;
}
.status-indicator {
padding: 0.5rem 1rem;
font-size: 0.9rem;
}
}
/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
</style>
</head>
<body>
<div class="container">
<h1>It's Working!</h1>
<p class="subtitle">Your static website is up and running successfully</p>
<div class="status-indicator">
<span class="status-dot"></span>
<span>Server Online</span>
</div>
</div>
</body>
</html>