-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (40 loc) · 1.52 KB
/
index.html
File metadata and controls
52 lines (40 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
body{
background: linear-gradient(to left, rgb(3, 0, 87), rgb(1, 1, 142));
overflow: hidden;
}
#mother {
backdrop-filter: blur(10px);
background: linear-gradient(to right, rgba(255, 0, 187, 0.265), rgba(255, 0, 187, 0.265));
}
</style>
</head>
<body class="relative bg-slate-700 h-screen flex justify-center items-center">
<div class="w-32 h-32 rounded-full bg-blue-500 absolute right-[24%] top-[45%]"></div>
<div class="w-32 h-32 bg-pink-500 absolute left-[24%] top-[33%]"></div>
<div id="mother" class=" flex justify-center items-center w-[600px] h-[30px] bg-blue-400 rounded-xl p-[60px] bg-blue-100 ">
<div class=" text-white flex gap-20 text-[18px] font-semibold pl-5 text-center ">
<div >
<h1 class="text-[30px]" id="hour">10</h1>
<p class="text-[17px]">HOURS</p>
</div>
<div>
<h1 class="text-[30px]" id="minutes">20</h1>
<p class="text-[17px]">MINS</p>
</div>
<div>
<h1 class="text-[30px]" id="seconds">30</h1>
<P class="text-[17px]">SEC</P>
</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>