-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
70 lines (56 loc) · 1.53 KB
/
options.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
<!DOCTYPE html>
<html>
<title>DoItToday!</title>
<head>
<style>
.box {
animation: card 3s both;
border-radius: 25px;
background: #FF1493;
padding: 30px;
width: 200px;
height: 50px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
@keyframes card {
0%,
100% {
transform: translateX(0%);
transform-origin: 50% 50%;
}
15% {
transform: translateX(-30px) rotate(-6deg);
}
30% {
transform: translateX(15px) rotate(6deg);
}
45% {
transform: translateX(-15px) rotate(-3.6deg);
}
60% {
transform: translateX(9px) rotate(2.4deg);
}
75% {
transform: translateX(-6px) rotate(-1.2deg);
}
}
#link {
position: fixed;
left: 50%;
bottom: 150px;
transform: translate(-50%, -50%);
margin: 0 auto;
}
</style>
</head>
<body>
<div class="box" style="text-align: center; color: white; font-size:34px; background: #bb0064; left: 30%; top: 50%; ">
Work? </div>
<div class="box" style="text-align: center; color: white; font-size:34px;">Do it Today ! </div>
<a href="https://www.google.com/search?q=5+minute+timer&rlz=1C1RXQR_enIN963IN963&oq=5+minute+timer&aqs=chrome..69i57j69i59j69i60l3.594j0j1&sourceid=chrome&ie=UTF-8"
id="link"><h4>Else click here to set a 5 minute timer for your break <h4></a>
</body>
</html>