-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimer.html
More file actions
58 lines (55 loc) · 2.89 KB
/
timer.html
File metadata and controls
58 lines (55 loc) · 2.89 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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>App</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="/assets/css/imports.css">
<link rel="stylesheet" href="/assets/css/variables.css">
<link rel="stylesheet" href="/assets/css/reboot.css">
<link rel="stylesheet" href="/assets/css/grid.css">
<link rel="stylesheet" href="/assets/css/utils.css">
<link rel="stylesheet" href="/assets/css/components.css">
<script>
/* Some kind of CSS fix to make up for a bug. */
if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
var msViewportStyle = document.createElement('style')
msViewportStyle.appendChild(
document.createTextNode(
'@-ms-viewport{width:auto!important}'
)
)
document.querySelector('head').appendChild(msViewportStyle)
}
</script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<main role="main">
<div class="Timer">
<div class="Constrainer Constrainer--fullWidth u-med-push-threeUp Timer--constrainer">
<div class="Grid Grid--gutters Grid--full u-vspace-oneUp">
<div class="Grid-cell">
<div class="Timer-contents">
<div class="Timer-info">
<span class="Timer-infoTitle">Focusing on</span> <span class="Timer-intention">Here’s some text that I’ve going to make it longer.</span>
</div>
<div class="Timer-timer u-vspace-default">02:25</div>
<div class="Note Note--timerNote Editable--primary Editable Editable--alwaysShow">
<p class="Note-text u-vspace-default">Here’s some text that I’ve concerning what I think about a todo and also probably how to go ahead and complete it. Here’s a bit more text just to make it dramatic.</p>
<p class="Note-text">Now I’m skipping places and this is probably where I’ll stop.</p>
</div>
<button class="Button Button--full Button--primaryLight">Stop timer</button>
</div>
</div>
</div>
</div>
</div>
</main>
</body>
</html>