-
Notifications
You must be signed in to change notification settings - Fork 0
/
open.html
50 lines (43 loc) · 1.07 KB
/
open.html
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
<!DOCTYPE html>
<html>
<head>
<style>
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
body {
background: linear-gradient(rgb(10, 16, 20), rgb(14, 16, 20));
color: white;
font-family: 'Share Tech Mono', monospace, Arial, sans-serif;
font-size: 8em;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
padding: 0;
border: 1px solid white;
opacity: 0.8;
}
#closing {
font-size: 0.4em;
margin-bottom: 1em;
opacity: 0.8;
}
.countdown-number {
font-weight: bold;
transform: scale(1);
transition: transform 0.2s;
}
.pulse {
transform: scale(1.15);
}
</style>
</head>
<body>
<div id="closing">Closing page in...</div>
<div id="countdown"></div>
<script src="open.js"></script>
<script src="countdown.js"></script>
</body>
</html>