-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalendar.html
231 lines (210 loc) · 7.08 KB
/
calendar.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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calendar</title>
<style>
/* Style the button color */
:root {
--button_color: #f0f0f0;
--border_color: #ccc;
}
/* Style the calendar container */
.calendar {
max-width: 800px;
margin: 0 auto;
border: 1px solid var(--border_color);
padding: 10px;
}
/* Style the navigation bar */
.nav-bar {
width: 100%;
table-layout: fixed;
text-align: center;
}
/* Style the navigation buttons */
.nav-button {
display: inline-block;
padding: 5px 10px;
background-color: var(--button_color);
border: 1px solid var(--border_color);
cursor: pointer;
}
#this-month,
#this-year {
width: 110px;
padding: 5px 0px;
}
/* Style the calendar table */
table {
border-collapse: collapse;
width: 100%;
}
/* Style the table headers */
tr {
width: 100%;
table-layout: fixed;
display: table;
}
/* Style the table headers */
th {
display: table-cell;
text-align: center;
padding: 10px;
border: 1px solid var(--border_color);
}
/* Style the table cells */
td {
height: 50px;
text-align: center;
padding: 5px;
border: 1px solid var(--border_color);
}
/* Style the account book */
.account-book {
max-width: 800px;
margin: 0 auto;
border: 1px solid var(--border_color);
padding: 10px;
display: flex;
justify-content: space-between;
}
.account-book .record {
width: 49.25%;
margin: 0px;
border: none;
padding: 0px;
text-align: center;
}
.account-book .record .record {
width: auto;
margin: 0 auto;
border: none;
padding: 0px;
}
</style>
</head>
<body>
<div class="calendar" id="calendar">
<div class="nav-bar" id="nav-bar">
<button class="nav-button" id="prev-month"><</button>
<select class="nav-button" id="this-month">This Month</select>
<select class="nav-button" id="this-year">This Year</select>
<button class="nav-button" id="next-month">></button>
</div>
<br>
<table id="calendar-table">
<thead id="calendar-head">
<tr>
<th style="background-color: #c8707E;">Sun</th>
<th>Mon</th>
<th>Tue</th>
<th>Wed</th>
<th>Thu</th>
<th>Fri</th>
<th style="background-color: #678fae;">Sat</th>
</tr>
</thead>
<tbody id="calendar-body">
<tr class="week" id="1st"></tr>
<tr class="week" id="2nd"></tr>
<tr class="week" id="3rd"></tr>
<tr class="week" id="4th"></tr>
<tr class="week" id="5th"></tr>
<tr class="week" id="6th"></tr>
</tbody>
</table>
</div>
<div class="account-book" id="account-book">
<div class="record">
<div class="record" id="monthly-record">
<label style="font-weight: bold;">monthly-record</label>
<p></p>
<table id="monthly-table">
<thead id="monthly-head">
<tr>
<th>Income</th>
<th>Spending</th>
<th>Sum</th>
</tr>
</thead>
<tbody id="monthly-body">
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
<p></p>
<div class="record" id="weekly-record">
<label style="font-weight: bold;">weekly-record</label>
<p></p>
<table id="weekly-table">
<thead id="weekly-head">
<tr>
<th>Income</th>
<th>Spending</th>
<th>Sum</th>
</tr>
</thead>
<tbody id="weekly-body">
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="record" id="daily-record">
<label style="font-weight: bold;">daily-record</label>
<p></p>
<table id="daily-table">
<thead id="daily-head">
<tr>
<th>Ctrl</th>
<th>Item</th>
<th>Income</th>
<th>Spending</th>
</tr>
</thead>
<tbody id="daily-body">
<!-- <tr class="show item-income-spend">
<td class="Save & Delete" style="position: relative;">
<button class="delete" style="width: 55px;">Delete</button>
</td>
<td class="item"></td>
<td class="income"></td>
<td class="spend"></td>
</tr> -->
<tr id="add item-income-spend">
<td>
<button id="add" style="width: 55px;">Add</button>
</td>
<td>
<input id="item" type="text" placeholder="item" size="7">
</td>
<td>
<input id="income" type="number" placeholder="income" min="0" max="99999">
</td>
<td>
<input id="spending" type="number" placeholder="spending" min="0" max="99999">
</td>
</tr>
<tr id="sum">
<td style="font-weight: bold;">Sum</td>
<td id="daily-sum" colspan="3"></td>
</tr>
</tbody>
</table>
</div>
</div>
<script src="./src/calendar.js"></script>
<script src="./src/accountbook.js"></script>
</body>
</html>