-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (103 loc) · 4.07 KB
/
Copy pathindex.html
File metadata and controls
118 lines (103 loc) · 4.07 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!--CSS-->
<link rel="stylesheet" type="text/css" href="puppy.css">
<!--Sortable-->
<script src="js/Sortable.min.js"></script>
<!--Autosize-->
<script src="js/autosize.min.js"></script>
<!--Keypress-->
<script src="js/keypress.min.js"></script>
<!--Main JS-->
<script src="js/main.js"></script>
<!--Font Awesome-->
<script src="https://use.fontawesome.com/d5cda29867.js"></script>
<!--Google Fonts-->
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,700" rel="stylesheet">
<title>Puppy Productivity Club</title>
</head>
<body tabindex="-1">
<!--
<i class="fa fa-info-circle fa-lg infoMouseover" aria-hidden="true"></i>
-->
<div class="settings">
<i class="fa fa-cog fa-lg settingsMouseover" aria-hidden="true"></i>
<div class="settingsInput">
<form><input id="session" type="number" name="session" value="20"></form>
<form><input id="break" type="number" name="break" value="5"></form>
</div>
</div>
<!--
<div class="information">
<div class="flexContainer">
<div class="flexItem">
<div class="aboutContent">
<h1>About This Website</h1>
<ul>
<li>
<h4>Tomatoes</h4>
<p>This tool is the combination of the pomodoro technique and good 'ol to-do lists</p>
</li>
<li>
<h4>Relax Those Shoulders</h4>
<p>Timers are stressful, that's why this timer is hidden</p>
</li>
<li>
<h4>Get It Done</h4>
<p>It's important to progress, so chunk your list items into small tasks</p>
</li>
</ul>
</div>
<div class="aboutContent">
<h1>About Me</h1>
<ul>
<li>
<h4>By Me, For Me</h4>
<p>Puppy Productivity Club is created to specifically supplement how I work</p>
</li>
<li>
<h4>One at a Time</h4>
<p>Only showing one item at a time helps to prevent me from turtling up</p>
</li>
<li>
<h4>Further Reading</h4>
<p><a class="hvr-bounce-to-bottom" href="http://dannyhawk.com">My website</a></p>
</li>
</ul>
</div>
<div class="aboutContent">
<h1>About Puppies</h1>
<ul>
<li>
<h4>Breaks are for Relaxing</h4>
<p>A break is only good for you if you actually relax. Simultaneously, it’s hard to look at a dog and not smile.</p>
</li>
<li>
<h4>Gosh So Talented</h4>
<p>All art created by the ineffable <a class="hvr-bounce-to-bottom" href="https://www.instagram.com/mediocrewall/">Cynthia Chu</a></p>
</li>
</ul>
</div>
</div>
</div>
</div>-->
<div class="fixedContainer">
<div class="arrowOffset">
<i class="fa fa-arrow-left fa-2x expandArrow"></i>
</div>
</div>
<div class="itemContainer">
<div class="item">
<p class="hvr-bounce-to-bottom">Placeholder</p>
</div>
</div>
<div class="container">
<div class="todoHolder">
<ul class="todo block__list block__list_words"></ul>
</div>
</div>
</body>
</html>