-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (39 loc) · 1.08 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Date Picker</title>
<link rel="stylesheet" href="styles.css" />
<style>
.date-picker.show {
display: block;
}
.date.selected {
background-color: hsl(200, 100%, 50%);
color: white;
}
</style>
<script type="module" src="script.js"></script>
</head>
<body>
<div class="date-picker-container">
<button class="date-picker-button"></button>
<div class="date-picker">
<div class="date-picker-header">
<button class="prev-month-button month-button">←</button>
<div class="current-month"></div>
<button class="next-month-button month-button">→</button>
</div>
<div class="date-picker-grid-header date-picker-grid">
<div>Sun</div>
<div>Mon</div>
<div>Tue</div>
<div>Wed</div>
<div>Thu</div>
<div>Fri</div>
<div>Sat</div>
</div>
<div class="date-picker-grid-dates date-picker-grid"></div>
</div>
</div>
</body>
</html>