-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (99 loc) · 4.29 KB
/
Copy pathindex.html
File metadata and controls
99 lines (99 loc) · 4.29 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ruTimer</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="tailwind.config.js"></script>
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&family=Roboto+Mono:wght@400;600&display=swap" rel="stylesheet">
<style type="text/tailwindcss">
@tailwind base;@tailwind components;@tailwind utilities;.menu-item {@apply hover:text-stone-400 cursor-pointer transition duration-150;}
</style>
<script src="script.js" defer></script>
</head>
<body class="font-mono bg-stone-800 text-stone-200">
<main class="flex flex-col h-screen gap-10 p-10">
<div class="flex items-end gap-3">
<span class="text-4xl menu-item">ruTimer</span>
<div class="flex gap-2 text-[1.3rem]">
<i class="uil uil-info-circle menu-item"></i>
<i class="uil uil-setting menu-item"></i>
<i class="uil uil-export menu-item"></i>
<i class="uil uil-comment-exclamation menu-item"></i>
<i class="uil uil-github-alt menu-item"></i>
</div>
</div>
<div class="flex grow">
<div class="bg-stone-700 min-w-[20rem] rounded-2xl flex flex-col items-center p-5 gap-5">
<div class="flex flex-col w-full gap-2 p-5 border border-stone-400 rounded-xl">
<div class="flex flex-col items-center justify-center text-xl">
<span>0 Solves</span>
<span>Avarage: 0.00</span>
</div>
<div class="grid grid-cols-3">
<span></span>
<span>Current</span>
<span>Best</span>
<span>Single</span>
<span>0.00</span>
<span>0.00</span>
<span>mo3</span>
<span>0.00</span>
<span>0.00</span>
<span>ao5</span>
<span>0.00</span>
<span>0.00</span>
<span>ao12</span>
<span>0.00</span>
<span>0.00</span>
</div>
</div>
<div class="grid justify-center w-full grid-cols-4 gap-x-2">
<span></span>
<span>Time</span>
<span>ao5</span>
<span>ao12</span>
<span>5</span>
<span>0.00</span>
<span>0.00</span>
<span>0.00</span>
<span>4</span>
<span>0.00</span>
<span>0.00</span>
<span>0.00</span>
<span>3</span>
<span>0.00</span>
<span>0.00</span>
<span>0.00</span>
<span>2</span>
<span>0.00</span>
<span>0.00</span>
<span>0.00</span>
<span>1</span>
<span>0.00</span>
<span>0.00</span>
<span>0.00</span>
</div>
</div>
<div class="flex items-center justify-center text-4xl grow" id="timer">
<div class="flex flex-col items-center gap-8">
<span class="font-sans text-[18rem] mb-[7rem]" id="time">0.00</span>
<div class="text-[4rem]">
<span>ao5: </span>
<span class="font-sans">0.00</span>
</div>
<div class="text-[4rem]">
<span>ao12: </span>
<span class="font-sans">0.00</span>
</div>
</div>
</div>
</div>
</main>
</body>
</html>