-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (69 loc) · 1.05 KB
/
index.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
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
<!DOCTYPE html>
<html>
<head>
<title>Coming Soon</title>
<style>
body {
background-color: #222;
color: #eee;
font-family: sans-serif;
text-align: center;
}
h1 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 4em;
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #ff00de;
color: Black;
}
h1 {
...
transition: all 0.5s;
font-size: 4em;
font-family: "Arial", sans-serif;
}
h1:hover {
color: black;
font-size: 5em;
}
h1::before {
content: "Coming Soon";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
transition: all 0.5s;
}
h1::after {
content: "DarbyTree 🌳";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
transition: all 0.5s;
opacity: 0;
color:green;
}
h1:hover::before {
opacity: 0;
}
h1:hover::after {
opacity: 1;
}
h1::before,
h1::after {
...
z-index: 1;
}
h1 {
...
z-index: 0;
}
</style>
</head>
<body>
<h1></h1>
</body>
</html>