-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (47 loc) · 2.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="title" content="Chronos | Brayan Bedritchuk">
<meta property="og:site_name" content="Brayan Bedritchuk">
<meta property="og:url" content="https://brayan.com.br/chronos">
<meta property="og:title" content="Chronos | Brayan Bedritchuk">
<meta property="og:description"
content="Inspired by the Pomodoro Technique, this nice little app is a countdown timer that follows my traditional work model ∙ 50 minutes of focused work and 10 minute break.">
<meta name="google-site-verification" content="BsptlAF73EthEH_Qk39RqCioP12zu5MlhNhyTKK4_-I" />
<link rel="canonical" href="https://brayan.com.br/chronos">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description"
content="Inspired by the Pomodoro Technique, this nice little app is a countdown timer that follows my traditional work model ∙ 50 minutes of focused work and 10 minute break." />
<meta name="keywords" content="Brayan, Bedritchuk, Pomodoro, Technique, Chronos, PWA" />
<meta name="theme-color" content="#80B3FF" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Chronos">
<link rel="apple-touch-icon" href="./design/icons/152x152.png">
<title>Chronos | Brayan Bedritchuk</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400&display=swap" rel="stylesheet">
<link rel="manifest" href="manifest.json">
<link rel="shortcut icon" type="image/png" href="./design/icons/favicon-16x16.png" />
</head>
<body>
<div class="container">
<span id="minutes" class="time"></span>
<span id="seconds" class="time"></span>
</div>
<svg class="circular-progress-container" viewBox="0 0 36 36">
<path id="circular-progress-bottom" d="M18 2.0845
a 15.9155 15.9155 0 0 1 0 31.831
a 15.9155 15.9155 0 0 1 0 -31.831" />
<path class="progress" id="circular-progress-background" d="M18 2.0845
a 15.9155 15.9155 0 0 1 0 31.831
a 15.9155 15.9155 0 0 1 0 -31.831" />
<path class="progress" id="circular-progress" d="M18 2.0845
a 15.9155 15.9155 0 0 1 0 31.831
a 15.9155 15.9155 0 0 1 0 -31.831" />
</svg>
<script src="./dist/bundle.js"></script>
</body>
</html>