-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshortcuts.html
More file actions
64 lines (60 loc) · 1.38 KB
/
shortcuts.html
File metadata and controls
64 lines (60 loc) · 1.38 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
<!DOCTYPE html>
<html>
<head>
<title>Deep Focus - Keyboard Shortcuts</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background: #f5f5f5;
}
.shortcuts {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.shortcut {
display: flex;
justify-content: space-between;
padding: 10px 0;
border-bottom: 1px solid #eee;
}
.keys {
display: flex;
gap: 8px;
}
.key {
background: #f0f0f0;
padding: 4px 8px;
border-radius: 4px;
font-family: monospace;
}
</style>
</head>
<body>
<div class="shortcuts">
<h1>Keyboard Shortcuts</h1>
<div class="shortcut">
<span>Toggle Focus Mode</span>
<div class="keys">
<span class="key">Ctrl</span>+<span class="key">Shift</span>+<span
class="key"
>F</span
>
</div>
</div>
<div class="shortcut">
<span>Start/Stop Pomodoro Timer</span>
<div class="keys">
<span class="key">Ctrl</span>+<span class="key">Shift</span>+<span
class="key"
>P</span
>
</div>
</div>
</div>
</body>
</html>