-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (73 loc) · 1.32 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
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<style>
body {
height:100vh;
width:100%;
margin:0;
background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
animation: gradientBG 15s ease infinite;
background-size: 400% 400%;
text-align: center;
}
@keyframes gradientBG {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
1000% {
background-position: 0% 50%;
}
}
#dCompany {
font-size: 250px;
color: white;
font-family: sans-serif;
}
#dHint {
font-size: 50px;
color: white;
font-family: sans-serif;
}
#dPhrase {
font-size: 30px;
color: white;
font-family: sans-serif;
}
#dComming {
margin-top: 200px;
font-size: 40px;
color: white;
font-family: sans-serif;
}
#dMain{
margin-top: 200px;
}
</style>
</head>
<body>
<div id="dMain">
<div id="dCompany">
DeTask
</div>
<div id="dHint">
<h3>
Focus on value, not hours spent
</h3>
</div>
<div id="dPhrase">
<h4>
Re-evaluate the way you measure success
</h4>
</div>
<div id="dComming">
<h4>
WE'RE COMING SOON
</h4>
</div>
</div>
</body>
</html>