-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpine.html
201 lines (182 loc) · 6.93 KB
/
pine.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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./pine.css">
<title>Pine</title>
</head>
<body>
<section id="today">
<span><span id="hours">Hours </span> <span id="minutes">Minutes</span></span> <br>
<span id="day">Day</span> <br>
<span id="date">Date</span>
</section>
<section id="quotes">
<span id="quote">
"A life holding dustpans while you brush off forgotten bones. That's
no life, its slow suicide."
</span> <br>
<span id="movie">
The Witcher
</span> <br>
<span id="year">
2022
</span>
</section>
<section id="calendar">
<div id="cl-todo">
<span id="cl-day">Sunday 13th</span> <br> <br>
<span id="cl-todo-list">
<div id="add-todo" class="hidden">
<p>Add Todo Item</p>
<input type="text" name="add-todo-text" id="add-todo-text" placeholder="in a short, concise manner.">
<button id="todo-submit">Save</button>
</div>
<div id="11" class="checkbox-wrapper-11 todo-item">
<input id="02-11" type="checkbox" name="r" value="2">
<label for="02-11">You can add Todo items here.</label>
</div>
<div id="12" class="checkbox-wrapper-11 todo-item">
<input id="02-12" type="checkbox" name="r" value="2">
<label for="02-12">Tick the check-box to indicate what is done.</label>
</div>
</span>
<button id="todo-add-btn">+</button>
</div>
<div id="cl-calendar">
<span id="cl-month">June</span> <br> <br>
<table>
<tr id="cl-week-info">
<th>Sun</th><th>Mon</th><th>Tue</th>
<th>Wed</th><th>Thu</th><th>Fri</th>
<th>Sat</th>
</tr>
<tr class="cl-month-dates">
<td class="week-day">01</td>
<td class="week-day">02</td>
<td class="week-day">03</td>
<td class="week-day">04</td>
<td class="week-day">05</td>
<td class="week-day">06</td>
<td class="week-day">07</td>
</tr>
<tr class="cl-month-dates">
<td class="week-day">08</td>
<td class="week-day">09</td>
<td class="week-day">10</td>
<td class="week-day">11</td>
<td class="week-day">12</td>
<td class="week-day">13</td>
<td class="week-day">14</td>
</tr>
<tr class="cl-month-dates">
<td class="week-day">15</td>
<td class="week-day">16</td>
<td class="week-day">16</td>
<td class="week-day">17</td>
<td class="week-day">18</td>
<td class="week-day">19</td>
<td class="week-day">20</td>
</tr>
<tr class="cl-month-dates">
<td class="week-day">21</td>
<td class="week-day">22</td>
<td class="week-day">23</td>
<td class="week-day">24</td>
<td class="week-day">25</td>
<td class="week-day">26</td>
<td class="week-day">27</td>
</tr>
<tr class="cl-month-dates">
<td class="week-day">28</td>
<td class="week-day">29</td>
<td class="week-day">30</td>
<td class="week-day">31</td>
<td class="week-day"> </td>
<td class="week-day"> </td>
<td class="week-day"> </td>
</tr>
<tr class="cl-month-dates">
<td class="week-day">28</td>
<td class="week-day">29</td>
<td class="week-day">30</td>
<td class="week-day">31</td>
<td class="week-day"> </td>
<td class="week-day"> </td>
<td class="week-day"> </td>
</tr>
</table>
<br>
<!-- <span id="cl-quote">"Time.. Time is of ultimate essence."</span> -->
</div>
</section>
<section id="stats">
<div id="cpu-stat">
<h1>CPU</h1>
<h1 id="cpu-stat-value">0%</h1>
</div>
<div id="ram-stat">
<h1>RAM</h1>
<h1 id="ram-stat-value">0%</h1>
</div>
</section>
<section id="weather">
<div>
<span id="city">Lucknow</span> <br>
<span id="country">India</span>
</div>
<div>
<span id="temperature">25°C</span> <br>
<span id="weather-icon"></span>
<span id="weather-info">Cloudy</span>
</div>
</section>
<section id="launchers">
<div id="explorer">
<span class="icon"></span>
</div>
</section>
<section id="navbar">
<nav>
<ul>
<li><a id="home-btn">Home</a></li>
<li><a id="calendar-btn">Calendar</a></li>
<li><a id="notes-btn">Notes</a></li>
<li><a id="settings-btn">Settings</a></li>
</ul>
</nav>
</section>
<section id="notes">
<div id="note-btn">
<button id="add-note">Add Note</button>
</div>
<div id="note-input">
<textarea placeholder="Enter Note.." class="hidden" name="note-input-area" id="note-input-area" cols="45" rows="10"></textarea>
<br>
<button class="hidden" id="submit-note">Submit</button>
</div>
</section>
<section id="settings">
<h1>Settings</h1>
<p>
You can expect this section to be finished by the end of July. <br>
This section will contain options to change styles of various elements and house <br>
the ability to modify behaviour of certain elements.
</p>
</section>
<section id="username" class="hidden">`
<input type="text" name="username-input" id="username-input" placeholder="Username">
<input type="text" name="city-input" id="city-input" placeholder="City">
<input type="text" name="country-input" id="country-input" placeholder="Country">
<br>
<button id="btn-next">Next</button>
</section>
<section id="note-menu">
<ul>
<li id="note-menu-item">Delete</li>
</ul>
</section>
</body>
<script src="./pine.js"></script>
</html>