forked from mathtut0r1ng/mathtut0r1ng.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomingsoon.html
More file actions
180 lines (158 loc) · 4.75 KB
/
comingsoon.html
File metadata and controls
180 lines (158 loc) · 4.75 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="mathtutor1ng" />
<meta name="keywords" content="games, unblocked games, minecraft, mathtutor1ng, math tutoring, math" />
<title>mathtutor1ng</title>
<meta property="og:locale" content="en-US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="mathtutor1ng" />
<meta property="og:description" content="Unbl*cked games site with games, movies, tv shows, music, and books! Join the discord! https://discord.gg/GBD5qrURQv" />
<link rel="icon" type="image/png" href="favicon.png">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #08081b 0%, #00007a 100%);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
color: #e0e0e0;
}
.container {
max-width: 800px;
width: 100%;
text-align: center;
}
.header {
margin-bottom: 40px;
animation: fadeInDown 1s ease;
}
h1 {
font-size: 3.5rem;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.turtle-emoji {
font-size: 4rem;
display: inline-block;
animation: bounce 2s infinite;
}
.description {
font-size: 1.3rem;
margin: 30px 0;
line-height: 1.6;
animation: fadeIn 1.5s ease;
}
.description p:first-child::after {
content: ', and listen to music';
}
.features {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
margin: 40px 0;
}
.feature-card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 15px;
padding: 25px;
min-width: 200px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
animation: fadeInUp 1s ease;
cursor: pointer;
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
background: rgba(255, 255, 255, 0.08);
}
.feature-icon {
font-size: 2.5rem;
margin-bottom: 10px;
}
.countdown-section {
margin-top: 50px;
animation: fadeIn 2s ease;
}
.countdown-title {
font-size: 1.5rem;
margin-bottom: 20px;
opacity: 0.9;
}
.countdown {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}
.countdown-item {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 10px;
padding: 20px;
min-width: 100px;
}
.countdown-value {
font-size: 2.5rem;
font-weight: bold;
display: block;
}
.countdown-label {
font-size: 0.9rem;
opacity: 0.8;
text-transform: uppercase;
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Whoops!</h1>
<div class="turtle-emoji">⚠️</div>
</div>
<div class="description">
<p>This page isn't avaliable at this time.</p>
</div>
<div class="features">
<div class="feature-card" onclick="window.location.href='index.html'">
<div class="feature-icon">🏠</div>
<h3>Back to home</h3>
</body>
</html>